GuiView.h
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. /****************************************************************************
  2.  * *  
  3.  * GuiToolKit   *
  4.  *  (MFC extension) *  
  5.  * Created by Francisco Campos G. www.beyondata.com fcampos@beyondata.com *
  6.  *--------------------------------------------------------------------------*    
  7.  * *
  8.  * This program is free software;so you are free to use it any of your *
  9.  * applications (Freeware, Shareware, Commercial),but leave this header *
  10.  * intact. *
  11.  * *
  12.  * These files are provided "as is" without warranty of any kind. *
  13.  * *
  14.  *        GuiToolKit is forever FREE CODE !!!!! *
  15.  * *
  16.  *--------------------------------------------------------------------------*
  17.  * Created by: Ernesto Garcia *
  18.  * Bug Fixes and improvements : (Add your name) *
  19.  * *
  20.  ****************************************************************************/
  21. #if !defined(AFX_GUIVIEW_H__31B23C60_1C0D_4F04_AA25_AA6D8FE19985__INCLUDED_)
  22. #define AFX_GUIVIEW_H__31B23C60_1C0D_4F04_AA25_AA6D8FE19985__INCLUDED_
  23. #if _MSC_VER > 1000
  24. #pragma once
  25. #endif // _MSC_VER > 1000
  26. // GuiView.h : header file
  27. //
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CGuiView view
  30. class GUILIBDLLEXPORT CGuiView : public CView
  31. {
  32. protected:
  33. CGuiView();           // protected constructor used by dynamic creation
  34. DECLARE_DYNCREATE(CGuiView)
  35. // Attributes
  36. public:
  37. // Operations
  38. public:
  39. // Overrides
  40. // ClassWizard generated virtual function overrides
  41. //{{AFX_VIRTUAL(CGuiView)
  42. protected:
  43. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  44. //}}AFX_VIRTUAL
  45. // Implementation
  46. protected:
  47. virtual ~CGuiView();
  48. #ifdef _DEBUG
  49. virtual void AssertValid() const;
  50. virtual void Dump(CDumpContext& dc) const;
  51. #endif
  52. // Generated message map functions
  53. protected:
  54. //{{AFX_MSG(CGuiView)
  55. afx_msg void OnInitMenuPopup(CMenu* pPopupMenu, UINT nIndex, BOOL bSysMenu);
  56. afx_msg void OnMeasureItem(int nIDCtl, LPMEASUREITEMSTRUCT lpMeasureItemStruct);
  57. afx_msg LRESULT OnMenuChar(UINT nChar, UINT nFlags, CMenu* pMenu);
  58. //}}AFX_MSG
  59. DECLARE_MESSAGE_MAP()
  60. };
  61. /////////////////////////////////////////////////////////////////////////////
  62. //{{AFX_INSERT_LOCATION}}
  63. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  64. #endif // !defined(AFX_GUIVIEW_H__31B23C60_1C0D_4F04_AA25_AA6D8FE19985__INCLUDED_)