blob: b2566f4d07fd076da592656b849be7f8805ec220 (
plain)
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
|
#ifndef MAIN_H
#define MAIN_H
#include <QMainWindow>
#include <QLabel>
#include <QMenuBar>
#include <QStatusBar>
#include "draw.hpp"
#include "rendercoord.hpp"
#include <qmainwindow.h>
#include <render.hpp>
class MainWindow : public QMainWindow {
Q_OBJECT
public:
MainWindow(Renderer r);
private slots:
void saveimage();
private:
DrawWidget m_drawer;
QLabel runstatus;
RenderCoordinator m_render;
QMenu *fileMenu;
QMenu *helpMenu;
};
#endif
|