tools/drawMapTest/mainwindow.h
author koda
Sun, 27 Mar 2011 01:53:59 +0100
changeset 5053 a767954cfa03
parent 4477 63a21fac8bf7
permissions -rw-r--r--
this should help people hacking the cmake files (removes old comments, BUNDLE and other macros, updates to INSTALL file)

#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