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

对话框与窗口

开发平台:

Visual C++

  1. // GUI_GnomeView.cpp : implementation of the CGUI_GnomeView 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. #include "stdafx.h"
  21. #include "GUI_Gnome.h"
  22. #include "GUI_GnomeDoc.h"
  23. #include "CntrItem.h"
  24. #include "GUI_GnomeView.h"
  25. #ifdef _DEBUG
  26. #define new DEBUG_NEW
  27. #undef THIS_FILE
  28. static char THIS_FILE[] = __FILE__;
  29. #endif
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CGUI_GnomeView
  32. IMPLEMENT_DYNCREATE(CGUI_GnomeView, CRichEditView)
  33. BEGIN_MESSAGE_MAP(CGUI_GnomeView, CRichEditView)
  34. //{{AFX_MSG_MAP(CGUI_GnomeView)
  35. // NOTE - the ClassWizard will add and remove mapping macros here.
  36. //    DO NOT EDIT what you see in these blocks of generated code!
  37. ON_WM_DESTROY()
  38. //}}AFX_MSG_MAP
  39. // Standard printing commands
  40. ON_COMMAND(ID_FILE_PRINT, CRichEditView::OnFilePrint)
  41. ON_COMMAND(ID_FILE_PRINT_DIRECT, CRichEditView::OnFilePrint)
  42. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CRichEditView::OnFilePrintPreview)
  43. END_MESSAGE_MAP()
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CGUI_GnomeView construction/destruction
  46. CGUI_GnomeView::CGUI_GnomeView()
  47. {
  48. // TODO: add construction code here
  49. }
  50. CGUI_GnomeView::~CGUI_GnomeView()
  51. {
  52. }
  53. BOOL CGUI_GnomeView::PreCreateWindow(CREATESTRUCT& cs)
  54. {
  55. // TODO: Modify the Window class or styles here by modifying
  56. //  the CREATESTRUCT cs
  57. return CRichEditView::PreCreateWindow(cs);
  58. }
  59. void CGUI_GnomeView::OnInitialUpdate()
  60. {
  61. CRichEditView::OnInitialUpdate();
  62. // Set the printing margins (720 twips = 1/2 inch).
  63. SetMargins(CRect(720, 720, 720, 720));
  64. }
  65. /////////////////////////////////////////////////////////////////////////////
  66. // CGUI_GnomeView printing
  67. BOOL CGUI_GnomeView::OnPreparePrinting(CPrintInfo* pInfo)
  68. {
  69. // default preparation
  70. return DoPreparePrinting(pInfo);
  71. }
  72. void CGUI_GnomeView::OnDestroy()
  73. {
  74. CRichEditView::OnDestroy();
  75. }
  76. /////////////////////////////////////////////////////////////////////////////
  77. // CGUI_GnomeView diagnostics
  78. #ifdef _DEBUG
  79. void CGUI_GnomeView::AssertValid() const
  80. {
  81. CRichEditView::AssertValid();
  82. }
  83. void CGUI_GnomeView::Dump(CDumpContext& dc) const
  84. {
  85. CRichEditView::Dump(dc);
  86. }
  87. CGUI_GnomeDoc* CGUI_GnomeView::GetDocument() // non-debug version is inline
  88. {
  89. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CGUI_GnomeDoc)));
  90. return (CGUI_GnomeDoc*)m_pDocument;
  91. }
  92. #endif //_DEBUG
  93. /////////////////////////////////////////////////////////////////////////////
  94. // CGUI_GnomeView message handlers