00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KOKMAINWINDOW_H
00021 #define KOKMAINWINDOW_H
00022
00023 #include <qmainwindow.h>
00024 #include <qstring.h>
00025 #include <qpixmap.h>
00026 #include <qmenubar.h>
00027 #include <qpopupmenu.h>
00028 #include <qtoolbar.h>
00029
00030 class kokMainWindow : public QMainWindow
00031 {
00032 Q_OBJECT
00033 public:
00034 kokMainWindow();
00035
00036 ~kokMainWindow();
00037 QMenuBar *MenuBar;
00038 QPopupMenu *fileMenu;
00039 QPopupMenu *editMenu;
00040 QPopupMenu *helpMenu;
00041 QToolBar *toolBar;
00042
00043 public slots:
00044 void statusBarMessage(QString text);
00045
00046
00047 private:
00048 QPixmap image0;
00049 QPixmap image1;
00050 QPixmap image2;
00051 QPixmap image3;
00052 QPixmap image4;
00053 QPixmap image5;
00054 QPixmap image6;
00055 QPixmap image7;
00056 QPixmap image8;
00057 QPixmap image9;
00058 QPixmap image10;
00059 QPixmap image11;
00060 QPixmap image12;
00061 QPixmap imageConf;
00062 };
00063
00064 #endif