forked from mhernando/Apolo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprismWindow.h
40 lines (30 loc) · 870 Bytes
/
prismWindow.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
#ifndef __APOLO__PRISMWINDOW__H
#define __APOLO__PRISMWINDOW__H
#include "globalView.h"
#include "designWidget.h"
#include "positionableWidget.h"
class ChildView;
class FaceControlButtons;
class PositionableWidget;
class PrismWindow : public wxPanel
{
public:
PrismWindow(wxWindow *parent,NodeTree *obj,const wxString& title, const wxPoint& pos,const wxSize& size);
void CreatePanel();
void OnButton(wxCommandEvent& event);
void RefreshCanvas(wxCommandEvent &event);
void ColorChanged(wxCommandEvent& event);
void CopyDesign(wxCommandEvent& event);
void PasteDesign(wxCommandEvent& event);
~PrismWindow(void);
private:
bool worldView;
FaceWidget* base;
PositionableWidget *pw;
wxString defName;
DesignWidget *dp;
wxButton *cView;
NodeTree *node;
DECLARE_EVENT_TABLE();
};
#endif // __APOLO__PRISMWINDOW__H