tools/drawMapTest/mainwindow.h
author Wuzzy <Wuzzy2@mail.ru>
Thu, 26 Oct 2017 18:20:06 +0200
changeset 12775 2c426663d971
parent 4477 63a21fac8bf7
permissions -rw-r--r--
ACF2: Mention that both hogs must survive String freeze is preserved, the string is already in stub.lua.

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>

namespace Ui {
    class MainWindow;
}

class DrawMapScene;

class MainWindow : public QMainWindow {
    Q_OBJECT
public:
    MainWindow(QWidget *parent = 0);
    ~MainWindow();

protected:
    void changeEvent(QEvent *e);

private:
    Ui::MainWindow *ui;
    DrawMapScene * scene;

private slots:
    void on_pbLoad_clicked();
    void on_pbSave_clicked();
    void scene_pathChanged();
};

#endif // MAINWINDOW_H