forked from paulhoad/gp2trackeditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCameraView.h
More file actions
executable file
·60 lines (52 loc) · 1.51 KB
/
Copy pathCameraView.h
File metadata and controls
executable file
·60 lines (52 loc) · 1.51 KB
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
// CameraView.h : header file
//
#include "MyTableView.h"
/////////////////////////////////////////////////////////////////////////////
// CCameraView view
class CCameraView : public CMyTableView
{
protected:
CCameraView();// protected constructor used by dynamic creation
DECLARE_DYNCREATE(CCameraView)
// Attributes
public:
void UpdateInfo(BOOL);
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CCameraView)
public:
virtual BOOL
Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
protected:
virtual void
OnDraw(CDC* pDC);// overridden to draw this view
virtual void
OnInitialUpdate();// first time after construct
virtual void
OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
//}}AFX_VIRTUAL
// Implementation
protected:
virtual ~CCameraView();
#ifdef _DEBUG
virtual void
AssertValid() const;
virtual void
Dump(CDumpContext& dc) const;
#endif
// Generated message map functions
//{{AFX_MSG(CCameraView)
afx_msg void
OnSetFocus(CWnd* pOldWnd);
afx_msg int
OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void
OnLButtonDblClk(UINT nFlags, CPoint point);
afx_msg void
OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////