diff options
author | senator <senator> | 2007-10-02 10:08:09 +0000 |
---|---|---|
committer | senator <senator> | 2007-10-02 10:08:09 +0000 |
commit | 9910c8962ab813ab7d9a04609b689e1d9ae038e0 (patch) | |
tree | 5ca422f7c3e4cfffed3f57d6201f75ed10986578 /client/widgets/radiobutton.h | |
parent | 4cbb885daf4ce4a4fb9827c5d6b67e9f82f730d3 (diff) |
selectable entries now uses xml items correctly
Diffstat (limited to 'client/widgets/radiobutton.h')
-rw-r--r-- | client/widgets/radiobutton.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/client/widgets/radiobutton.h b/client/widgets/radiobutton.h index a2f06c5..74525a4 100644 --- a/client/widgets/radiobutton.h +++ b/client/widgets/radiobutton.h @@ -28,18 +28,23 @@ #define __PRACRO_RADIOBUTTON_H__ #include "widget.h" -#include <QRadioButton> +#include <QFrame> #include <QDomNode> +#include <QVector> +#include <QRadioButton> -class RadioButton : public QRadioButton, public Widget +class RadioButton : public QRadioButton { public: - RadioButton(QDomNode); + RadioButton(QDomNode, bool); public slots: QString getValue(); +private: + QString radio_value; + }; #endif/*__PRACRO_RADIOBUTTON_H__*/ |