diff options
author | deva <deva> | 2009-01-15 07:24:30 +0000 |
---|---|---|
committer | deva <deva> | 2009-01-15 07:24:30 +0000 |
commit | 4497bea2b68a883d1bed72797f27275c833843ea (patch) | |
tree | bba910d80a4384721ae6b13c64afc54735a16a98 /client/widgets/multilist.h | |
parent | 6a81913f64590c6e49431ce483e00c8fc60573a4 (diff) |
Added isDisabled method to all widget classes and made sure that only enabled widgets send their values on commit.
Diffstat (limited to 'client/widgets/multilist.h')
-rw-r--r-- | client/widgets/multilist.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/client/widgets/multilist.h b/client/widgets/multilist.h index 3bd7b9c..1e8b4bd 100644 --- a/client/widgets/multilist.h +++ b/client/widgets/multilist.h @@ -43,9 +43,6 @@ public: QString getValue(); void setValue(QString value, QString source = ""); - void enable(); - void disable(); - void connectFrom(const char *signal, const QObject *receiver, const char *method); @@ -55,6 +52,10 @@ public: bool setKeyboardFocus(); void setVisibility(bool visible); + void disable(); + void enable(); + bool isDisabled(); + public slots: void changed(); void remove(); |