]> git.sesse.net Git - nageru/blob - mainwindow.h
Hook up some more clip modifications.
[nageru] / mainwindow.h
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3
4 #include <stdbool.h>
5 #include <sys/types.h>
6 #include <QMainWindow>
7
8 namespace Ui {
9 class MainWindow;
10 }  // namespace Ui
11
12 class MainWindow : public QMainWindow
13 {
14         Q_OBJECT
15
16 public:
17         MainWindow();
18
19 //private:
20         Ui::MainWindow *ui;
21
22 private:
23         void preview_clicked();
24 };
25
26 extern MainWindow *global_mainwindow;
27
28 #endif
29