tools/drawMapTest/mainwindow.h
author koda
Wed, 01 Dec 2010 00:58:03 +0100
changeset 4437 05192cdbce9b
parent 4434 34c305fbc63c
child 4442 f8424e1bc936
permissions -rw-r--r--
un-break build (wrong merge in uConsole) and update project file with the new sources

#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;

    virtual void resizeEvent(QResizeEvent * event);

private slots:
    void on_pbSimplify_clicked();
    void scene_pathChanged();
};

#endif // MAINWINDOW_H