summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter/gui/statwindow.h
Unidiff
Diffstat (limited to 'noncore/net/wellenreiter/gui/statwindow.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/gui/statwindow.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/noncore/net/wellenreiter/gui/statwindow.h b/noncore/net/wellenreiter/gui/statwindow.h
index bbdf777..0ab4b50 100644
--- a/noncore/net/wellenreiter/gui/statwindow.h
+++ b/noncore/net/wellenreiter/gui/statwindow.h
@@ -16,25 +16,28 @@
16#ifndef STATWINDOW_H 16#ifndef STATWINDOW_H
17#define STATWINDOW_H 17#define STATWINDOW_H
18 18
19#include <qvbox.h> 19#include <qvbox.h>
20 20
21class QString; 21class QString;
22class QMultiLineEdit; 22class OListView;
23 23
24class MStatWindow: public QVBox 24class MStatWindow: public QVBox
25{ 25{
26 Q_OBJECT
26 27
27 public: 28 public:
28 MStatWindow( QWidget * parent = 0, const char * name = "MStatWindow", WFlags f = 0 ); 29 MStatWindow( QWidget * parent = 0, const char * name = "MStatWindow", WFlags f = 0 );
29 30
30 void log( QString text ); 31 void log( QString text );
31 const QString getLog() const; 32 const QString getLog() const;
32 void clear(); 33 void clear();
33 34
35 void updateCounter( const QString&, int );
36
34 protected: 37 protected:
35 QMultiLineEdit* ledit; 38 OListView* table;
36 39
37}; 40};
38 41
39#endif 42#endif
40 43