BioSignalPi  v2
mainwindow.h
Go to the documentation of this file.
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3 
4 #include <QWidget>
5 
6 class QPushButton;
7 class QListWidget;
8 class QStackedWidget;
9 
19 class MainWindow : public QWidget
20 {
21  Q_OBJECT
22 
23 public:
24  MainWindow(QWidget * = NULL);
25 
26 private slots:
30  void quit();
34  void takeScreenshot();
35 
36 private:
40  void setupComponents();
44  void setupActions();
48  void setupLayout();
49 
50 
51  QPushButton *quitButton;
52  QPushButton *screenShotButton;
53  QListWidget *listWidget;
54  QStackedWidget *stackedWidget;
55 
56 };
57 
58 #endif // MAINWINDOW_H
MainWindow holds all the different parts of the GUI Implements the different widgets used in the GUI ...
Definition: mainwindow.h:19
MainWindow(QWidget *=NULL)
Definition: mainwindow.cpp:13