source: liacs/pm/backup/qt-nim/nimform.h@ 2

Last change on this file since 2 was 2, checked in by Rick van der Zwet, 15 years ago

Initial import of data of old repository ('data') worth keeping (e.g. tracking
means of URL access statistics)

  • Property svn:executable set to *
File size: 509 bytes
RevLine 
[2]1#ifndef NIMFORM_H
2#define NIMFORM_H
3
4#include "stapeldisplay.h"
5
6#include <qmainwindow.h>
7
8class NimForm: public QMainWindow
9{
10 Q_OBJECT
11public:
12 NimForm();
13 ~NimForm();
14
15 QPopupMenu *optionsMenu;
16
17 protected:
18 //virtual void closeEvent( QCloseEvent * );
19
20 private slots:
21 void fileNew();
22 void fileQuit();
23 void helpHelp();
24 void helpAbout();
25 private:
26 int aantalStapels;
27 int aantalStokjes;
28 StapelGroupBox *testbox;
29 void createGame();
30
31 QPopupMenu *fileMenu;
32 QPopupMenu *helpMenu;
33};
34
35#endif
Note: See TracBrowser for help on using the repository browser.