summaryrefslogtreecommitdiff
path: root/noncore/games/zlines/mwidget.h
Unidiff
Diffstat (limited to 'noncore/games/zlines/mwidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/zlines/mwidget.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/noncore/games/zlines/mwidget.h b/noncore/games/zlines/mwidget.h
new file mode 100644
index 0000000..29d01ac
--- a/dev/null
+++ b/noncore/games/zlines/mwidget.h
@@ -0,0 +1,49 @@
1/***************************************************************************
2 mwidget.h - description
3 -------------------
4 begin : Fri May 19 2000
5 copyright : (C) 2000 by Roman Merzlyakov
6 email : roman@sbrf.barrt.ru
7 copyright : (C) 2000 by Roman Razilov
8 email : Roman.Razilov@gmx.de
9 ***************************************************************************/
10
11/***************************************************************************
12 * *
13 * This program is free software; you can redistribute it and/or modify *
14 * it under the terms of the GNU General Public License as published by *
15 * the Free Software Foundation; either version 2 of the License, or *
16 * (at your option) any later version. *
17 * *
18 ***************************************************************************/
19
20#ifndef MWIDGET_H
21#define MWIDGET_H
22
23#include <qwidget.h>
24#include <qpixmap.h>
25#include <qtimer.h>
26#include <qframe.h>
27#include "linesboard.h"
28#include "prompt.h"
29
30class QLabel;
31
32class MainWidget : public QFrame
33{
34Q_OBJECT
35 LinesBoard * lsb;
36 LinesPrompt * lPrompt;
37 QLabel *mPoints;
38
39public:
40 MainWidget( QWidget* parent=0, const char* name=0 );
41 ~MainWidget();
42 LinesBoard * GetLsb();
43 LinesPrompt * GetPrompt();
44
45public slots:
46 void setMessage(const QString &message);
47};
48
49#endif