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]
MFCWindow.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 MFCWindow_INCLUDE_ONCE
33 #define MFCWindow_INCLUDE_ONCE
34 
35 #include <vlMFC/link_config.hpp>
37 #include <vlWin32/Win32Context.hpp>
38 
39 namespace vlMFC
40 {
41 //-----------------------------------------------------------------------------
42 // MFCWindow
43 //-----------------------------------------------------------------------------
47  class VLMFC_EXPORT MFCWindow: public CWnd, public vlWin32::Win32Context /* the order is important! */
48  {
49  public:
51 
52  virtual ~MFCWindow();
53 
55  bool initMFCWindow(CWnd* parent, MFCWindow* share_context, const vl::String& title, const vl::OpenGLContextFormat& fmt, int x=0, int y=0, int width=640, int height=480);
56 
58  HWND hwnd() const { return m_hWnd; }
59 
60  public:
61  //{{AFX_MSG(MFCContext
62  /*afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);*/
63  /*afx_msg void OnDraw(CDC *pDC);*/
64  afx_msg void OnPaint();
65  // afx_msg void OnClose();
66  afx_msg void OnDestroy();
67  afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
68  afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
69  afx_msg void OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags);
70  afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
71  afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
72  afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
73  afx_msg void OnMButtonDblClk(UINT nFlags, CPoint point);
74  afx_msg void OnMButtonDown(UINT nFlags, CPoint point);
75  afx_msg void OnMButtonUp(UINT nFlags, CPoint point);
76  afx_msg void OnMouseMove(UINT nFlags, CPoint point);
77  afx_msg BOOL OnMouseWheel(UINT nFlags, short zDelta, CPoint pt);
78  afx_msg void OnRButtonDblClk(UINT nFlags, CPoint point);
79  afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
80  afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
81  afx_msg void OnSize(UINT nType, int cx, int cy);
82  /*afx_msg void OnTimer(UINT_PTR nIDEvent);*/
83  afx_msg void OnDropFiles(HDROP hDropInfo);
84  //}}AFX_MSG
85 
86  protected:
87  void destroyGLContext();
88  void countAndCapture();
89  void countAndRelease();
90 
91  protected:
93  static CString mClassName;
94 
95  DECLARE_MESSAGE_MAP()
96  };
97 }
98 
99 #endif
void setAutomaticDelete(bool autodel_on)
If set to true the Object is deleted when its reference count reaches 0.
Definition: Object.hpp:275
The String class implements an advanced UTF16 (Unicode BMP) string manipulation engine.
Definition: String.hpp:62
The OpenGLContextFormat class encapsulates the settings of an OpenGL rendering context.
static CString mClassName
Definition: MFCWindow.hpp:93
The Win32Context class implements an OpenGLContext using the Win32 API.
HWND hwnd() const
Returns the Win32 window handle.
Definition: MFCWindow.hpp:58
The MFC bindings namespace.
The MFCWindow class is an MFC CWnd with the functionalities of a Win32Context.
Definition: MFCWindow.hpp:47