make/vs/testapp/main.c

branch
newapi
changeset 195
0f2e69873875
parent 194
e2281ace0769
child 196
320d85f3cd14
equal deleted inserted replaced
194:e2281ace0769 195:0f2e69873875
107 107
108 ui_textfield(obj, .value = wdata->text); 108 ui_textfield(obj, .value = wdata->text);
109 ui_passwordfield(obj, .value = wdata->password); 109 ui_passwordfield(obj, .value = wdata->password);
110 ui_newline(obj); 110 ui_newline(obj);
111 111
112 ui_frame(obj, .label = "Test", .colspan = 3, .vexpand = true) { 112 ui_frame(obj, .label = "Test", .colspan = 3) {
113 ui_button(obj, .label = "Button1", .onclick = action1, .onclickdata = "action1");
114 }
115 ui_newline(obj);
116
117 ui_expander(obj, .label = "Expand", .colspan = 3, .margin = 10, .spacing = 5, .isexpanded = true) {
118 ui_button(obj, .label = "Button1", .onclick = action1, .onclickdata = "action1");
119 ui_button(obj, .label = "Button1", .onclick = action1, .onclickdata = "action1");
113 ui_button(obj, .label = "Button1", .onclick = action1, .onclickdata = "action1"); 120 ui_button(obj, .label = "Button1", .onclick = action1, .onclickdata = "action1");
114 } 121 }
115 } 122 }
116 } 123 }
117 124

mercurial