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

对话框与窗口

开发平台:

Visual C++

  1. // SearchOptionsView.cpp : implementation of the CSearchOptionsView 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 "SearchOptions.h"
  22. #include "SearchOptionsDoc.h"
  23. #include "SearchOptionsView.h"
  24. #ifdef _DEBUG
  25. #define new DEBUG_NEW
  26. #undef THIS_FILE
  27. static char THIS_FILE[] = __FILE__;
  28. #endif
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CSearchOptionsView
  31. IMPLEMENT_DYNCREATE(CSearchOptionsView, CListView)
  32. BEGIN_MESSAGE_MAP(CSearchOptionsView, CListView)
  33. //{{AFX_MSG_MAP(CSearchOptionsView)
  34. // NOTE - the ClassWizard will add and remove mapping macros here.
  35. //    DO NOT EDIT what you see in these blocks of generated code!
  36. //}}AFX_MSG_MAP
  37. // Standard printing commands
  38. ON_COMMAND(ID_FILE_PRINT, CListView::OnFilePrint)
  39. ON_COMMAND(ID_FILE_PRINT_DIRECT, CListView::OnFilePrint)
  40. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CListView::OnFilePrintPreview)
  41. END_MESSAGE_MAP()
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CSearchOptionsView construction/destruction
  44. CSearchOptionsView::CSearchOptionsView()
  45. : m_bFirstTime( true )
  46. {
  47. // TODO: add construction code here
  48. }
  49. CSearchOptionsView::~CSearchOptionsView()
  50. {
  51. }
  52. BOOL CSearchOptionsView::PreCreateWindow(CREATESTRUCT& cs)
  53. {
  54. if (!CListView::PreCreateWindow(cs))
  55. return FALSE;
  56. cs.dwExStyle |= WS_EX_STATICEDGE;
  57. cs.style |= WS_CLIPCHILDREN | WS_CLIPSIBLINGS | LVS_REPORT | LVS_NOSORTHEADER;
  58. return TRUE;
  59. }
  60. /////////////////////////////////////////////////////////////////////////////
  61. // CSearchOptionsView drawing
  62. void CSearchOptionsView::OnDraw(CDC* /*pDC*/)
  63. {
  64. }
  65. void CSearchOptionsView::OnInitialUpdate()
  66. {
  67. CListView::OnInitialUpdate();
  68. if ( m_bFirstTime )
  69. {
  70. CListCtrl& refCtrl = GetListCtrl();
  71. refCtrl.InsertColumn(0, _T("Column Text"), LVCFMT_LEFT, 250);
  72. refCtrl.InsertItem(0, _T("Item Text"));
  73. m_bFirstTime = false;
  74. }
  75. // TODO: You may populate your ListView with items by directly accessing
  76. //  its list control through a call to GetListCtrl().
  77. }
  78. /////////////////////////////////////////////////////////////////////////////
  79. // CSearchOptionsView printing
  80. BOOL CSearchOptionsView::OnPreparePrinting(CPrintInfo* pInfo)
  81. {
  82. // default preparation
  83. return DoPreparePrinting(pInfo);
  84. }
  85. void CSearchOptionsView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  86. {
  87. // TODO: add extra initialization before printing
  88. }
  89. void CSearchOptionsView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  90. {
  91. // TODO: add cleanup after printing
  92. }
  93. /////////////////////////////////////////////////////////////////////////////
  94. // CSearchOptionsView diagnostics
  95. #ifdef _DEBUG
  96. void CSearchOptionsView::AssertValid() const
  97. {
  98. CListView::AssertValid();
  99. }
  100. void CSearchOptionsView::Dump(CDumpContext& dc) const
  101. {
  102. CListView::Dump(dc);
  103. }
  104. CSearchOptionsDoc* CSearchOptionsView::GetDocument() // non-debug version is inline
  105. {
  106. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CSearchOptionsDoc)));
  107. return (CSearchOptionsDoc*)m_pDocument;
  108. }
  109. #endif //_DEBUG
  110. /////////////////////////////////////////////////////////////////////////////
  111. // CSearchOptionsView message handlers
  112. void CSearchOptionsView::OnStyleChanged(int /*nStyleType*/, LPSTYLESTRUCT /*lpStyleStruct*/)
  113. {
  114. //TODO: add code to react to the user changing the view style of your window
  115. }