tools/drawMapTest/mainwindow.h
author unc0rr
Mon, 06 Aug 2012 23:30:58 +0400
changeset 7511 1841d5cf899f
parent 4477 63a21fac8bf7
permissions -rw-r--r--
More mess in pas2c: - Store rendered type declaration of identifier - Convert 'for' cycles properly (well, not sure, but I tried :P) into 'do .. while()'

#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