Visualization Library 2.0.0

A lightweight C++ OpenGL middleware for 2D/3D graphics

VL     Star     Watch     Fork     Issue

[Download] [Tutorials] [All Classes] [Grouped Classes]
MDIWindow.hpp
Go to the documentation of this file.
1 /**************************************************************************************/
2 /* */
3 /* Visualization Library */
4 /* http://visualizationlibrary.org */
5 /* */
6 /* Copyright (c) 2005-2020, Michele Bosi */
7 /* All rights reserved. */
8 /* */
9 /* Redistribution and use in source and binary forms, with or without modification, */
10 /* are permitted provided that the following conditions are met: */
11 /* */
12 /* - Redistributions of source code must retain the above copyright notice, this */
13 /* list of conditions and the following disclaimer. */
14 /* */
15 /* - Redistributions in binary form must reproduce the above copyright notice, this */
16 /* list of conditions and the following disclaimer in the documentation and/or */
17 /* other materials provided with the distribution. */
18 /* */
19 /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND */
20 /* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED */
21 /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */
22 /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR */
23 /* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES */
24 /* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; */
25 /* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */
26 /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
27 /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS */
28 /* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
29 /* */
30 /**************************************************************************************/
31 
32 #ifndef MDIWindow_INCLUDE_ONCE
33 #define MDIWindow_INCLUDE_ONCE
34 
35 #include <vlMFC/link_config.hpp>
37 #include <vlWin32/Win32Context.hpp>
38 
39 namespace vlMFC
40 {
41 //-----------------------------------------------------------------------------
42 // MDIWindow
43 //-----------------------------------------------------------------------------
48  class VLMFC_EXPORT MDIWindow: public CView, public vlWin32::Win32Context /* the order is important! */
49  {
50  public:
52 
53  virtual ~MDIWindow();
54 
56  HWND hwnd() const { return m_hWnd; }
57 
59  void OnDraw(CDC *) {}
60 
61  public:
62  //{{AFX_MSG(MFCContext
63  /*afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);*/
64  /*afx_msg void OnDraw(CDC *pDC);*/
65  afx_msg void OnPaint();
66  // afx_msg void OnClose();
67  afx_msg void OnDestroy();
68  /*afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);*/
69  afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
70  afx_msg void OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags);
71  afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
72  afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
73  afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
74  afx_msg void OnMButtonDblClk(UINT nFlags, CPoint point);
75  afx_msg void OnMButtonDown(UINT nFlags, CPoint point);
76  afx_msg void OnMButtonUp(UINT nFlags, CPoint point);
77  afx_msg void OnMouseMove(UINT nFlags, CPoint point);
78  afx_msg BOOL OnMouseWheel(UINT nFlags, short zDelta, CPoint pt);
79  afx_msg void OnRButtonDblClk(UINT nFlags, CPoint point);
80  afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
81  afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
82  afx_msg void OnSize(UINT nType, int cx, int cy);
83  /*afx_msg void OnTimer(UINT_PTR nIDEvent);*/
84  afx_msg void OnDropFiles(HDROP hDropInfo);
85  //}}AFX_MSG
86 
87  protected:
88  BOOL PreCreateWindow(CREATESTRUCT&cs);
89  void destroyGLContext();
90  void countAndCapture();
91  void countAndRelease();
92 
93  protected:
95  static CString mClassName;
96 
97  DECLARE_MESSAGE_MAP()
98  };
99 }
100 
101 #endif
void setAutomaticDelete(bool autodel_on)
If set to true the Object is deleted when its reference count reaches 0.
Definition: Object.hpp:275
void OnDraw(CDC *)
Don&#39;t forget to reimplement this!
Definition: MDIWindow.hpp:59
The Win32Context class implements an OpenGLContext using the Win32 API.
The MFC bindings namespace.
The MDIWindow class is an MFC CView with the functionalities of a Win32Context (experimental).
Definition: MDIWindow.hpp:48
HWND hwnd() const
Returns the Win32 window handle.
Definition: MDIWindow.hpp:56
static CString mClassName
Definition: MDIWindow.hpp:95