-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainwindow.h
50 lines (34 loc) · 1.04 KB
/
mainwindow.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QImage>
#include <QGraphicsScene>
#include <polygon.h>
#include <rasterizer.h>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
void DisplayQImage(QImage &i);
void keyPressEvent(QKeyEvent *e);
private slots:
void on_actionLoad_Scene_triggered();
void on_actionSave_Image_triggered();
void on_actionEquilateral_Triangle_triggered();
void on_actionQuit_Esc_triggered();
private:
Ui::MainWindow *ui;
Polygon LoadOBJ(const QString &file, const QString &polyName);
//This is used to display the QImage produced by RenderScene in the GUI
QGraphicsScene graphics_scene;
//This is the image rendered by your program when it loads a scene
QImage rendered_image;
//The instance of the Rasterizer used to render our scene
Rasterizer rasterizer;
};
#endif // MAINWINDOW_H