当前位置: 首页>>代码示例>>Python>>正文


Python win32con.SW_RESTORE属性代码示例

本文整理汇总了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) 
开发者ID:will7200,项目名称:Yugioh-bot,代码行数:23,代码来源:steam.py

示例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]) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:7,代码来源:window.py

示例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) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:9,代码来源:intpyapp.py

示例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 = [] 
开发者ID:blurstudio,项目名称:cross3d,代码行数:6,代码来源:rescaletime.py

示例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 
开发者ID:blurstudio,项目名称:cross3d,代码行数:11,代码来源:rescaletime.py

示例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) 
开发者ID:Peter92,项目名称:MouseTracks,代码行数:5,代码来源:main.py

示例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) 
开发者ID:drongh,项目名称:pyAutoTrading,代码行数:6,代码来源:winguiauto.py


注:本文中的win32con.SW_RESTORE属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。