summaryrefslogtreecommitdiff
path: root/client/debug.h
diff options
context:
space:
mode:
authordeva <deva>2010-08-18 11:17:57 +0000
committerdeva <deva>2010-08-18 11:17:57 +0000
commit195e25f7f46cf273bce2bb582f12b17fc2997c89 (patch)
treee214dd6a251513c7bd6adcb3432754119e3d5648 /client/debug.h
parent1db5fd50a64224a67fe2e2ccc9ef0d3479bb5aed (diff)
Add filter toggle buttons.
Diffstat (limited to 'client/debug.h')
-rw-r--r--client/debug.h9
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();