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/label.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/label.h')
-rw-r--r-- | client/widgets/label.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client/widgets/label.h b/client/widgets/label.h index 6c02d1b..ff905a7 100644 --- a/client/widgets/label.h +++ b/client/widgets/label.h @@ -43,7 +43,12 @@ public: void connectTo(const QObject *sender, const char *signal, const char *method); + void setVisibility(bool visible); + + void disable(); + void enable(); + bool isDisabled(); }; #endif/*__PRACRO_LABEL_H__*/ |