本文整理汇总了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)