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

对话框与窗口

开发平台:

Visual C++

  1. // ListFrame.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 "PaneOptions.h"
  22. #include "ListFrame.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. // CListFrame
  31. IMPLEMENT_DYNCREATE(CListFrame, CFrameWnd)
  32. CListFrame::CListFrame()
  33. {
  34. }
  35. CListFrame::~CListFrame()
  36. {
  37. }
  38. BEGIN_MESSAGE_MAP(CListFrame, CFrameWnd)
  39. //{{AFX_MSG_MAP(CListFrame)
  40. ON_WM_CREATE()
  41. //}}AFX_MSG_MAP
  42. END_MESSAGE_MAP()
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CListFrame message handlers
  45. BOOL CListFrame::PreCreateWindow(CREATESTRUCT& cs)
  46. {
  47. CFrameWnd::PreCreateWindow(cs);
  48. cs.dwExStyle = 0;
  49. cs.style |= WS_CLIPCHILDREN|WS_CLIPSIBLINGS;
  50. return TRUE;
  51. }
  52. int CListFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  53. {
  54. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  55. return -1;
  56. // create a view to occupy the client area of the frame
  57. if (!m_wndListCtrl.Create(WS_CLIPCHILDREN|WS_CLIPSIBLINGS|WS_VISIBLE|LVS_REPORT   , CRect(0, 0, 0, 0), this, AFX_IDW_PANE_FIRST))
  58. {
  59. TRACE0("Failed to create view windown");
  60. return -1;
  61. }
  62. m_wndListCtrl.InsertColumn(0, _T("Name"), LVCFMT_LEFT, 150);
  63. m_wndListCtrl.InsertColumn(1, _T("Type"), LVCFMT_LEFT, 110);
  64. m_wndListCtrl.InsertColumn(2, _T("Data"), LVCFMT_LEFT, 200);
  65. m_paneManager.InstallDockingPanes(this);
  66. m_paneManager.SetTheme(xtpPaneThemeOffice);
  67. CMainFrame::m_arrManagers.Add(&m_paneManager);
  68. // Create docking panes.
  69. CXTPDockingPane* pwndPane1 = m_paneManager.CreatePane(
  70. 1, CRect(0, 0,200, 120), xtpPaneDockRight);
  71. pwndPane1->SetTitle(_T("List Options"));
  72. pwndPane1->Hide();
  73. pwndPane1->SetOptions(xtpPaneNoCloseable);
  74. const int  nIDs[] = {1};
  75. m_paneManager.SetIcons(IDB_PANE_ICONS, nIDs, 1);
  76. return 0;
  77. }