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

对话框与窗口

开发平台:

Visual C++

  1. // HistoryView.cpp : implementation 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. #include "stdafx.h"
  21. #include "GUI_Explorer.h"
  22. #include "HistoryView.h"
  23. #include "MainFrm.h"
  24. #ifdef _DEBUG
  25. #define new DEBUG_NEW
  26. #undef THIS_FILE
  27. static char THIS_FILE[] = __FILE__;
  28. #endif
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CHistoryView
  31. IMPLEMENT_DYNCREATE(CHistoryView, CView)
  32. CHistoryView::CHistoryView()
  33. {
  34. }
  35. CHistoryView::~CHistoryView()
  36. {
  37. }
  38. BEGIN_MESSAGE_MAP(CHistoryView, CView)
  39. //{{AFX_MSG_MAP(CHistoryView)
  40. ON_WM_CREATE()
  41. ON_WM_SIZE()
  42. //}}AFX_MSG_MAP
  43. ON_BN_CLICKED(IDC_CAPT_BUTTON, OnCaptionButton)
  44. END_MESSAGE_MAP()
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CHistoryView drawing
  47. void CHistoryView::OnDraw(CDC* pDC)
  48. {
  49. // TODO: add draw code here
  50. CRect r;
  51. GetClientRect(&r);
  52. pDC->SetBkMode(TRANSPARENT);
  53. int x = r.Width()/2 -50;
  54. int y = r.Height()/2-25;
  55. CRect rcSquare(x,y,x+100,y+50);
  56. CFont* pOldFont = pDC->SelectObject(&XTAuxData().font);
  57. pDC->DrawEdge(&rcSquare, BDR_RAISEDOUTER, BF_RECT);
  58. pDC->DrawText(_T("History View"), &r, DT_CENTER | DT_VCENTER | DT_SINGLELINE);
  59. pDC->SelectObject(pOldFont);
  60. }
  61. /////////////////////////////////////////////////////////////////////////////
  62. // CHistoryView diagnostics
  63. #ifdef _DEBUG
  64. void CHistoryView::AssertValid() const
  65. {
  66. CView::AssertValid();
  67. }
  68. void CHistoryView::Dump(CDumpContext& dc) const
  69. {
  70. CView::Dump(dc);
  71. }
  72. #endif //_DEBUG
  73. /////////////////////////////////////////////////////////////////////////////
  74. // CHistoryView message handlers
  75. BOOL CHistoryView::PreCreateWindow(CREATESTRUCT& cs)
  76. {
  77. // TODO: Add your specialized code here and/or call the base class
  78. cs.dwExStyle |= WS_EX_STATICEDGE;
  79. cs.style |= WS_CLIPCHILDREN|WS_CLIPSIBLINGS;
  80. return CView::PreCreateWindow(cs);
  81. }
  82. int CHistoryView::OnCreate(LPCREATESTRUCT lpCreateStruct)
  83. {
  84. if (CView::OnCreate(lpCreateStruct) == -1)
  85. return -1;
  86. // Create the image list used by frame buttons.
  87. m_ilButton.Create (XT_IDB_BTN_OUT, 16, 1, RGB(255,0,255));
  88. // Create the caption.
  89. if (!m_barCaption.Create(this, _T("History")))
  90. {
  91. TRACE0( "Unable to create caption.n" );
  92. return -1;
  93. }
  94. // Create the caption button.
  95. if (!m_btnCaption.Create(NULL, WS_VISIBLE|BS_ICON|BS_OWNERDRAW|BS_CENTER|BS_VCENTER,
  96. CRect(0,0,0,0), this, IDC_CAPT_BUTTON))
  97. {
  98. TRACE0( "Unable to create caption button.n" );
  99. return -1;
  100. }
  101. // set the caption buttons icon.
  102. m_btnCaption.SetIcon(CSize( 16, 15 ), m_ilButton.ExtractIcon(2));
  103. if (XTAuxData().bXPMode)
  104. {
  105. m_btnCaption.SetXButtonStyle(
  106. (m_btnCaption.GetXButtonStyle() | BS_XT_XPFLAT) & ~BS_XT_FLAT);
  107. }
  108. return 0;
  109. }
  110. void CHistoryView::OnSize(UINT nType, int cx, int cy)
  111. {
  112. CView::OnSize(nType, cx, cy);
  113. // TODO: Add your message handler code here
  114. if( m_barCaption.GetSafeHwnd()) {
  115. m_barCaption.MoveWindow( 0, 0, cx, 19 );
  116. }
  117. if( m_btnCaption.GetSafeHwnd()) {
  118. m_btnCaption.MoveWindow( cx-18, 2, 16, 15 );
  119. }
  120. }
  121. void CHistoryView::OnCaptionButton()
  122. {
  123. CMainFrame* pMainFrame = (CMainFrame*)GetParentFrame();
  124. ASSERT_VALID(pMainFrame);
  125. pMainFrame->GetSplitterWnd().HideColumn(0);
  126. }