-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.h
More file actions
37 lines (28 loc) · 785 Bytes
/
MainWindow.h
File metadata and controls
37 lines (28 loc) · 785 Bytes
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
#include <gtkmm/window.h>
#include <gtkmm.h>
#include <vector>
#include "libInfinite/logger/ConsoleLogger.h"
#include "libInfinite/StringIDLUT.h"
#include "FileList.h"
#include "ModuleDisplayManager.h"
#include "3D/interface/IEViewer.h"
#include "3D/ExporterBase.h"
#include "3D/AssImpExporter.h"
class MainWindow : public Gtk::Window{
public:
MainWindow();
//~MainWindow();
Glib::RefPtr<Gtk::Application> app;
Glib::RefPtr<Gtk::AccelGroup> accelGroup;
Gtk::MenuItem BatchExtractTexItem;
Gtk::MenuItem viewer3DItem;
Gtk::MenuItem newSceneItem;
Gtk::MenuItem exportSceneItem;
Gtk::MenuItem exportSceneBitmapsItem;
ModuleDisplayManager* moduleManager;
IEViewer viewer3D;
StringIDLUT lut;
ExporterBase* currentExporter;
private:
AssImpExporter assimpExporterIF;
};