AnyCAD C++ API  2018
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义 
AuWindow3d.h
浏览该文件的文档.
1 #pragma once
2 
3 #include "AuView3dAPI.h"
4 
10 class ANYPLATFORMMFC_API AuWindow3d : public CStatic, public AuView3dAPI
11 {
12  DECLARE_DYNAMIC(AuWindow3d)
13  typedef CStatic AuSuper;
14 public:
15  AuWindow3d();
16  virtual ~AuWindow3d();
17 
18 protected:
19  DECLARE_MESSAGE_MAP()
20  virtual void PreSubclassWindow();
21 
22  afx_msg void OnPaint();
23  afx_msg void OnSize(UINT nType, int cx, int cy);
24  afx_msg void OnDestroy();
25 
26  afx_msg BOOL OnEraseBkgnd(CDC* pDC);
27  afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
28  afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
29  afx_msg void OnMButtonDown(UINT nFlags, CPoint point);
30  afx_msg void OnMButtonUp(UINT nFlags, CPoint point);
31  afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
32  afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
33  afx_msg BOOL OnMouseWheel(UINT nFlags, short zDelta, CPoint pt);
34  afx_msg void OnMouseMove(UINT nFlags, CPoint point);
35  afx_msg void OnTimer(UINT_PTR nIDEvent);
36  afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
37  afx_msg void OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags);
38  afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
39 
40 protected:
41 
42 };
43 
44 
The view 3d control for MFC control.
Definition: AuWindow3d.h:10
The view 3d control API for MFC.
Definition: AuView3dAPI.h:16
#define ANYPLATFORMMFC_API
Definition: AnyPlatformMFCAPI.h:7