tools/drawMapTest/mainwindow.h
author sheepluva
Sat, 18 Jan 2014 18:20:43 +0100
changeset 10013 4d7302e9b617
parent 4477 63a21fac8bf7
permissions -rw-r--r--
changing build files without testing the change is fun, isn't it? especially for trivial things that would take less than 10 seconds to test :p

#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