dlgutils.py

来自「用python实现的邮件过滤器」· Python 代码 · 共 19 行

PY
19
字号
# Generic utilities for dialog functions.# This module is part of the spambayes project, which is Copyright 2002# The Python Software Foundation and is covered by the Python Software# Foundation license.def MAKELONG(l,h):    return ((h & 0xFFFF) << 16) | (l & 0xFFFF)MAKELPARAM=MAKELONGdef SetWaitCursor(wait):    import win32gui, win32con    if wait:        hCursor = win32gui.LoadCursor(0, win32con.IDC_WAIT)    else:        hCursor = win32gui.LoadCursor(0, 0)    win32gui.SetCursor(hCursor)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?