'DEFSTR A-Z
' public domain, michael calkins
' revision 2012 09 12
' very much experimental. I am a noob at GUI stuff, and might be doing multiple things wrong or in unideal ways.
' rough translation of:
' http://www.network54.com/Forum/613583/message/1347419042/
' with a few liberties taken.
' not only might I be doing things wrong, but I am also not doublechecking the function declarations, type definitions, and constant values. They could be wrong.
' get more constants from winuser.h as needed.
CONST WS_CHILD
= &H40000000 CONST WS_VISIBLE
= &H10000000 CONST WS_MAXIMIZE
= &H01000000 CONST WS_CAPTION
= &H00C00000 CONST WS_VSCROLL
= &H00200000 CONST WS_HSCROLL
= &H00100000 CONST WS_SYSMENU
= &H00080000 CONST WS_THICKFRAME
= &H00040000 CONST WS_TABSTOP
= &H00010000 CONST WS_MINIMIZEBOX
= &H00020000 CONST WS_MAXIMIZEBOX
= &H00010000 CONST WS_OVERLAPPEDWINDOW
= WS_OVERLAPPED
OR WS_CAPTION
OR WS_SYSMENU
OR WS_THICKFRAME
OR WS_MINIMIZEBOX
OR WS_MAXIMIZEBOX
CONST CW_USEDEFAULT
= &H80000000&
CONST BS_AUTOCHECKBOX
= 3 CONST BS_AUTORADIOBUTTON
= 9
CONST ES_AUTOVSCROLL
= &H0040 CONST ES_AUTOHSCROLL
= &H0080 CONST ES_WANTRETURN
= &H1000
CONST WM_GETTEXT
= &H000D CONST WM_COMMAND
= &H0111
CONST SW_SHOWDEFAULT
= &HA
FUNCTION CreateWindowExA%&
(BYVAL dwExStyle~&
, BYVAL lpClassName%&
, BYVAL lpWindowName%&
, BYVAL dwStyle~&
, BYVAL x&
, BYVAL y&
, BYVAL nWidth&
, BYVAL nHeight&
, BYVAL hWndParent%&
, BYVAL hMenu%&
, BYVAL hInstance%&
, BYVAL lpParam%&
)
wParam
AS _OFFSET 'unsigned pointer sized integer
MainClassName
= "main" + CHR$(0)
hi = GetModuleHandleW(0)
wc.style = 0
wc.lpfnWndProc = GetWindowProc
wc.cbClsExtra = 0
wc.cbWndExtra = 0
wc.hInstance = hi
wc.hIcon = 0
wc.hCursor = LoadCursorW(0, IDC_ARROW)
wc.hbrBackground = COLOR_WINDOW + 1
wc.lpszMenuName = 0
wc.lpszClassName
= _OFFSET(MainClassName
)
hw
= CreateWindowExA
(0, at
AND &HFFFF~&
, _OFFSET(t1
), WS_HSCROLL
OR WS_OVERLAPPEDWINDOW
OR WS_VSCROLL
, CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
, CW_USEDEFAULT
, 0, 0, hi
, 0):
IF 0 = hw
THEN SYSTEMt1
= "Button 0" + CHR$(0)hwb0
= CreateWindowExA
(0, _OFFSET(t0
), _OFFSET(t1
), WS_TABSTOP
OR WS_VISIBLE
OR WS_CHILD
OR BS_PUSHBUTTON
OR BS_TEXT
, 10, 10, 150, 40, hw
, 0, hi
, 0):
IF 0 = hw
THEN SYSTEMt1
= "Button 1" + CHR$(0)hwb1
= CreateWindowExA
(0, _OFFSET(t0
), _OFFSET(t1
), WS_TABSTOP
OR WS_VISIBLE
OR WS_CHILD
OR BS_PUSHBUTTON
OR BS_TEXT
, 10, 60, 150, 40, hw
, 0, hi
, 0):
IF 0 = hwb0
THEN SYSTEMhwcb
= CreateWindowExA
(0, _OFFSET(t0
), _OFFSET(t1
), WS_TABSTOP
OR WS_VISIBLE
OR WS_CHILD
OR BS_AUTOCHECKBOX
OR BS_TEXT
, 10, 110, 150, 40, hw
, 0, hi
, 0):
IF 0 = hwb1
THEN SYSTEMt1
= "Group box" + CHR$(0)hwgb
= CreateWindowExA
(0, _OFFSET(t0
), _OFFSET(t1
), WS_VISIBLE
OR WS_CHILD
OR BS_GROUPBOX
OR BS_TEXT
, 10, 160, 400, 80, hw
, 0, hi
, 0):
IF 0 = hwgb
THEN SYSTEMhwr0
= CreateWindowExA
(0, _OFFSET(t0
), _OFFSET(t1
), WS_TABSTOP
OR WS_VISIBLE
OR WS_CHILD
OR BS_AUTORADIOBUTTON
OR BS_TEXT
, 10, 30, 150, 30, hwgb
, 0, hi
, 0):
IF 0 = hwr0
THEN SYSTEMhwr1
= CreateWindowExA
(0, _OFFSET(t0
), _OFFSET(t1
), WS_TABSTOP
OR WS_VISIBLE
OR WS_CHILD
OR BS_AUTORADIOBUTTON
OR BS_TEXT
, 210, 30, 150, 30, hwgb
, 0, hi
, 0):
IF 0 = hwr1
THEN SYSTEMt1
= "This is a" + crlf
+ "multiline edit control." + crlf
+ "Click in me and type." + crlf
+ "It should scroll automatically in both directions, but there aren't any scroll bars." + crlf
+ "Close the window to see the text printed to the console." + CHR$(0)hwe
= CreateWindowExA
(0, _OFFSET(t0
), _OFFSET(t1
), WS_TABSTOP
OR WS_VISIBLE
OR WS_CHILD
OR ES_AUTOHSCROLL
OR ES_AUTOVSCROLL
OR ES_LEFT
OR ES_MULTILINE
OR ES_WANTRETURN
, 10, 300, 400, 200, hw
, 0, hi
, 0):
IF 0 = hwe
THEN SYSTEM
discardb = ShowWindow(hw, SW_SHOWDEFAULT)
discardb = UpdateWindow(hw)
bRet
= GetMessageA
(_OFFSET(msg
), 0, 0, 0) discardb
= TranslateMessage
(_OFFSET(msg
)) discardp
= DispatchMessageA
(_OFFSET(msg
))
' Hopefully the user is running this console program from the command prompt.
' If not, the half second delay should remind them.
' I think that Sleep is okay here, because I assume we shouldn't be getting any more messages.
' We're out of the message loop anyway...
discardp
= SendMessageA
(hwe
, WM_GETTEXT
, LEN(buf
), _OFFSET(buf
)) PRINT "Radio 0: 0x";
HEX$(SendMessageA
(hwr0
, BM_GETCHECK
, 0, 0)) PRINT "Radio 1: 0x";
HEX$(SendMessageA
(hwr1
, BM_GETCHECK
, 0, 0))
WindowProc
= DefWindowProcA
(hWnd
, uMsg
, wParam
, lParam
):
EXIT FUNCTION
PostQuitMessage 0
IF wParam \
&H10000 = BN_CLICKED
THEN
' The following two lines are useless, because the Group Box is getting the message, not us.
WindowProc
= DefWindowProcA
(hWnd
, uMsg
, wParam
, lParam
):
EXIT FUNCTION
WindowProc
= DefWindowProcA
(hWnd
, uMsg
, wParam
, lParam
):
EXIT FUNCTION