ChildView.h
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. // ChildView.h : interface of the CChildView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CHILDVIEW_H__3C598774_58D7_4703_A198_95CF22226AFC__INCLUDED_)
  5. #define AFX_CHILDVIEW_H__3C598774_58D7_4703_A198_95CF22226AFC__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CChildView window
  11. class CChildView : public CExtWS < CExtWA < CExtAFV < CFormView > > >
  12. {
  13. // Construction
  14. public:
  15. CChildView();
  16. DECLARE_DYNCREATE( CChildView );
  17. // Attributes
  18. public:
  19. // Operations
  20. public:
  21. //{{AFX_DATA(CChildView)
  22. enum { IDD = IDD_DIALOG_CHILD_VIEW };
  23. CExtRadioButton m_radioShadow1;
  24. CExtRadioButton m_radioShadow2;
  25. CExtRadioButton m_radioShadow3;
  26. CExtCheckBox m_checkCustomBorderRbColor;
  27. CExtColorButton m_buttonCustomBorderRbColor;
  28. CExtCheckBox m_checkCustomBorderLtColor;
  29. CExtColorButton m_buttonCustomBorderLtColor;
  30. CExtCheckBox m_checkCustomBkColor;
  31. CExtColorButton m_buttonCustomBkColor;
  32. CExtGroupBox m_groupBox1;
  33. CExtGroupBox m_groupBox2;
  34. //}}AFX_DATA
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CChildView)
  38. public:
  39. virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
  40. virtual void OnInitialUpdate();
  41. protected:
  42. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  43. //}}AFX_VIRTUAL
  44. // Implementation
  45. public:
  46. virtual ~CChildView();
  47. // Generated message map functions
  48. protected:
  49. //{{AFX_MSG(CChildView)
  50. afx_msg void OnEditUndo();
  51. afx_msg void OnEditCopy();
  52. afx_msg void OnEditCut();
  53. afx_msg void OnEditPaste();
  54. afx_msg void OnFilePrint();
  55. afx_msg void OnSize(UINT nType, int cx, int cy);
  56. afx_msg void OnFileNew();
  57. afx_msg void OnFileOpen();
  58. afx_msg void OnFilePrintPreview();
  59. afx_msg void OnFileSave();
  60. afx_msg void OnFileSendMail();
  61. afx_msg void OnCheckCustomBackgroundColor();
  62. afx_msg void OnCheckCustomBorderLtColor();
  63. afx_msg void OnCheckCustomBorderRbColor();
  64. //}}AFX_MSG
  65. DECLARE_MESSAGE_MAP()
  66. };
  67. /////////////////////////////////////////////////////////////////////////////
  68. //{{AFX_INSERT_LOCATION}}
  69. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  70. #endif // !defined(AFX_CHILDVIEW_H__3C598774_58D7_4703_A198_95CF22226AFC__INCLUDED_)