mainwindow.h
614 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef _MAINWINDOW_H_
#define _MAINWINDOW_H_ 1
#include <qmainwindow.h>
#include <qaction.h>
class QSpinBox;
class QPushButton;
class RandomPlot;
class Counter;
class QCheckBox;
class MainWindow: public QMainWindow
{
Q_OBJECT
public:
MainWindow();
private Q_SLOTS:
void showRunning( bool );
void appendPoints( bool );
void showElapsed( int );
private:
QToolBar *toolBar();
void initWhatsThis();
private:
Counter *d_randomCount;
Counter *d_timerCount;
QCheckBox *d_symbolType;
QAction *d_startAction;
QAction *d_clearAction;
RandomPlot *d_plot;
};
#endif