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

对话框与窗口

开发平台:

Visual C++

  1. // GUI_OutlookView.h : interface of the CGUI_OutlookView 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_GUI_OUTLOOKVIEW_H__484D02ED_732C_445C_88DC_555072C3680A__INCLUDED_)
  21. #define AFX_GUI_OUTLOOKVIEW_H__484D02ED_732C_445C_88DC_555072C3680A__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. // class forwards
  26. class CGUI_OutlookDoc;
  27. class CGUI_OutlookView : public CXTPOfficeBorder<CXTListView>
  28. {
  29. protected: // create from serialization only
  30. CGUI_OutlookView();
  31. DECLARE_DYNCREATE(CGUI_OutlookView)
  32. // Attributes
  33. public:
  34. CGUI_OutlookDoc* GetDocument();
  35. // Operations
  36. public:
  37. CImageList  m_imageList;
  38. // Overrides
  39. // ClassWizard generated virtual function overrides
  40. //{{AFX_VIRTUAL(CGUI_OutlookView)
  41. public:
  42. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  43. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  44. protected:
  45. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  46. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  47. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  48. //}}AFX_VIRTUAL
  49. virtual bool SortList(int nCol, bool bAscending);
  50. void InitializeHeaderControl();
  51. void InitializeListControl();
  52. void SetRedrawEx(BOOL bRedraw);
  53. // Implementation
  54. public:
  55. virtual ~CGUI_OutlookView();
  56. #ifdef _DEBUG
  57. virtual void AssertValid() const;
  58. virtual void Dump(CDumpContext& dc) const;
  59. #endif
  60. protected:
  61. // Generated message map functions
  62. protected:
  63. //{{AFX_MSG(CGUI_OutlookView)
  64. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  65. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  66. //}}AFX_MSG
  67. afx_msg void OnFilePrintPreview();
  68. DECLARE_MESSAGE_MAP()
  69. };
  70. #ifndef _DEBUG  // debug version in GUI_OutlookView.cpp
  71. inline CGUI_OutlookDoc* CGUI_OutlookView::GetDocument()
  72. { return (CGUI_OutlookDoc*)m_pDocument; }
  73. #endif
  74. /////////////////////////////////////////////////////////////////////////////
  75. //{{AFX_INSERT_LOCATION}}
  76. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  77. #endif // !defined(AFX_GUI_OUTLOOKVIEW_H__484D02ED_732C_445C_88DC_555072C3680A__INCLUDED_)