ui/qt/button.cpp

changeset 520
ea1bba55de44
parent 516
4b31c74666d7
child 526
f6a6b0b08641
equal deleted inserted replaced
519:8884c7fbe4cb 520:ea1bba55de44
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

mercurial