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

对话框与窗口

开发平台:

Visual C++

  1. // ShellListView.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "WinExplorer.h"
  5. #include "ShellListView.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CShellListView
  13. IMPLEMENT_DYNCREATE(CShellListView, CXTShellListView)
  14. CShellListView::CShellListView()
  15. {
  16. m_bSortColor = true;
  17. CXTColorRef crSortBack(GetXtremeColor(COLOR_WINDOW));
  18. crSortBack.subtract(RGB(8,8,8));
  19. SetSortTextColor(GetXtremeColor(COLOR_WINDOWTEXT));
  20. SetSortBackColor(crSortBack);
  21. }
  22. CShellListView::~CShellListView()
  23. {
  24. }
  25. BEGIN_MESSAGE_MAP(CShellListView, CXTShellListView)
  26. //{{AFX_MSG_MAP(CShellListView)
  27. // NOTE - the ClassWizard will add and remove mapping macros here.
  28. //}}AFX_MSG_MAP
  29. END_MESSAGE_MAP()
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CShellListView drawing
  32. void CShellListView::OnDraw(CDC* /*pDC*/)
  33. {
  34. }
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CShellListView diagnostics
  37. #ifdef _DEBUG
  38. void CShellListView::AssertValid() const
  39. {
  40. CXTShellListView::AssertValid();
  41. }
  42. void CShellListView::Dump(CDumpContext& dc) const
  43. {
  44. CXTShellListView::Dump(dc);
  45. }
  46. #endif //_DEBUG
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CShellListView message handlers
  49. BOOL CShellListView::PreCreateWindow(CREATESTRUCT& cs) 
  50. {
  51. if (!CXTShellListView::PreCreateWindow(cs))
  52. return FALSE;
  53. cs.dwExStyle |= WS_EX_STATICEDGE;
  54. return TRUE;
  55. }