diff options
Diffstat (limited to 'src/gui/boolfieldwidget.h')
-rw-r--r-- | src/gui/boolfieldwidget.h | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/src/gui/boolfieldwidget.h b/src/gui/boolfieldwidget.h new file mode 100644 index 0000000..81af5a6 --- /dev/null +++ b/src/gui/boolfieldwidget.h @@ -0,0 +1,51 @@ +/*************************************************************************** + copyright : (C) 2005-2006 by Robby Stephenson + email : [email protected] + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of version 2 of the GNU General Public License as * + * published by the Free Software Foundation; * + * * + ***************************************************************************/ + +#ifndef BOOLFIELDWIDGET_H +#define BOOLFIELDWIDGET_H + +#include "fieldwidget.h" +#include "../datavectors.h" + +class QCheckBox; +class QString; + +namespace Tellico { + namespace GUI { + +/** + * @author Robby Stephenson + */ +class BoolFieldWidget : public FieldWidget { +Q_OBJECT + +public: + BoolFieldWidget(Data::FieldPtr field, QWidget* parent, const char* name=0); + virtual ~BoolFieldWidget() {} + + virtual QString text() const; + virtual void setText(const QString& text); + +public slots: + virtual void clear(); + +protected: + virtual QWidget* widget(); + +private: + QCheckBox* m_checkBox; +}; + + } // end GUI namespace +} // end namespace +#endif |