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

对话框与窗口

开发平台:

Visual C++

  1. // NewToolbar.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 "CheckListBox.h"
  22. #include "NewToolbar.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #undef THIS_FILE
  26. static char THIS_FILE[] = __FILE__;
  27. #endif
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CNewToolbar dialog
  30. CNewToolbar::CNewToolbar(LPCTSTR lpszToolbar, LPCTSTR lpszTitle, CWnd* pParent /*=NULL*/)
  31. : CXTResizeDialog(CNewToolbar::IDD, pParent)
  32. {
  33. //{{AFX_DATA_INIT(CNewToolbar)
  34. m_strToolbar = lpszToolbar;
  35. //}}AFX_DATA_INIT
  36. m_strDlgTitle = lpszTitle;
  37. }
  38. void CNewToolbar::DoDataExchange(CDataExchange* pDX)
  39. {
  40. CXTResizeDialog::DoDataExchange(pDX);
  41. //{{AFX_DATA_MAP(CNewToolbar)
  42. DDX_Control(pDX, IDOK, m_btnOk);
  43. DDX_Control(pDX, IDCANCEL, m_btnCancel);
  44. DDX_Control(pDX, IDC_EDIT_TOOLBAR, m_editToolbar);
  45. DDX_Text(pDX, IDC_EDIT_TOOLBAR, m_strToolbar);
  46. //}}AFX_DATA_MAP
  47. }
  48. BEGIN_MESSAGE_MAP(CNewToolbar, CXTResizeDialog)
  49. //{{AFX_MSG_MAP(CNewToolbar)
  50. ON_WM_DESTROY()
  51. //}}AFX_MSG_MAP
  52. END_MESSAGE_MAP()
  53. /////////////////////////////////////////////////////////////////////////////
  54. // CNewToolbar message handlers
  55. BOOL CNewToolbar::OnInitDialog()
  56. {
  57. CXTResizeDialog::OnInitDialog();
  58. // Set focus to the edit control and select
  59. // its contents.
  60. m_editToolbar.SetFocus();
  61. m_editToolbar.SetSel(0,-1);
  62. SetWindowText(m_strDlgTitle);
  63. // Set control resizing.
  64. SetResize(IDC_EDIT_TOOLBAR, SZ_TOP_LEFT, SZ_TOP_RIGHT);
  65. SetResize(IDOK, SZ_TOP_RIGHT, SZ_TOP_RIGHT);
  66. SetResize(IDCANCEL, SZ_TOP_RIGHT, SZ_TOP_RIGHT);
  67. // prevent vertical resizing.
  68. SetFlag(xtResizeNoVertical);
  69. // Load window placement
  70. LoadPlacement(_T("CNewToolbar"));
  71. m_btnOk.SetXButtonStyle(BS_XT_SEMIFLAT);
  72. m_btnCancel.SetXButtonStyle(BS_XT_SEMIFLAT);
  73. return FALSE;   // return TRUE unless you set the focus to a control
  74.                 // EXCEPTION: OCX Property Pages should return FALSE
  75. }
  76. void CNewToolbar::OnDestroy()
  77. {
  78. // Save window placement
  79. SavePlacement(_T("CNewToolbar"));
  80. CXTResizeDialog::OnDestroy();
  81. }