00001 /*************************************************************************** 00002 mwidget.h - description 00003 ------------------- 00004 begin : Fri May 19 2000 00005 copyright : (C) 2000 by Roman Merzlyakov 00006 email : roman@sbrf.barrt.ru 00007 copyright : (C) 2000 by Roman Razilov 00008 email : Roman.Razilov@gmx.de 00009 ***************************************************************************/ 00010 00011 /*************************************************************************** 00012 * * 00013 * This program is free software; you can redistribute it and/or modify * 00014 * it under the terms of the GNU General Public License as published by * 00015 * the Free Software Foundation; either version 2 of the License, or * 00016 * (at your option) any later version. * 00017 * * 00018 ***************************************************************************/ 00019 00020 #ifndef MWIDGET_H 00021 #define MWIDGET_H 00022 00023 #include <qwidget.h> 00024 #include <qpixmap.h> 00025 #include <qtimer.h> 00026 #include <qframe.h> 00027 #include "linesboard.h" 00028 #include "prompt.h" 00029 00030 class QLabel; 00031 00032 class MainWidget : public QFrame 00033 { 00034 Q_OBJECT 00035 LinesBoard * lsb; 00036 LinesPrompt * lPrompt; 00037 QLabel *mPoints; 00038 00039 public: 00040 MainWidget( QWidget* parent=0, const char* name=0 ); 00041 ~MainWidget(); 00042 LinesBoard * GetLsb(); 00043 LinesPrompt * GetPrompt(); 00044 00045 public slots: 00046 void setMessage(const QString &message); 00047 }; 00048 00049 #endif
1.4.2