Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef QGUI_SIMPLEBOX_H
00014 #define QGUI_SIMPLEBOX_H
00015
00016
00017 #include "qguisimplebox.ui.h"
00018 #include <gwenhywfar/types.h>
00019
00020
00021
00022 class QGuiSimpleBox: public QGuiSimpleBoxUi {
00023 Q_OBJECT
00024 private:
00025 uint32_t _id;
00026
00027 public:
00028 QGuiSimpleBox(uint32_t id,
00029 const QString& title,
00030 const QString& text,
00031 QWidget* parent=0, const char* name=0, WFlags fl=0);
00032 ~QGuiSimpleBox();
00033
00034 uint32_t getId();
00035 };
00036
00037
00038
00039
00040
00041
00042
00043 #endif
00044