def ShellExcute(cls, hwnd, lpOperation, lpFile, lpParameters='', lpDirectory='', nShowCmd=SW_SHOWNORMAL): return PyWinUtils().ShellExcute(hwnd, lpOperation, lpFile, lpParameters, lpDirectory, nShowCmd)
def SelectFolder(cls, hwnd, title, saveTag=''): return PyWinUtils().SelectFolder(hwnd, title, saveTag)
def MessageBox(cls, hwnd, text, caption, btntype=MB_OK): return PyWinUtils().MessageBox(hwnd, text, caption, btntype)
def SelectFile(cls, hwnd, filter='All files(*.*)\0*.*\0'): return PyWinUtils().SelectFile(hwnd, filter)
def SetWaitCursor(cls): PyWinUtils().SetWaitCursor()
def SetArrowCursor(cls): PyWinUtils().SetArrowCursor()
def SetCurrentDirectory(cls, cdir): PyWinUtils().SetCurrentDirectory(cdir)
def SetCurrentDirectoryToExePath(cls): PyWinUtils().SetCurrentDirectoryToExePath()
def GetExeDirectory(cls): return PyWinUtils().GetExeDirectory()
def RestoreWindow(self): """ RestoreWindow """ PyWinUtils().SendMessageA(self.GetHWnd(), win32con.WM_SYSCOMMAND, win32con.SC_RESTORE, 0)
def MaximizeWindow(self): """ MaximizeWindow """ PyWinUtils().SendMessageA(self.GetHWnd(), win32con.WM_SYSCOMMAND, win32con.SC_MAXIMIZE, 0)
def KillTimer(self, nIDEvent): PyWinUtils().KillTimer(self.GetHWnd(), nIDEvent)
def SetTimer(self, nIDEvent, uElapse): PyWinUtils().SetTimer(self.GetHWnd(), nIDEvent, uElapse)