aboutsummaryrefslogtreecommitdiffstats
path: root/include/ui/mainwindow.h
blob: 30614404697c262216f19c63823e893e7dd90d4b (plain)
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
35
36
37
#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>

#include "diagram/structogram.h"

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    explicit MainWindow(samb::Structogram *structogram = nullptr, QWidget *parent = nullptr);
    ~MainWindow();

private slots:
    void on_newButton_clicked();
    void on_openButton_clicked();
    void on_saveButton_clicked();

    void on_refreshButton_clicked();
    void on_metadataButton_clicked();
    void on_newStatementButton_clicked();

private:
    Ui::MainWindow *_ui;
    samb::Structogram *_structogram;

    bool askSaveDialog();
    void toolButtonsEnabled(bool state);
};

#endif // MAINWINDOW_H