當前位置: 首頁>>代碼示例>>Python>>正文


Python win32gui.SystemParametersInfo方法代碼示例

本文整理匯總了Python中win32gui.SystemParametersInfo方法的典型用法代碼示例。如果您正苦於以下問題:Python win32gui.SystemParametersInfo方法的具體用法?Python win32gui.SystemParametersInfo怎麽用?Python win32gui.SystemParametersInfo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在win32gui的用法示例。


在下文中一共展示了win32gui.SystemParametersInfo方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: is_screensaver_running

# 需要導入模塊: import win32gui [as 別名]
# 或者: from win32gui import SystemParametersInfo [as 別名]
def is_screensaver_running(self):
        return win32gui.SystemParametersInfo(win32con.SPI_GETSCREENSAVERRUNNING) 
開發者ID:yarox24,項目名稱:attack_monitor,代碼行數:4,代碼來源:tray_worker.py

示例2: setWallPaper

# 需要導入模塊: import win32gui [as 別名]
# 或者: from win32gui import SystemParametersInfo [as 別名]
def setWallPaper(imagepath='download/cache_wallpaper.png'):
	keyex = win32api.RegOpenKeyEx(win32con.HKEY_CURRENT_USER, "Control Panel\\Desktop", 0, win32con.KEY_SET_VALUE)
	win32api.RegSetValueEx(keyex, "WallpaperStyle", 0, win32con.REG_SZ, "0")
	win32api.RegSetValueEx(keyex, "TileWallpaper", 0, win32con.REG_SZ, "0")
	win32gui.SystemParametersInfo(win32con.SPI_SETDESKWALLPAPER, imagepath, win32con.SPIF_SENDWININICHANGE) 
開發者ID:CharlesPikachu,項目名稱:Tools,代碼行數:7,代碼來源:earthWallpaper.py

示例3: restore_font_smoothing

# 需要導入模塊: import win32gui [as 別名]
# 或者: from win32gui import SystemParametersInfo [as 別名]
def restore_font_smoothing():
        win32gui.SystemParametersInfo(win32con.SPI_SETFONTSMOOTHING, True) 
開發者ID:GeosoftInc,項目名稱:gxpy,代碼行數:4,代碼來源:base.py

示例4: create_fonts

# 需要導入模塊: import win32gui [as 別名]
# 或者: from win32gui import SystemParametersInfo [as 別名]
def create_fonts( self ):
        '''
        Create all font objects
        '''
        self.known_fonts = {}
        def handle_font( font_config, text_metric, font_type, param ):
            #print font_config.lfFaceName
            self.known_fonts[ font_config.lfFaceName ] = font_config
            return True

        hdc = win32gui.GetWindowDC( self.main_window.window_handle )
        
        #print "=== begin availalbe fonts ==="
        win32gui.EnumFontFamilies( hdc, None, handle_font, None )
        #print "=== end available fonts ==="

        # https://stackoverflow.com/questions/6057239/which-font-is-the-default-for-mfc-dialog-controls
        self.non_client_metrics = win32gui.SystemParametersInfo( win32con.SPI_GETNONCLIENTMETRICS, None, 0 )
        self.default_font = self.non_client_metrics[ 'lfMessageFont' ].lfFaceName
        
        #print "Default font: " + self.default_font
        keys = ( 'title', 'details', 'notification', 'splash', 'buttons' )
        font_config = self.config.get( 'font_styles', {} )
        self.fonts = { key: self.create_font( hdc, **font_config.get(key, {}) ) for key in keys }
        if 'buttons' not in self.fonts:
            self.fonts['buttons'] = win32gui.CreateFontIndirect( self.non_client_metrics[ 'lfMessageFont' ] )

        win32gui.ReleaseDC( self.main_window.window_handle, hdc ) 
開發者ID:mailpile,項目名稱:gui-o-matic,代碼行數:30,代碼來源:winapi.py


注:本文中的win32gui.SystemParametersInfo方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。