Michaël Lemaire
d71c09e0d2
git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@287 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
30 lines
464 B
C++
30 lines
464 B
C++
#ifndef _PAYSAGES_QT_MAINWINDOW_H_
|
|
#define _PAYSAGES_QT_MAINWINDOW_H_
|
|
|
|
#include <QMainWindow>
|
|
#include "formrender.h"
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MainWindow(QWidget *parent = 0);
|
|
|
|
public slots:
|
|
void refreshAll();
|
|
|
|
void fileNew();
|
|
void fileSave();
|
|
void fileLoad();
|
|
|
|
void showAboutDialog();
|
|
|
|
void quickPreview();
|
|
void explore3D();
|
|
|
|
private:
|
|
FormRender* _form_render;
|
|
};
|
|
|
|
#endif
|