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

对话框与窗口

开发平台:

Visual C++

  1. // GUI_EclipseView.cpp : implementation of the CGUI_EclipseView 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_Eclipse.h"
  22. #include "GUI_EclipseDoc.h"
  23. #include "GUI_EclipseView.h"
  24. #ifdef _DEBUG
  25. #define new DEBUG_NEW
  26. #undef THIS_FILE
  27. static char THIS_FILE[] = __FILE__;
  28. #endif
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CGUI_EclipseView
  31. IMPLEMENT_DYNCREATE(CGUI_EclipseView, CEditView)
  32. BEGIN_MESSAGE_MAP(CGUI_EclipseView, CEditView)
  33. //{{AFX_MSG_MAP(CGUI_EclipseView)
  34. ON_COMMAND(ID_NAVIGATE_BACK, OnEmptyCommand)
  35. ON_COMMAND(ID_NAVIGATE_FORWARD, OnEmptyCommand)
  36. //}}AFX_MSG_MAP
  37. // Standard printing commands
  38. ON_COMMAND(ID_EDIT_SEARCH, CEditView::OnEditFind)
  39. ON_COMMAND(ID_FILE_PRINT, CEditView::OnFilePrint)
  40. ON_COMMAND(ID_FILE_PRINT_DIRECT, CEditView::OnFilePrint)
  41. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CEditView::OnFilePrintPreview)
  42. END_MESSAGE_MAP()
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CGUI_EclipseView construction/destruction
  45. CGUI_EclipseView::CGUI_EclipseView()
  46. {
  47. // TODO: add construction code here
  48. }
  49. CGUI_EclipseView::~CGUI_EclipseView()
  50. {
  51. }
  52. BOOL CGUI_EclipseView::PreCreateWindow(CREATESTRUCT& cs)
  53. {
  54. // TODO: Modify the Window class or styles here by modifying
  55. //  the CREATESTRUCT cs
  56. BOOL bPreCreated = CEditView::PreCreateWindow(cs);
  57. cs.style &= ~(ES_AUTOHSCROLL|WS_HSCROLL);   // Enable word-wrapping
  58. //cs.dwExStyle &= ~WS_EX_CLIENTEDGE;
  59. //cs.style &= ~WS_BORDER;
  60. return bPreCreated;
  61. }
  62. /////////////////////////////////////////////////////////////////////////////
  63. // CGUI_EclipseView drawing
  64. void CGUI_EclipseView::OnDraw(CDC* /*pDC*/)
  65. {
  66. }
  67. /////////////////////////////////////////////////////////////////////////////
  68. // CGUI_EclipseView printing
  69. BOOL CGUI_EclipseView::OnPreparePrinting(CPrintInfo* pInfo)
  70. {
  71. // default CEditView preparation
  72. return CEditView::OnPreparePrinting(pInfo);
  73. }
  74. void CGUI_EclipseView::OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo)
  75. {
  76. // Default CEditView begin printing.
  77. CEditView::OnBeginPrinting(pDC, pInfo);
  78. }
  79. void CGUI_EclipseView::OnEndPrinting(CDC* pDC, CPrintInfo* pInfo)
  80. {
  81. // Default CEditView end printing
  82. CEditView::OnEndPrinting(pDC, pInfo);
  83. }
  84. /////////////////////////////////////////////////////////////////////////////
  85. // CGUI_EclipseView diagnostics
  86. #ifdef _DEBUG
  87. void CGUI_EclipseView::AssertValid() const
  88. {
  89. CEditView::AssertValid();
  90. }
  91. void CGUI_EclipseView::Dump(CDumpContext& dc) const
  92. {
  93. CEditView::Dump(dc);
  94. }
  95. CGUI_EclipseDoc* CGUI_EclipseView::GetDocument() // non-debug version is inline
  96. {
  97. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CGUI_EclipseDoc)));
  98. return (CGUI_EclipseDoc*)m_pDocument;
  99. }
  100. #endif //_DEBUG
  101. /////////////////////////////////////////////////////////////////////////////
  102. // CGUI_EclipseView message handlers
  103. void CGUI_EclipseView::OnEmptyCommand()
  104. {
  105. // TODO: Add your command handler code here
  106. }