diff options
Diffstat (limited to 'client/widgets/groupbox.h')
| -rw-r--r-- | client/widgets/groupbox.h | 19 | 
1 files changed, 9 insertions, 10 deletions
| diff --git a/client/widgets/groupbox.h b/client/widgets/groupbox.h index ed848f7..bf12765 100644 --- a/client/widgets/groupbox.h +++ b/client/widgets/groupbox.h @@ -28,24 +28,23 @@  #define __PRACRO_GROUPBOX_H__  #include "widget.h" -#include <QGroupBox> +  #include <QDomNode> -class GroupBox : public QGroupBox, public Widget +class QGroupBox; +class GroupBox : public Widget  {  public:    GroupBox(QDomNode &node, MacroWindow *macrowindow); +  ~GroupBox(); -  void disable(); -  void enable(); -  bool isDisabled(); +  QString value() { return ""; } +  void setValue(QString, QString) {} -  void connectFrom(const char *signal, -                   const QObject *receiver, const char *method); +  void setWdgValid(bool) {} -  void connectTo(const QObject *sender, const char *signal, -                 const char *method); -  void setVisibility(bool visible); +private: +  QGroupBox *groupbox;  };  #endif/*__PRACRO_GROUPBOX_H__*/ | 
