SampleView.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. #if !defined(AFX_SAMPLEVIEW_H__8A05B26C_2A39_4658_916B_642343965F16__INCLUDED_)
  2. #define AFX_SAMPLEVIEW_H__8A05B26C_2A39_4658_916B_642343965F16__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // SampleView.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CSampleView form view
  10. #ifndef __AFXEXT_H__
  11. #include <afxext.h>
  12. #endif
  13. class CSampleView : public CFormView
  14. {
  15. protected:
  16. CSampleView();           // protected constructor used by dynamic creation
  17. DECLARE_DYNCREATE(CSampleView)
  18. // Form Data
  19. public:
  20. //{{AFX_DATA(CSampleView)
  21. enum { IDD = IDD_VIEW_SAMPLE };
  22. int m_nSkin;
  23. int m_nTheme;
  24. CString m_strFind;
  25. BOOL m_bMatchCase;
  26. BOOL m_bMatchWord;
  27. BOOL    m_bFlat;
  28. BOOL m_bShowGripper;
  29. //}}AFX_DATA
  30. // Attributes
  31. public:
  32. // Operations
  33. public:
  34. // Overrides
  35. // ClassWizard generated virtual function overrides
  36. //{{AFX_VIRTUAL(CSampleView)
  37. public:
  38. virtual void OnInitialUpdate();
  39. protected:
  40. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  41. //}}AFX_VIRTUAL
  42. // Implementation
  43. protected:
  44. virtual ~CSampleView();
  45. #ifdef _DEBUG
  46. virtual void AssertValid() const;
  47. virtual void Dump(CDumpContext& dc) const;
  48. #endif
  49. // Generated message map functions
  50. //{{AFX_MSG(CSampleView)
  51. afx_msg void OnButtonFind();
  52. afx_msg void OnButtonColordialog();
  53. afx_msg void OnButtonFontdialog();
  54. afx_msg void OnButtonPrintdialog();
  55. afx_msg void OnButtonOpendialog();
  56. afx_msg void OnSkinChanged();
  57. afx_msg void OnThemeChanged();
  58. afx_msg void OnChangeEditFind();
  59. afx_msg void OnCheckGripper();
  60. //}}AFX_MSG
  61. DECLARE_MESSAGE_MAP()
  62. };
  63. /////////////////////////////////////////////////////////////////////////////
  64. //{{AFX_INSERT_LOCATION}}
  65. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  66. #endif // !defined(AFX_SAMPLEVIEW_H__8A05B26C_2A39_4658_916B_642343965F16__INCLUDED_)