-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPolygon.h
82 lines (72 loc) · 2.07 KB
/
Polygon.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#if !defined(AFX_POLYGON_H__A821FBEC_F426_45F4_9AAE_9E0AD85CDA8D__INCLUDED_)
#define AFX_POLYGON_H__A821FBEC_F426_45F4_9AAE_9E0AD85CDA8D__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Polygon.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CPolygon dialog
class CPolygon : public CDialog
{
// Construction
public:
CPolygon(CWnd* pParent = NULL); // standard constructor
void SetPolygon(int type, int index, short *countvertex, short *bbox);
// Dialog Data
//{{AFX_DATA(CPolygon)
enum { IDD = IDD_POLYGON };
CListBox m_vertexpicker;
BOOL m_open;
BOOL m_graphics;
BOOL m_insertpoint;
BOOL m_movepolygon;
//}}AFX_DATA
area_vertex *m_polygon;
int first;
int m_polynum;
int m_vertexnum;
int m_changed;
BOOL insertpoint;
POSITION pos;
short *countvertex; //vertex count
short *bbox; //bounding box
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CPolygon)
public:
virtual BOOL PreTranslateMessage(MSG* pMsg);
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
CToolTipCtrl m_tooltip;
CImageView m_preview;
void RefreshPolygon(bool repos);
void RefreshVertex();
void FixPolygon(CPoint &point);
// Generated message map functions
//{{AFX_MSG(CPolygon)
afx_msg void OnSelchangeVertexpicker();
afx_msg void OnDblclkVertexpicker();
afx_msg void OnKillfocusVertexpicker();
afx_msg void OnPreview();
afx_msg void OnRecalcbox();
afx_msg void OnInsert();
virtual BOOL OnInitDialog();
afx_msg void OnOrder();
afx_msg void OnReverse();
afx_msg void OnShift();
afx_msg void OnMove();
afx_msg void OnOpen();
afx_msg void OnKillfocusPosx();
afx_msg void OnKillfocusPosy();
afx_msg void OnSave();
afx_msg void OnLoad();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_POLYGON_H__A821FBEC_F426_45F4_9AAE_9E0AD85CDA8D__INCLUDED_)