Michaël Lemaire
4daf92f3dd
paysages : Started material editor dialog (WIP). git-svn-id: https://subversion.assembla.com/svn/thunderk/paysages@331 b1fd45b6-86a6-48da-8261-f70d1f35bdcc
31 lines
503 B
C++
31 lines
503 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);
|
|
virtual bool event(QEvent* event);
|
|
|
|
public slots:
|
|
void refreshAll();
|
|
|
|
void fileNew();
|
|
void fileSave();
|
|
void fileLoad();
|
|
|
|
void showAboutDialog();
|
|
|
|
void quickPreview();
|
|
void explore3D();
|
|
|
|
private:
|
|
FormRender* _form_render;
|
|
};
|
|
|
|
#endif
|