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

对话框与窗口

开发平台:

Visual C++

  1. // DockingFrame.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 "advanced.h"
  22. #include "DockingFrame.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CDockingFrame
  30. IMPLEMENT_DYNCREATE(CDockingFrame, CFrameWnd)
  31. CDockingFrame::CDockingFrame()
  32. {
  33. }
  34. CDockingFrame::~CDockingFrame()
  35. {
  36. }
  37. BEGIN_MESSAGE_MAP(CDockingFrame, CFrameWnd)
  38. //{{AFX_MSG_MAP(CDockingFrame)
  39. ON_WM_CREATE()
  40. ON_COMMAND(ID_BUTTON_INSERT, OnButtonInsert)
  41. ON_COMMAND(ID_BUTTON_CLEAR, OnButtonClear)
  42. ON_COMMAND(ID_BUTTON_DELETE, OnButtonDelete)
  43. //}}AFX_MSG_MAP
  44. END_MESSAGE_MAP()
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CDockingFrame message handlers
  47. int CDockingFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  48. {
  49. if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
  50. return -1;
  51. if (!m_wndView.CreateEx(WS_EX_STATICEDGE, _T("LISTBOX"), NULL,
  52. WS_CHILD|WS_VISIBLE|LBS_NOINTEGRALHEIGHT|WS_VSCROLL, CRect(0, 0, 0, 0),  this, AFX_IDW_PANE_FIRST))
  53. {
  54. TRACE0("Failed to create view windown");
  55. return -1;
  56. }
  57. m_wndView.SetFont(CFont::FromHandle((HFONT)GetStockObject(DEFAULT_GUI_FONT)));
  58. CString strText;
  59. int iItem;
  60. for (iItem = 1; iItem < 51; ++iItem)
  61. {
  62. strText.Format(_T("ListBox Item %d"), iItem);
  63. m_wndView.AddString(strText);   }
  64. if (!InitCommandBars())
  65. return -1;
  66. CXTPCommandBars* pCommandBars = GetCommandBars();
  67. pCommandBars->GetCommandBarsOptions()->bShowExpandButtonAlways = FALSE;
  68. CXTPToolBar* pCommandBar = (CXTPToolBar*)pCommandBars->Add(_T("Docking"), xtpBarTop);
  69. if (!pCommandBar ||
  70. !pCommandBar->LoadToolBar(IDR_DOCKINGFRAME))
  71. {
  72. TRACE0("Failed to create toolbarn");
  73. return -1;
  74. }
  75. return 0;
  76. }
  77. void CDockingFrame::OnButtonInsert()
  78. {
  79. int nIndex = m_wndView.GetCurSel();
  80. CString strText;
  81. strText.Format(_T("ListBox Item %d"), m_wndView.GetCount());
  82. nIndex = nIndex == -1? m_wndView.GetCount(): nIndex ;
  83. m_wndView.InsertString(nIndex, strText);
  84. }
  85. void CDockingFrame::OnButtonClear()
  86. {
  87. m_wndView.ResetContent();
  88. }
  89. void CDockingFrame::OnButtonDelete()
  90. {
  91. int nIndex = m_wndView.GetCurSel();
  92. if (nIndex != -1) m_wndView.DeleteString(nIndex);
  93. }