00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef STATWINDOW_H
00017 #define STATWINDOW_H
00018
00019 #include <qvbox.h>
00020
00021 class QString;
00022 namespace Opie {namespace Ui {class OListView;}}
00023
00024 class MStatWindow: public QVBox
00025 {
00026 Q_OBJECT
00027
00028 public:
00029 MStatWindow( QWidget * parent = 0, const char * name = "MStatWindow", WFlags f = 0 );
00030
00031 void log( QString text );
00032 const QString getLog() const;
00033 void clear();
00034
00035 void updateCounter( const QString&, int );
00036
00037 protected:
00038 Opie::Ui::OListView* table;
00039
00040 };
00041
00042 #endif
00043