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

对话框与窗口

开发平台:

Visual C++

  1. // CustomThemesView.h : interface of the CCustomThemesView class
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #if !defined(AFX_CUSTOMTHEMESVIEW_H__C2E22812_ABF7_47C9_86ED_E3020F897A2E__INCLUDED_)
  21. #define AFX_CUSTOMTHEMESVIEW_H__C2E22812_ABF7_47C9_86ED_E3020F897A2E__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. class CCustomThemesView : public CRichEditView
  26. {
  27. protected: // create from serialization only
  28. CCustomThemesView();
  29. DECLARE_DYNCREATE(CCustomThemesView)
  30. // Attributes
  31. public:
  32. CCustomThemesDoc* GetDocument();
  33. BOOL m_bCheck;
  34. COLORREF m_clr, m_clrBack;
  35. // Operations
  36. public:
  37. // Overrides
  38. // ClassWizard generated virtual function overrides
  39. //{{AFX_VIRTUAL(CCustomThemesView)
  40. public:
  41. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  42. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  43. protected:
  44. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  45. //}}AFX_VIRTUAL
  46. // Implementation
  47. public:
  48. virtual ~CCustomThemesView();
  49. #ifdef _DEBUG
  50. virtual void AssertValid() const;
  51. virtual void Dump(CDumpContext& dc) const;
  52. #endif
  53. protected:
  54. // Generated message map functions
  55. protected:
  56. //{{AFX_MSG(CCustomThemesView)
  57. // NOTE - the ClassWizard will add and remove member functions here.
  58. //    DO NOT EDIT what you see in these blocks of generated code !
  59. //}}AFX_MSG
  60. afx_msg void OnToolsHex();
  61. afx_msg void OnUpdateToolsHex(CCmdUI *pCmdUI);
  62. afx_msg void OnContextMenu(CWnd* pWnd, CPoint pos);
  63. afx_msg void OnRButtonDown(UINT nFlags, CPoint pos);
  64. afx_msg void OnUpdateSelectorText(CCmdUI* pCmd);
  65. afx_msg void OnSelectorText(NMHDR* pNMHDR, LRESULT* pResult);
  66. afx_msg void OnUpdateText(CCmdUI* pCmd);
  67. afx_msg void OnButtonText();
  68. afx_msg void OnUpdateSelectorBack(CCmdUI* pCmd);
  69. afx_msg void OnSelectorBack(NMHDR* pNMHDR, LRESULT* pResult);
  70. afx_msg void OnUpdateBack(CCmdUI* pCmd);
  71. afx_msg void OnButtonBack();
  72. afx_msg void OnTextAuto();
  73. afx_msg void OnUpdateTextAuto(CCmdUI* pCmd);
  74. afx_msg void OnBackNone();
  75. afx_msg void OnUpdateBackNone(CCmdUI* pCmd);
  76. afx_msg void OnTextMore();
  77. afx_msg void OnBackMore();
  78. afx_msg void OnEditFind(NMHDR* pNMHDR, LRESULT* pResult);
  79. afx_msg void OnUpdateEditFind(CCmdUI* pCmd);
  80. afx_msg void OnSetCharFormat(NMHDR* pNMHDR, LRESULT* pRes);
  81. afx_msg void OnUpdateComboFont(CCmdUI* pCmd);
  82. afx_msg void OnDropdownFindCombo(NMHDR* pNMHDR, LRESULT* pRes);
  83. afx_msg void OnCloseupFindCombo(NMHDR* pNMHDR, LRESULT* pRes);
  84. afx_msg void OnSelchangeFindCombo(NMHDR* pNMHDR, LRESULT* pRes);
  85. afx_msg void OnSelendokFindCombo(NMHDR* pNMHDR, LRESULT* pRes);
  86. afx_msg void OnSetfocusFindCombo(NMHDR* pNMHDR, LRESULT* pRes);
  87. afx_msg void OnSelendcancelFindCombo(NMHDR* pNMHDR, LRESULT* pRes);
  88. afx_msg void OnKillfocusFindCombo(NMHDR* pNMHDR, LRESULT* pRes);
  89. afx_msg void OnEditchangeFindCombo(NMHDR* pNMHDR, LRESULT* pRes);
  90. void OnUpdateIndentLeft(CCmdUI* pCmdUI);
  91. void OnIndentLeft(NMHDR* pNMHDR, LRESULT* pResult);
  92. void OnIndentLeftSpin(NMHDR* pNMHDR, LRESULT* pResult);
  93. void SetIndentLeft(long nIndentLeft);
  94. long GetIndentLeft();
  95. void ShowContextMenu(CPoint point);
  96. DECLARE_MESSAGE_MAP()
  97. };
  98. #ifndef _DEBUG  // debug version in CustomThemesView.cpp
  99. inline CCustomThemesDoc* CCustomThemesView::GetDocument()
  100. { return (CCustomThemesDoc*)m_pDocument; }
  101. #endif
  102. /////////////////////////////////////////////////////////////////////////////
  103. //{{AFX_INSERT_LOCATION}}
  104. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  105. #endif // !defined(AFX_CUSTOMTHEMESVIEW_H__C2E22812_ABF7_47C9_86ED_E3020F897A2E__INCLUDED_)