Created
June 25, 2015 20:30
-
-
Save guineawheek/567500ff9a02be11b671 to your computer and use it in GitHub Desktop.
Using native Windows message boxes in pure python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import print_function | |
import ctypes | |
MB_ABORTRETRYIGNORE = 2 | |
MB_CANCELTRYCONTINUE = 6 | |
MB_HELP = 0x4000 | |
MB_OK = 0 | |
MB_OKCANCEL = 1 | |
MB_RETRYCANCEL = 5 | |
MB_YESNO = 4 | |
MB_YESNOCANCEL = 3 | |
MB_ICONEXCLAMATION = MB_ICONWARNING = 0x30 | |
MB_ICONINFORMATION = MB_ICONASTERISK = 0x40 | |
MB_ICONQUESTION = 0x20 | |
MB_ICONSTOP = MB_ICONERROR = MB_ICONHAND = 0x10 | |
MB_DEFBUTTON1 = 0 | |
MB_DEFBUTTON2 = 0x100 | |
MB_DEFBUTTON3 = 0x200 | |
MB_DEFBUTTON4 = 0x300 | |
MB_APPLMODAL = 0 | |
MB_SYSTEMMODAL = 0x1000 | |
MB_TASKMODAL = 0x2000 | |
MB_DEFAULT_DESKTOP_ONLY = 0x20000 | |
MB_RIGHT = 0x80000 | |
MB_RTLREADING = 0x100000 | |
MB_SETFOREGROUND = 0x10000 | |
MB_TOPMOST = 0x40000 | |
MB_SERVICE_NOTIFICATION = 0x200000 | |
IDABORT = 3 | |
IDCANCEL = 2 | |
IDCONTINUE = 11 | |
IDIGNORE = 5 | |
IDNO = 7 | |
IDOK = 1 | |
IDRETRY = 4 | |
IDTRYAGAIN = 10 | |
IDYES = 6 | |
def MsgBox(text, style, title): | |
return ctypes.windll.user32.MessageBoxW(None, text, title, style) | |
if __name__ == '__main__': | |
print(MsgBox("Hello World!", MB_ICONERROR | MB_ABORTRETRYIGNORE | MB_SYSTEMMODAL, "Hello!")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment