-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathBoundingBoxDialog.h
More file actions
36 lines (28 loc) · 806 Bytes
/
Copy pathBoundingBoxDialog.h
File metadata and controls
36 lines (28 loc) · 806 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
#ifndef __BOUNDINGBOXDIALOG_H__
#define __BOUNDINGBOXDIALOG_H__
class LDLMainModel;
class ModelWindow;
class TCAlert;
class LDrawModelViewer;
#include <CUI/CUIDialog.h>
class BoundingBoxDialog: public CUIDialog
{
public:
BoundingBoxDialog(HINSTANCE hInstance);
void toggle(ModelWindow *modelWindow);
bool isVisible(void);
protected:
virtual LRESULT doClose(void);
virtual ~BoundingBoxDialog(void);
virtual void dealloc(void);
virtual BOOL doInitDialog(HWND /*hKbControl*/);
void modelAlertCallback(TCAlert *alert);
void setModel(LDLMainModel *model);
void setModelWindow(ModelWindow *modelWindow);
void updateData(void);
void showBoundingBox(bool value);
LDrawModelViewer *getModelViewer(void);
ModelWindow *m_modelWindow;
LDLMainModel *m_model;
};
#endif // __BOUNDINGBOXDIALOG_H__