本文整理匯總了Python中win32con.SW_RESTORE屬性的典型用法代碼示例。如果您正苦於以下問題:Python win32con.SW_RESTORE屬性的具體用法?Python win32con.SW_RESTORE怎麽用?Python win32con.SW_RESTORE使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類win32con
的用法示例。
在下文中一共展示了win32con.SW_RESTORE屬性的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: tap
# 需要導入模塊: import win32con [as 別名]
# 或者: from win32con import SW_RESTORE [as 別名]
def tap(self, x, y):
if self.run_time.stop:
return
x, y = int(x), int(y)
self.root.debug("Tapping at location ({},{})".format(x, y))
if self._debug:
# Helper to debug taps
input("waiting for confirmation press enter")
ox, oy = win32api.GetCursorPos()
curr_window = win32gui.GetForegroundWindow()
win32gui.ShowWindow(self.win_handle, win32con.SW_RESTORE)
x, y = int(x), int(y)
cx, cy = win32gui.ClientToScreen(self.win_handle, (x, y))
x, y = self.__calculate_absolute_coordinates__(cx, cy)
win32api.mouse_event(win32con.MOUSEEVENTF_MOVE | win32con.MOUSEEVENTF_ABSOLUTE,
x, y, 0, 0)
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN, x, y, 0, 0)
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP, x, y, 0, 0)
time.sleep(20 / 1000)
win32api.SetCursorPos((ox, oy))
win32gui.SetActiveWindow(curr_window)
示例2: AutoRestore
# 需要導入模塊: import win32con [as 別名]
# 或者: from win32con import SW_RESTORE [as 別名]
def AutoRestore(self):
"If the window is minimised or maximised, restore it."
p = self.GetWindowPlacement()
if p[1]==win32con.SW_MINIMIZE or p[1]==win32con.SW_SHOWMINIMIZED:
self.SetWindowPlacement(p[0], win32con.SW_RESTORE, p[2], p[3], p[4])
示例3: Activate
# 需要導入模塊: import win32con [as 別名]
# 或者: from win32con import SW_RESTORE [as 別名]
def Activate(self):
# Bring to the foreground. Mainly used when another app starts up, it asks
# this one to activate itself, then it terminates.
frame = win32ui.GetMainFrame()
frame.SetForegroundWindow()
if frame.GetWindowPlacement()[1]==win32con.SW_SHOWMINIMIZED:
frame.ShowWindow(win32con.SW_RESTORE)
示例4: restoreWindows
# 需要導入模塊: import win32con [as 別名]
# 或者: from win32con import SW_RESTORE [as 別名]
def restoreWindows(self):
for hwnd in self.minimzedWindows:
ShowWindow( hwnd, win32con.SW_RESTORE )
self.minimzedWindows = []
示例5: finishScaling
# 需要導入模塊: import win32con [as 別名]
# 或者: from win32con import SW_RESTORE [as 別名]
def finishScaling(self):
if self.useTimers:
self.scaleTimeFinished.emit(self.endTimeValue)
if self.restoreMaxWindow:
ShowWindow( GetWindowHandle(), win32con.SW_RESTORE )
mxs.setArrowCursor()
if self.uiWarningWND:
QTimer.singleShot(1000, self.uiWarningWND.close)
self.useTimers = False
示例6: restore
# 需要導入模塊: import win32con [as 別名]
# 或者: from win32con import SW_RESTORE [as 別名]
def restore(self):
"""Restore a window from being minimised."""
win32gui.ShowWindow(self.hwnd, win32con.SW_RESTORE)
示例7: restoreFocusWindow
# 需要導入模塊: import win32con [as 別名]
# 或者: from win32con import SW_RESTORE [as 別名]
def restoreFocusWindow(hwnd):
win32gui.ShowWindow(hwnd, win32con.SW_RESTORE)
win32gui.SetForegroundWindow(hwnd)
time.sleep(0.2)