| 29 #ifndef TOOLBAR_H |
29 #ifndef TOOLBAR_H |
| 30 #define TOOLBAR_H |
30 #define TOOLBAR_H |
| 31 |
31 |
| 32 #include "toolkit.h" |
32 #include "toolkit.h" |
| 33 #include "../ui/toolbar.h" |
33 #include "../ui/toolbar.h" |
| |
34 #include "../common/toolbar.h" |
| 34 #include <QToolBar> |
35 #include <QToolBar> |
| 35 |
36 |
| |
37 QToolBar* ui_create_toolbar(UiObject *obj); |
| 36 |
38 |
| 37 |
39 void ui_toolbar_add_item(UiObject *obj, QToolBar *toolbar, UiToolbarItem *item); |
| |
40 void ui_toolbar_add_toggleitem(UiObject *obj, QToolBar *toolbar, UiToolbarToggleItem *item); |
| |
41 void ui_toolbar_add_menu(UiObject *obj, QToolBar *toolbar, UiToolbarMenuItem *item); |
| 38 |
42 |
| 39 #endif /* TOOLBAR_H */ |
43 #endif /* TOOLBAR_H */ |
| 40 |
44 |