File: mainwindow.h

package info (click to toggle)
libqwt 4.2.0-4.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 9,832 kB
  • ctags: 5,512
  • sloc: cpp: 22,973; ansic: 244; makefile: 66
file content (34 lines) | stat: -rw-r--r-- 527 bytes parent folder | download | duplicates (5)
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
#ifndef _MAINWINDOW_H_
#define _MAINWINDOW_H_ 1

#include <qmainwindow.h>
#include <qtoolbutton.h>

class QSpinBox;
class QPushButton;
class RandomPlot;

class MainWindow: public QMainWindow
{
    Q_OBJECT
public:
    MainWindow();

private slots:
    void showRunning(bool);
    void appendPoints(bool);

private:
    QToolBar *toolBar();
    void initWhatsThis();

private:
    QSpinBox *d_randomCount;
    QSpinBox *d_timerCount;
    QToolButton *d_startBtn;
    QToolButton *d_clearBtn;

    RandomPlot *d_plot;
};

#endif