aboutsummaryrefslogtreecommitdiffstats
path: root/include/ui/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ui/mainwindow.h')
-rw-r--r--include/ui/mainwindow.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/include/ui/mainwindow.h b/include/ui/mainwindow.h
index a3948a9..0beb4a2 100644
--- a/include/ui/mainwindow.h
+++ b/include/ui/mainwindow.h
@@ -3,6 +3,8 @@
#include <QMainWindow>
+#include "diagram/structogram.h"
+
namespace Ui {
class MainWindow;
}
@@ -12,11 +14,18 @@ class MainWindow : public QMainWindow
Q_OBJECT
public:
- explicit MainWindow(QWidget *parent = 0);
+ explicit MainWindow(samb::Structogram *structogram = nullptr, QWidget *parent = nullptr);
~MainWindow();
+private slots:
+ void on_newButton_clicked();
+ void on_metadataButton_clicked();
+
private:
- Ui::MainWindow *ui;
+ Ui::MainWindow *_ui;
+ samb::Structogram *_structogram;
+
+ void initData();
};
#endif // MAINWINDOW_H