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

对话框与窗口

开发平台:

Visual C++

  1. // GUI_ExplorerView.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 "GUI_ExplorerView.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CGUI_ExplorerView
  30. IMPLEMENT_DYNCREATE(CGUI_ExplorerView, CView)
  31. CGUI_ExplorerView::CGUI_ExplorerView()
  32. {
  33. }
  34. CGUI_ExplorerView::~CGUI_ExplorerView()
  35. {
  36. }
  37. BEGIN_MESSAGE_MAP(CGUI_ExplorerView, CView)
  38. //{{AFX_MSG_MAP(CGUI_ExplorerView)
  39. ON_WM_CREATE()
  40. ON_WM_SIZE()
  41. //}}AFX_MSG_MAP
  42. ON_MESSAGE(XTWM_SHELL_NOTIFY, OnUpdateShell)
  43. END_MESSAGE_MAP()
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CGUI_ExplorerView drawing
  46. void CGUI_ExplorerView::OnDraw(CDC* /*pDC*/)
  47. {
  48. }
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CGUI_ExplorerView diagnostics
  51. #ifdef _DEBUG
  52. void CGUI_ExplorerView::AssertValid() const
  53. {
  54. CView::AssertValid();
  55. }
  56. void CGUI_ExplorerView::Dump(CDumpContext& dc) const
  57. {
  58. CView::Dump(dc);
  59. }
  60. #endif //_DEBUG
  61. /////////////////////////////////////////////////////////////////////////////
  62. // CGUI_ExplorerView message handlers
  63. BOOL CGUI_ExplorerView::PreCreateWindow(CREATESTRUCT& cs)
  64. {
  65. // TODO: Add your specialized code here and/or call the base class
  66. cs.style |= WS_CLIPCHILDREN|WS_CLIPSIBLINGS;
  67. //cs.dwExStyle |= WS_EX_STATICEDGE;
  68. return CView::PreCreateWindow(cs);
  69. }
  70. int CGUI_ExplorerView::OnCreate(LPCREATESTRUCT lpCreateStruct)
  71. {
  72. if (CView::OnCreate(lpCreateStruct) == -1)
  73. return -1;
  74. // TODO: Add your specialized creation code here
  75. if (!m_shellList.Create(WS_VISIBLE | WS_CHILD | WS_CLIPCHILDREN
  76. | LVS_REPORT | LVS_SHAREIMAGELISTS | LVS_EDITLABELS|LVS_SHOWSELALWAYS,
  77. CRect(0,0,0,0), this, 0))
  78. {
  79. TRACE0("Failed to create list control.n");
  80. return -1;
  81. }
  82. m_shellList.GetFlatHeaderCtrl()->EnableAutoSize();
  83. m_shellList.GetFlatHeaderCtrl()->SetTheme(new CXTHeaderCtrlThemeExplorer);
  84. m_shellList.GetFlatHeaderCtrl()->ShowSortArrow(TRUE);
  85. m_shellList.SetMinimumColSize(15);
  86. m_shellList.EnableUserSortColor(TRUE);
  87. return 0;
  88. }
  89. void CGUI_ExplorerView::OnSize(UINT nType, int cx, int cy)
  90. {
  91. CView::OnSize(nType, cx, cy);
  92. // TODO: Add your message handler code here
  93. if(m_shellList.GetSafeHwnd()) {
  94. m_shellList.MoveWindow(0,0,cx,cy);
  95. }
  96. }
  97. LRESULT CGUI_ExplorerView::OnUpdateShell(WPARAM wParam, LPARAM /*lParam*/)
  98. {
  99. // Pass along to parent frame.
  100. CFrameWnd* pFrameWnd = GetParentFrame();
  101. ASSERT_VALID(pFrameWnd);
  102. pFrameWnd->SendMessage(XTWM_SHELL_NOTIFY, wParam);
  103. return 0;
  104. }