A2osX/ROOT/ctest/testgui.c..txt

31 lines
610 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

NEW
AUTO 3,1
#include <libgui.h>
MSG msg;
int bQuit=0;
int main(int argc, char *argv[])
{
short int hWND = guiNewWnd(WND_F_RESIZE+WND_F_MOVE+WND_F_CLOSE+WND_F_MAX+WND_F_MIN,
20,40,200,140);
guiSetProp(hWND, WND_P_pTITLE, "Window title");
guiSetProp(hWND, WND_P_pSTATUS, "Status bar");
// guiSetProp(hWND, WND_P_BGCOLOR, C.WHITE);
guiShowWnd(hWND);
do {
if (guiGetMsg(&msg))
{
switch msg.type {
case MSG_T_WND:
break;
}
} while (!bQuit)
guiDestroyWnd(hWND);
}
MAN
TEXT root/ctest/testgui.c