application/main.c

changeset 815
7ddf5fb7ec2a
parent 814
bcb3c7d486f3
child 816
f5690594b240
equal deleted inserted replaced
814:bcb3c7d486f3 815:7ddf5fb7ec2a
1123 1123
1124 #ifdef UI_WIN32 1124 #ifdef UI_WIN32
1125 1125
1126 void application_startup(UiEvent *event, void *data) { 1126 void application_startup(UiEvent *event, void *data) {
1127 UiObject *obj = ui_window("Test w32", NULL); 1127 UiObject *obj = ui_window("Test w32", NULL);
1128 ui_button(obj, .label = "Test"); 1128 ui_button(obj, .label = "Test", .hfill = TRUE, .hexpand = TRUE, .colspan = 3, .margin = 10);
1129 ui_newline(obj);
1130 ui_button(obj, .label = "Test 2-1", .margin_top = 10);
1131 ui_button(obj, .label = "Test 2-2", .hfill = TRUE, .hexpand = TRUE, .margin_top = 20);
1132 ui_button(obj, .label = "Test 2-3", .margin_top = 30);
1133 ui_newline(obj);
1134 ui_button(obj, .label = "Test 3", .colspan = 3, .fill = TRUE);
1129 ui_show(obj); 1135 ui_show(obj);
1130 } 1136 }
1131 1137
1132 int WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd) { 1138 int WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd) {
1133 ui_init("app1", 0, NULL); 1139 ui_init("app1", 0, NULL);

mercurial