paysages3d/gui_qt/mainwindow.h

26 lines
409 B
C
Raw Normal View History

#ifndef _PAYSAGES_QT_MAINWINDOW_H_
#define _PAYSAGES_QT_MAINWINDOW_H_
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
public slots:
void refreshAll();
void fileNew();
void fileSave();
void fileLoad();
void quickPreview();
};
#endif // _PAYSAGES_QT_MAINWINDOW_H_