summaryrefslogtreecommitdiff
path: root/client/widgets/widget.h
diff options
context:
space:
mode:
authordeva <deva>2010-08-13 13:53:59 +0000
committerdeva <deva>2010-08-13 13:53:59 +0000
commit836ab03e9bdc442bbe8b414007dae294153a748a (patch)
treeee9035925e006bf5181e3679790708b022b80cad /client/widgets/widget.h
parent843221d0826ed0a53a94e84772f89c482f80776a (diff)
Make validation run deep (or not).
Diffstat (limited to 'client/widgets/widget.h')
-rw-r--r--client/widgets/widget.h20
1 files changed, 3 insertions, 17 deletions
diff --git a/client/widgets/widget.h b/client/widgets/widget.h
index ef22c18..3315c2e 100644
--- a/client/widgets/widget.h
+++ b/client/widgets/widget.h
@@ -52,7 +52,8 @@ public:
virtual QString value() = 0;
virtual void setValue(QString value, QString source) = 0;
- bool valid();
+ // Set deep to true to validate inner widgets.
+ bool valid(bool deep = false);
void setValid(bool valid);
// Implement in subclasses to contribute to the validation.
@@ -69,16 +70,9 @@ public:
virtual bool setKeyboardFocus();
- /*
- void setInitialValue(QString value);
- bool hasInitialValue();
- virtual void reset();
- */
-
QWidget *qwidget() { return widget; }
- // Set deep to true to find widgets inside altcombobox, multilist and
- // metawidgets.
+ // Set deep to true to search through inner widgets.
Widget *findWidget(QString name, bool deep = false);
QVector< Widget* > widgetList(bool deep = false);
void addChild(Widget *widget);
@@ -120,14 +114,6 @@ private:
bool hasOnChangeEvent;
QString onChangeEventScript;
-
- /*
- QString initial_value;
- QString initial_source;
- bool has_initial_value;
- QString prefilled;
- */
-
};
#endif/*__PRACRO_WIDGET_H__*/