當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。