-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWindow.h
57 lines (44 loc) · 969 Bytes
/
Window.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
51
52
53
54
55
56
57
#ifndef WINDOW_H
#define WINDOW_H
#include "GLViewer.h"
#include <QMainWindow>
#include <QAction>
#include <QToolBar>
#include <QCheckBox>
#include <QGroupBox>
#include <QComboBox>
#include <QSlider>
#include <QLCDNumber>
#include <QSpinBox>
#include <QImage>
#include <QLabel>
#include <vector>
#include <string>
#include "QTUtils.h"
class Window : public QMainWindow {
Q_OBJECT
public:
Window();
virtual ~Window();
static void showStatusMessage (const QString & msg);
public slots :
void renderRayImage ();
void setBGColor ();
void showRayImage ();
void exportGLImage ();
void exportRayImage ();
void about ();
private :
void initControlWidget ();
QActionGroup * actionGroup;
QGroupBox * controlWidget;
QString currentDirectory;
GLViewer * viewer;
};
#endif // WINDOW_H
// Some Emacs-Hints -- please don't remove:
//
// Local Variables:
// mode:C++
// tab-width:4
// End: