28 |
28 |
29 #include "button.h" |
29 #include "button.h" |
30 #include "container.h" |
30 #include "container.h" |
31 #include "toolkit.h" |
31 #include "toolkit.h" |
32 |
32 |
|
33 UIWIDGET ui_button_create(UiObject* obj, UiButtonArgs args) { |
|
34 UiContainerPrivate *ctn = ui_obj_container(obj); |
|
35 UI_APPLY_LAYOUT(ctn->layout, args); |
|
36 |
|
37 QString str = QString::fromUtf8(args.label); |
|
38 QPushButton *button = new QPushButton(str); |
|
39 |
|
40 if(args.onclick) { |
|
41 UiEventWrapper *event = new UiEventWrapper(obj, args.onclick, args.onclickdata); |
|
42 button->connect(button, SIGNAL(clicked()), event, SLOT(slot())); |
|
43 } |
|
44 |
|
45 ctn->add(button, false); |
|
46 |
|
47 return button; |
|
48 } |
|
49 |