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

对话框与窗口

开发平台:

Visual C++

  1. // CheckListBoxDlg.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 "CheckListBoxDlg.h"
  23. #include "AboutDlg.h"
  24. #include "NewToolbar.h"
  25. #ifdef _DEBUG
  26. #define new DEBUG_NEW
  27. #undef THIS_FILE
  28. static char THIS_FILE[] = __FILE__;
  29. #endif
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CCheckListBoxDlg dialog
  32. CCheckListBoxDlg::CCheckListBoxDlg(CWnd* pParent /*=NULL*/)
  33. : CXTResizeDialog(CCheckListBoxDlg::IDD, pParent)
  34. {
  35. //{{AFX_DATA_INIT(CCheckListBoxDlg)
  36. // NOTE: the ClassWizard will add member initialization here
  37. //}}AFX_DATA_INIT
  38. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  39. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  40. }
  41. void CCheckListBoxDlg::DoDataExchange(CDataExchange* pDX)
  42. {
  43. CXTResizeDialog::DoDataExchange(pDX);
  44. //{{AFX_DATA_MAP(CCheckListBoxDlg)
  45. DDX_Control(pDX, IDC_LBOX_CHECK, m_checkList);
  46. DDX_Control(pDX, IDC_BTN_RENAME, m_renameButton);
  47. DDX_Control(pDX, IDC_BTN_DELETE, m_deleteButton);
  48. DDX_Control(pDX, IDCANCEL,          m_exitButton);
  49. DDX_Control(pDX, IDC_BTN_NEW, m_newButton);
  50. //}}AFX_DATA_MAP
  51. }
  52. BEGIN_MESSAGE_MAP(CCheckListBoxDlg, CXTResizeDialog)
  53. //{{AFX_MSG_MAP(CCheckListBoxDlg)
  54. ON_WM_SYSCOMMAND()
  55. ON_WM_PAINT()
  56. ON_WM_QUERYDRAGICON()
  57. ON_BN_CLICKED(IDC_BTN_RENAME, OnIdcBtnRename)
  58. ON_LBN_SELCHANGE(IDC_LBOX_CHECK, OnSelchangeIdcLboxCheck)
  59. ON_BN_CLICKED(IDC_BTN_DELETE, OnIdcBtnDelete)
  60. ON_BN_CLICKED(IDC_BTN_NEW, OnIdcBtnNew)
  61. ON_WM_DESTROY()
  62. //}}AFX_MSG_MAP
  63. END_MESSAGE_MAP()
  64. /////////////////////////////////////////////////////////////////////////////
  65. // CCheckListBoxDlg message handlers
  66. BOOL CCheckListBoxDlg::OnInitDialog()
  67. {
  68. CXTResizeDialog::OnInitDialog();
  69. // Add "About..." menu item to system menu.
  70. // IDM_ABOUTBOX must be in the system command range.
  71. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  72. ASSERT(IDM_ABOUTBOX < 0xF000);
  73. CMenu* pSysMenu = GetSystemMenu(FALSE);
  74. if (pSysMenu != NULL)
  75. {
  76. CString strAboutMenu;
  77. strAboutMenu.LoadString(IDS_ABOUTBOX);
  78. if (!strAboutMenu.IsEmpty())
  79. {
  80. pSysMenu->AppendMenu(MF_SEPARATOR);
  81. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  82. }
  83. }
  84. // Set the icon for this dialog.  The framework does this automatically
  85. //  when the application's main window is not a dialog
  86. SetIcon(m_hIcon, TRUE);         // Set big icon
  87. SetIcon(m_hIcon, FALSE);        // Set small icon
  88. // initialize the list box.
  89. m_checkList.Initialize();
  90. // Set control resizing.
  91. SetResize(IDC_LBOX_CHECK, SZ_TOP_LEFT, SZ_BOTTOM_RIGHT);
  92. SetResize(IDC_BTN_NEW, SZ_TOP_RIGHT, SZ_TOP_RIGHT);
  93. SetResize(IDC_BTN_RENAME, SZ_TOP_RIGHT, SZ_TOP_RIGHT);
  94. SetResize(IDC_BTN_DELETE, SZ_TOP_RIGHT, SZ_TOP_RIGHT);
  95. SetResize(IDCANCEL, SZ_BOTTOM_RIGHT, SZ_BOTTOM_RIGHT);
  96. // Load window placement
  97. LoadPlacement(_T("CCheckListBoxDlg"));
  98. // Add items to the check box.
  99. InitCheckListBox();
  100. OnSelchangeIdcLboxCheck();
  101. m_renameButton.SetXButtonStyle(BS_XT_SEMIFLAT | BS_XT_WINXP_COMPAT);
  102. m_deleteButton.SetXButtonStyle(BS_XT_SEMIFLAT | BS_XT_WINXP_COMPAT);
  103. m_newButton.SetXButtonStyle(BS_XT_SEMIFLAT | BS_XT_WINXP_COMPAT);
  104. m_exitButton.SetXButtonStyle(BS_XT_SEMIFLAT | BS_XT_WINXP_COMPAT);
  105. return TRUE;  // return TRUE  unless you set the focus to a control
  106. }
  107. void CCheckListBoxDlg::OnDestroy()
  108. {
  109. // Save window placement
  110. SavePlacement(_T("CCheckListBoxDlg"));
  111. CXTResizeDialog::OnDestroy();
  112. }
  113. void CCheckListBoxDlg::OnSysCommand(UINT nID, LPARAM lParam)
  114. {
  115. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  116. {
  117. CAboutDlg dlgAbout;
  118. dlgAbout.DoModal();
  119. }
  120. else
  121. {
  122. CXTResizeDialog::OnSysCommand(nID, lParam);
  123. }
  124. }
  125. // If you add a minimize button to your dialog, you will need the code below
  126. //  to draw the icon.  For MFC applications using the document/view model,
  127. //  this is automatically done for you by the framework.
  128. void CCheckListBoxDlg::OnPaint()
  129. {
  130. if (IsIconic())
  131. {
  132. CPaintDC dc(this); // device context for painting
  133. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  134. // Center icon in client rectangle
  135. int cxIcon = GetSystemMetrics(SM_CXICON);
  136. int cyIcon = GetSystemMetrics(SM_CYICON);
  137. CRect rect;
  138. GetClientRect(&rect);
  139. int x = (rect.Width() - cxIcon + 1) / 2;
  140. int y = (rect.Height() - cyIcon + 1) / 2;
  141. // Draw the icon
  142. dc.DrawIcon(x, y, m_hIcon);
  143. }
  144. else
  145. {
  146. CXTResizeDialog::OnPaint();
  147. }
  148. }
  149. // The system calls this to obtain the cursor to display while the user drags
  150. //  the minimized window.
  151. HCURSOR CCheckListBoxDlg::OnQueryDragIcon()
  152. {
  153. return (HCURSOR) m_hIcon;
  154. }
  155. void CCheckListBoxDlg::InitCheckListBox()
  156. {
  157. m_checkList.AddString (_T("Standard"));
  158. m_checkList.AddString (_T("Advanced"));
  159. m_checkList.AddString (_T("Menu Bar"));
  160. m_checkList.AddString (_T("Web"));
  161. m_checkList.SetCheck(1, TRUE);
  162. }
  163. void CCheckListBoxDlg::OnSelchangeIdcLboxCheck()
  164. {
  165. m_renameButton.EnableWindow (m_checkList.GetCurSel() != LB_ERR);
  166. m_deleteButton.EnableWindow (m_checkList.GetCurSel() != LB_ERR);
  167. }
  168. void CCheckListBoxDlg::OnIdcBtnRename()
  169. {
  170. int nIndex = m_checkList.GetCurSel();
  171. if (nIndex == LB_ERR)
  172. return;
  173. bool bCheck = m_checkList.GetCheck(nIndex) ? true : false;
  174. CString strText;
  175. m_checkList.GetText( nIndex, strText );
  176. CNewToolbar dlg(strText, _T("Rename Toolbar"), this);
  177. if (dlg.DoModal() == IDOK)
  178. {
  179. m_checkList.DeleteString(nIndex);
  180. m_checkList.InsertString(nIndex, dlg.m_strToolbar);
  181. m_checkList.SetCheck(nIndex, bCheck);
  182. m_checkList.SetCurSel(nIndex);
  183. }
  184. OnSelchangeIdcLboxCheck();
  185. }
  186. void CCheckListBoxDlg::OnIdcBtnDelete()
  187. {
  188. int nIndex = m_checkList.GetCurSel();
  189. if (nIndex == LB_ERR)
  190. return;
  191. CString strText;
  192. m_checkList.GetText( nIndex, strText );
  193. CString strMessage;
  194. strMessage.Format(_T("Are you sure you want to delete the '%s' toolbar?"), (LPCTSTR)strText);
  195. if (AfxMessageBox(strMessage, MB_ICONWARNING|MB_OKCANCEL) == IDOK)
  196. {
  197. m_checkList.DeleteString(nIndex);
  198. int nCount = m_checkList.GetCount();
  199. if (nCount != 0)
  200. {
  201. if (nIndex < nCount) {
  202. m_checkList.SetCurSel(nIndex);
  203. }
  204. else {
  205. m_checkList.SetCurSel(nCount-1);
  206. }
  207. }
  208. }
  209. OnSelchangeIdcLboxCheck();
  210. }
  211. void CCheckListBoxDlg::OnIdcBtnNew()
  212. {
  213. int nIndex = m_checkList.GetCount();
  214. CNewToolbar dlg(_T("New Toolbar"), _T("Rename Toolbar"), this);
  215. if (dlg.DoModal() == IDOK)
  216. {
  217. m_checkList.InsertString(nIndex, dlg.m_strToolbar);
  218. m_checkList.SetCurSel(nIndex);
  219. }
  220. OnSelchangeIdcLboxCheck();
  221. }