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

对话框与窗口

开发平台:

Visual C++

  1. // PreviewPane.h : header file
  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_PREVIEWPANE_H__1D0FB113_4A25_11D4_82DA_D868EA325637__INCLUDED_)
  21. #define AFX_PREVIEWPANE_H__1D0FB113_4A25_11D4_82DA_D868EA325637__INCLUDED_
  22. #if _MSC_VER >= 1000
  23. #pragma once
  24. #endif // _MSC_VER >= 1000
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CPreviewEdit
  27. class CPreviewEdit : public CRichEditCtrl
  28. {
  29. public:
  30. CPreviewEdit() {}
  31. virtual ~CPreviewEdit() {}
  32. //{{AFX_VIRTUAL(CPreviewEdit)
  33. //}}AFX_VIRTUAL
  34. protected:
  35. //{{AFX_MSG(CPreviewEdit)
  36. afx_msg void OnSetFocus(CWnd* pOldWnd);
  37. afx_msg void OnKillFocus(CWnd* pNewWnd);
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. };
  41. /////////////////////////////////////////////////////////////////////////////
  42. // CPreviewPane view
  43. class CPreviewPane : public CXTPOfficeBorder<CView>
  44. {
  45. protected:
  46. CPreviewPane();           // protected constructor used by dynamic creation
  47. DECLARE_DYNCREATE(CPreviewPane)
  48. // Attributes
  49. public:
  50. CString       m_strTitle1;
  51. CString       m_strTitle2;
  52. CString       m_strDescp1;
  53. CString       m_strDescp2;
  54. CString       m_strViewMessage;
  55. CRect         m_rcCaption;
  56. CRect         m_rcView;
  57. BOOL          m_bMax;
  58. COLORREF      m_clrViewMessage;
  59. CPreviewEdit  m_richEditCtrl;
  60. // Operations
  61. public:
  62. void ResizeEditCtrl();
  63. // Overrides
  64. // ClassWizard generated virtual function overrides
  65. //{{AFX_VIRTUAL(CPreviewPane)
  66. protected:
  67. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  68. //}}AFX_VIRTUAL
  69. // Implementation
  70. protected:
  71. virtual ~CPreviewPane();
  72. #ifdef _DEBUG
  73. virtual void AssertValid() const;
  74. virtual void Dump(CDumpContext& dc) const;
  75. #endif
  76. // Generated message map functions
  77. protected:
  78. //{{AFX_MSG(CPreviewPane)
  79. afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
  80. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  81. afx_msg void OnPaint();
  82. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  83. afx_msg void OnSize(UINT nType, int cx, int cy);
  84. //}}AFX_MSG
  85. DECLARE_MESSAGE_MAP()
  86. };
  87. /////////////////////////////////////////////////////////////////////////////
  88. //{{AFX_INSERT_LOCATION}}
  89. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  90. #endif // !defined(AFX_PREVIEWPANE_H__1D0FB113_4A25_11D4_82DA_D868EA325637__INCLUDED_)