diff options
author | deva <deva> | 2010-08-18 11:17:57 +0000 |
---|---|---|
committer | deva <deva> | 2010-08-18 11:17:57 +0000 |
commit | 195e25f7f46cf273bce2bb582f12b17fc2997c89 (patch) | |
tree | e214dd6a251513c7bd6adcb3432754119e3d5648 /client/debug.h | |
parent | 1db5fd50a64224a67fe2e2ccc9ef0d3479bb5aed (diff) |
Add filter toggle buttons.
Diffstat (limited to 'client/debug.h')
-rw-r--r-- | client/debug.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/client/debug.h b/client/debug.h index f10efd8..e583afc 100644 --- a/client/debug.h +++ b/client/debug.h @@ -52,10 +52,19 @@ protected: private slots: void clear(); + void debug_toggled(bool); + void error_toggled(bool); + void warning_toggled(bool); + void log_toggled(bool); private: QListWidget *lst; QTimer timer; + + bool show_debug; + bool show_error; + bool show_warning; + bool show_log; }; void dbg_init(); |