summaryrefslogtreecommitdiff
path: root/tikzit/src/gui/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'tikzit/src/gui/mainwindow.h')
-rw-r--r--tikzit/src/gui/mainwindow.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/tikzit/src/gui/mainwindow.h b/tikzit/src/gui/mainwindow.h
new file mode 100644
index 0000000..d33a89d
--- /dev/null
+++ b/tikzit/src/gui/mainwindow.h
@@ -0,0 +1,25 @@
+#ifndef MAINWINDOW_H
+#define MAINWINDOW_H
+
+#include "tikzscene.h"
+
+#include <QMainWindow>
+#include <QGraphicsView>
+
+namespace Ui {
+class MainWindow;
+}
+
+class MainWindow : public QMainWindow
+{
+ Q_OBJECT
+
+public:
+ explicit MainWindow(QWidget *parent = 0);
+ ~MainWindow();
+private:
+ TikzScene *tikzScene;
+ Ui::MainWindow *ui;
+};
+
+#endif // MAINWINDOW_H