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

对话框与窗口

开发平台:

Visual C++

  1. // TabCtrlDlg.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 "TabCtrl.h"
  22. #include "TabCtrlDlg.h"
  23. #include "AboutDlg.h"
  24. #include "View1.h"
  25. #include "View2.h"
  26. #include "View3.h"
  27. #ifdef _DEBUG
  28. #define new DEBUG_NEW
  29. #undef THIS_FILE
  30. static char THIS_FILE[] = __FILE__;
  31. #endif
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CEditListBoxEx dialog
  34. const int BTN_OFFSET = 22;
  35. BEGIN_MESSAGE_MAP(CEditListBoxEx, CXTEditListBox)
  36. //{{AFX_MSG_MAP(CEditListBoxEx)
  37. ON_WM_WINDOWPOSCHANGING()
  38. //}}AFX_MSG_MAP
  39. END_MESSAGE_MAP()
  40. void CEditListBoxEx::Initialize(bool bAutoFont/*=true*/)
  41. {
  42. CXTListBox::Initialize(bAutoFont);
  43. // get a pointer to the parent window.
  44. m_pParentWnd = GetParent();
  45. ASSERT_VALID(m_pParentWnd); // must be valid.
  46. // Create the edit toolbar group.
  47. if (!HasToolbar())
  48. return;
  49. // Create the toolbar.
  50. if (!CreateEditGroup(bAutoFont))
  51. return;
  52. // force WM_WINDOWPOSCHANGING to be called to adjust the
  53. // size of the edit list control, which will also cause
  54. // WM_WINDOWPOSCHANGED to be called to position the toolbar.
  55. ::SetWindowPos( GetSafeHwnd(), NULL, 0, 0, 0, 0,
  56. SWP_FRAMECHANGED|SWP_NOSIZE|SWP_NOMOVE);
  57. }
  58. void CEditListBoxEx::OnWindowPosChanging(WINDOWPOS FAR* lpwndpos)
  59. {
  60. if (HasToolbar() && ::IsWindow(m_editGroup.m_hWnd))
  61. {
  62. lpwndpos->cy -= BTN_OFFSET;
  63. lpwndpos->y  += BTN_OFFSET;
  64. }
  65. CXTListBox::OnWindowPosChanging(lpwndpos);
  66. }
  67. /////////////////////////////////////////////////////////////////////////////
  68. // CTabCtrlDlg dialog
  69. CTabCtrlDlg::CTabCtrlDlg(CWnd* pParent /*=NULL*/)
  70. : CXTResizeDialog(CTabCtrlDlg::IDD, pParent)
  71. {
  72. //{{AFX_DATA_INIT(CTabCtrlDlg)
  73. m_bAutoCondense = TRUE;
  74. m_bVertical = FALSE;
  75. m_bMultiLine = FALSE;
  76. m_bXPMode = FALSE;
  77. //}}AFX_DATA_INIT
  78. m_bCloseButton = FALSE;
  79. m_bArrowButtons = TRUE;
  80. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  81. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  82. }
  83. void CTabCtrlDlg::DoDataExchange(CDataExchange* pDX)
  84. {
  85. CXTResizeDialog::DoDataExchange(pDX);
  86. //{{AFX_DATA_MAP(CTabCtrlDlg)
  87. DDX_Control(pDX, IDC_TAB_CTRL, m_tabCtrl);
  88. DDX_Check(pDX, IDC_AUTOCONDENSE, m_bAutoCondense);
  89. DDX_Check(pDX, IDC_VERTICAL, m_bVertical);
  90. DDX_Check(pDX, IDC_MULTILINE, m_bMultiLine);
  91. DDX_Control(pDX, IDC_VERTICAL, m_chkVertical);
  92. DDX_Control(pDX, IDC_MULTILINE, m_chkMultiline);
  93. DDX_Control(pDX, IDC_AUTOCONDENSE, m_chkAutoCondense);
  94. DDX_Check(pDX, IDC_XPMODE, m_bXPMode);
  95. //}}AFX_DATA_MAP
  96. DDX_Check(pDX, IDC_ARROWS, m_bArrowButtons);
  97. DDX_Check(pDX, IDC_CLOSE, m_bCloseButton);
  98. }
  99. BEGIN_MESSAGE_MAP(CTabCtrlDlg, CXTResizeDialog)
  100. //{{AFX_MSG_MAP(CTabCtrlDlg)
  101. ON_WM_SYSCOMMAND()
  102. ON_WM_PAINT()
  103. ON_WM_QUERYDRAGICON()
  104. ON_WM_DESTROY()
  105. ON_BN_CLICKED(IDC_AUTOCONDENSE, OnAutocondense)
  106. ON_BN_CLICKED(IDC_VERTICAL, OnVertical)
  107. ON_BN_CLICKED(IDC_MULTILINE, OnMultiline)
  108. ON_WM_WINDOWPOSCHANGED()
  109. ON_BN_CLICKED(IDC_XPMODE, OnXpmode)
  110. //}}AFX_MSG_MAP
  111. ON_NOTIFY(TCN_SELCHANGE, IDC_TAB_CTRL, OnSelChangeTab)
  112. ON_NOTIFY(TCN_SELCHANGING, IDC_TAB_CTRL, OnSelChangingTab)
  113. ON_LBN_XT_LABELEDITEND(IDC_EDIT_LIST, OnLabelEditEnd)
  114. ON_LBN_XT_LABELEDITCANCEL(IDC_EDIT_LIST, OnLabelEditCancel)
  115. ON_LBN_XT_NEWITEM(IDC_EDIT_LIST, OnNewItem)
  116. ON_LBN_XT_DELETEITEM(IDC_EDIT_LIST, OnDeleteItem)
  117. ON_LBN_XT_MOVEITEMUP(IDC_EDIT_LIST, OnMoveItemUp)
  118. ON_LBN_XT_MOVEITEMDOWN(IDC_EDIT_LIST, OnMoveItemDown)
  119. ON_BN_CLICKED(IDC_ARROWS, OnChkButtons)
  120. ON_BN_CLICKED(IDC_CLOSE, OnChkButtons)
  121. END_MESSAGE_MAP()
  122. /////////////////////////////////////////////////////////////////////////////
  123. // CTabCtrlDlg message handlers
  124. BOOL CTabCtrlDlg::OnInitDialog()
  125. {
  126. CXTResizeDialog::OnInitDialog();
  127. // Add "About..." menu item to system menu.
  128. // IDM_ABOUTBOX must be in the system command range.
  129. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  130. ASSERT(IDM_ABOUTBOX < 0xF000);
  131. CMenu* pSysMenu = GetSystemMenu(FALSE);
  132. if (pSysMenu != NULL)
  133. {
  134. CString strAboutMenu;
  135. strAboutMenu.LoadString(IDS_ABOUTBOX);
  136. if (!strAboutMenu.IsEmpty())
  137. {
  138. pSysMenu->AppendMenu(MF_SEPARATOR);
  139. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  140. }
  141. }
  142. // Set the icon for this dialog.  The framework does this automatically
  143. //  when the application's main window is not a dialog
  144. SetIcon(m_hIcon, TRUE);         // Set big icon
  145. SetIcon(m_hIcon, FALSE);        // Set small icon
  146. VERIFY(InitTabCtrl()  != -1);
  147. VERIFY(InitEditList() != -1);
  148. VERIFY(AddTabViews()  != -1);
  149. // Set control resizing.
  150. SetResize(IDC_TAB_CTRL,     SZ_TOP_LEFT,    SZ_BOTTOM_RIGHT);
  151. SetResize(IDOK,             SZ_TOP_RIGHT,   SZ_TOP_RIGHT);
  152. SetResize(IDCANCEL,         SZ_TOP_RIGHT,   SZ_TOP_RIGHT);
  153. SetResize(IDC_AUTOCONDENSE, SZ_BOTTOM_LEFT, SZ_BOTTOM_LEFT);
  154. SetResize(IDC_VERTICAL,     SZ_BOTTOM_LEFT, SZ_BOTTOM_LEFT);
  155. SetResize(IDC_MULTILINE,    SZ_BOTTOM_LEFT, SZ_BOTTOM_LEFT);
  156. SetResize(IDC_XPMODE,       SZ_BOTTOM_LEFT, SZ_BOTTOM_LEFT);
  157. SetResize(IDC_ARROWS,       SZ_BOTTOM_LEFT, SZ_BOTTOM_LEFT);
  158. SetResize(IDC_CLOSE,        SZ_BOTTOM_LEFT, SZ_BOTTOM_LEFT);
  159. // Load window placement
  160. LoadPlacement(_T("CTabCtrlDlg"));
  161. return TRUE;  // return TRUE  unless you set the focus to a control
  162. }
  163. void CTabCtrlDlg::OnDestroy()
  164. {
  165. // Save window placement
  166. SavePlacement(_T("CTabCtrlDlg"));
  167. CXTResizeDialog::OnDestroy();
  168. }
  169. void CTabCtrlDlg::OnSysCommand(UINT nID, LPARAM lParam)
  170. {
  171. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  172. {
  173. CAboutDlg dlgAbout;
  174. dlgAbout.DoModal();
  175. }
  176. else
  177. {
  178. CXTResizeDialog::OnSysCommand(nID, lParam);
  179. }
  180. }
  181. // If you add a minimize button to your dialog, you will need the code below
  182. //  to draw the icon.  For MFC applications using the document/view model,
  183. //  this is automatically done for you by the framework.
  184. void CTabCtrlDlg::OnPaint()
  185. {
  186. if (IsIconic())
  187. {
  188. CPaintDC dc(this); // device context for painting
  189. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  190. // Center icon in client rectangle
  191. int cxIcon = GetSystemMetrics(SM_CXICON);
  192. int cyIcon = GetSystemMetrics(SM_CYICON);
  193. CRect rect;
  194. GetClientRect(&rect);
  195. int x = (rect.Width() - cxIcon + 1) / 2;
  196. int y = (rect.Height() - cyIcon + 1) / 2;
  197. // Draw the icon
  198. dc.DrawIcon(x, y, m_hIcon);
  199. }
  200. else
  201. {
  202. CXTResizeDialog::OnPaint();
  203. }
  204. }
  205. // The system calls this to obtain the cursor to display while the user drags
  206. //  the minimized window.
  207. HCURSOR CTabCtrlDlg::OnQueryDragIcon()
  208. {
  209. return (HCURSOR) m_hIcon;
  210. }
  211. /////////////////////////////////////////////////////////////////////////////
  212. // Tab control initialization
  213. /////////////////////////////////////////////////////////////////////////////
  214. int CTabCtrlDlg::InitTabCtrl()
  215. {
  216. // you can use this to change the tab orientation
  217. /*
  218. m_tabCtrl.ModifyTabStyle(NULL, TCS_BOTTOM);
  219. */
  220. // Have the tab control send WM_INITIALUPDATE to views.
  221. m_tabCtrl.SendInitialUpdate(TRUE);
  222. // you can use something like the following snippet to remove an image
  223. // from a tab that's already been created...
  224. /*
  225. TCITEM tci;
  226. tci.mask = TCIF_IMAGE;
  227. tci.iImage = -1;
  228. m_tabCtrl.SetItem(1, &tci);
  229. */
  230. m_tabCtrl.SetPadding(CSize(6, 3));
  231. // Create the image list used by the tab control.
  232. if (!m_imageList.Create( IDB_IMAGELIST, 16, 1, RGB( 0x00,0xFF,0x00 )))
  233. {
  234. TRACE0("Failed to create image list.n");
  235. return -1;
  236. }
  237. // Set the tab controls image list.
  238. m_tabCtrl.SetImageList(&m_imageList);
  239. // Set the tab to auto condense (shrink) its tabs when sized.
  240. m_tabCtrl.SetAutoCondense(m_bAutoCondense);
  241. // Clip children of the tab control from paint routines to reduce flicker.
  242. m_tabCtrl.ModifyStyle(0L,
  243. WS_CLIPCHILDREN|WS_CLIPSIBLINGS);
  244. ForceRefreshTabCtrl();
  245. return 0;
  246. }
  247. /////////////////////////////////////////////////////////////////////////////
  248. // Edit list box initialization
  249. /////////////////////////////////////////////////////////////////////////////
  250. int CTabCtrlDlg::InitEditList()
  251. {
  252. if (!m_listBox.CreateEx(WS_EX_CLIENTEDGE, _T("listbox"), NULL,
  253. WS_CHILD|WS_VISIBLE|LBS_NOINTEGRALHEIGHT|WS_VSCROLL,
  254. CRect(0,0,0,0), &m_tabCtrl, IDC_EDIT_LIST))
  255. {
  256. TRACE0("Failed to create listbox control.n");
  257. return -1;
  258. }
  259. m_listBox.SetOwner(this);
  260. // Set the font for the listbox control.
  261. m_listBox.SetFont (&XTAuxData().font);
  262. CString strText;
  263. int iItem;
  264. for (iItem = 1; iItem < 11; ++iItem)
  265. {
  266. strText.Format(_T("ListBox Item %d"), iItem);
  267. m_listBox.AddString(strText);
  268. }
  269. // initialize list box.
  270. m_listBox.Initialize();
  271. return 0;
  272. }
  273. /////////////////////////////////////////////////////////////////////////////
  274. // Tab view's added to tab control
  275. /////////////////////////////////////////////////////////////////////////////
  276. int CTabCtrlDlg::AddTabViews()
  277. {
  278. // add views to the tab control.
  279. if (!m_tabCtrl.AddView(_T("View One - HTML"), RUNTIME_CLASS(CView1), NULL, NULL, 0, 0))
  280. {
  281. TRACE0("Failed to create CView1.n");
  282. return -1;
  283. }
  284. if (!m_tabCtrl.AddView(_T("View Two"), RUNTIME_CLASS(CView2), NULL, NULL, 1, 1))
  285. {
  286. TRACE0("Failed to create CView2.n");
  287. return -1;
  288. }
  289. if (!m_tabCtrl.AddView(_T("View Three"), RUNTIME_CLASS(CView3), NULL, NULL, 2, 2))
  290. {
  291. TRACE0("Failed to create CView3.n");
  292. return -1;
  293. }
  294. if (!m_tabCtrl.AddControl(_T("View Four - Edit List"), &m_listBox, 3, 3))
  295. {
  296. TRACE0("Failed to create edit list.n");
  297. return -1;
  298. }
  299. return 0;
  300. }
  301. /////////////////////////////////////////////////////////////////////////////
  302. // Edit list box message handling
  303. /////////////////////////////////////////////////////////////////////////////
  304. void CTabCtrlDlg::OnLabelEditEnd()
  305. {
  306. TRACE0("CTabCtrlDlg::OnLabelEditEnd() called.n");
  307. }
  308. void CTabCtrlDlg::OnLabelEditCancel()
  309. {
  310. TRACE0("CTabCtrlDlg::OnLabelEditCancel() called.n");
  311. }
  312. void CTabCtrlDlg::OnNewItem()
  313. {
  314. TRACE0("CTabCtrlDlg::OnNewItem() called.n");
  315. }
  316. void CTabCtrlDlg::OnDeleteItem()
  317. {
  318. TRACE0("CTabCtrlDlg::OnDeleteItem() called.n");
  319. }
  320. void CTabCtrlDlg::OnMoveItemUp()
  321. {
  322. TRACE0("CTabCtrlDlg::OnMoveItemUp() called.n");
  323. }
  324. void CTabCtrlDlg::OnMoveItemDown()
  325. {
  326. TRACE0("CTabCtrlDlg::OnMoveItemDown() called.n");
  327. }
  328. /////////////////////////////////////////////////////////////////////////////
  329. // CTabCtrlDlg message handlers
  330. /////////////////////////////////////////////////////////////////////////////
  331. void CTabCtrlDlg::OnAutocondense()
  332. {
  333. UpdateData();
  334. m_tabCtrl.SetAutoCondense(m_bAutoCondense);
  335. ForceRefreshTabCtrl();
  336. }
  337. void CTabCtrlDlg::OnVertical()
  338. {
  339. UpdateData();
  340. ToggleStyle(TCS_VERTICAL, m_bVertical);
  341. GetDlgItem(IDC_MULTILINE)->EnableWindow(!m_bVertical);
  342. OnMultiline();
  343. }
  344. void CTabCtrlDlg::OnMultiline()
  345. {
  346. UpdateData();
  347. ToggleStyle(TCS_MULTILINE, m_bMultiLine | m_bVertical);
  348. }
  349. void CTabCtrlDlg::ToggleStyle(int style, BOOL bEnable)
  350. {
  351. if (bEnable)
  352. {
  353. m_tabCtrl.ModifyTabStyle(0, style);
  354. }
  355. else
  356. {
  357. m_tabCtrl.ModifyTabStyle(style, 0);
  358. }
  359. ForceRefreshTabCtrl();
  360. }
  361. void CTabCtrlDlg::ForceRefreshTabCtrl()
  362. {
  363. ::SetWindowPos(m_tabCtrl.m_hWnd, NULL, 0,0,0,0,
  364. SWP_NOMOVE|SWP_NOSIZE|SWP_FRAMECHANGED);
  365. m_tabCtrl.Invalidate(FALSE);
  366. UpdateData();
  367. BOOL bEnable = !m_bVertical && m_bXPMode && !m_bAutoCondense && !m_bMultiLine;
  368. GetDlgItem(IDC_ARROWS)->EnableWindow(bEnable);
  369. GetDlgItem(IDC_CLOSE)->EnableWindow(bEnable);
  370. GetDlgItem(IDC_MULTILINE)->EnableWindow(!m_bAutoCondense);
  371. }
  372. void CTabCtrlDlg::OnWindowPosChanged(WINDOWPOS FAR* lpwndpos)
  373. {
  374. CXTResizeDialog::OnWindowPosChanged(lpwndpos);
  375. if (::IsWindow(m_chkVertical.m_hWnd))
  376. {
  377. m_chkVertical.Invalidate();
  378. m_chkVertical.UpdateWindow();
  379. }
  380. if (::IsWindow(m_chkMultiline.m_hWnd))
  381. {
  382. m_chkMultiline.Invalidate();
  383. m_chkMultiline.UpdateWindow();
  384. }
  385. if (::IsWindow(m_chkAutoCondense.m_hWnd))
  386. {
  387. m_chkAutoCondense.Invalidate();
  388. m_chkAutoCondense.UpdateWindow();
  389. }
  390. }
  391. void CTabCtrlDlg::OnXpmode()
  392. {
  393. UpdateData();
  394. XTThemeManager()->SetTheme(m_bXPMode? xtThemeOfficeXP: xtThemeDefault);
  395. if ( m_bXPMode )
  396. {
  397. m_listBox.GetEditGroup().SetXButtonStyle(BS_XT_XPFLAT);
  398. m_listBox.GetEditGroup().SetWindowPos(NULL, 0,0,0,0, SWP_NOMOVE|SWP_NOSIZE|SWP_FRAMECHANGED);
  399. }
  400. else
  401. {
  402. m_listBox.GetEditGroup().SetXButtonStyle(BS_XT_FLAT|BS_XT_WINXP_COMPAT);
  403. m_listBox.GetEditGroup().SetWindowPos(NULL, 0,0,0,0, SWP_NOMOVE|SWP_NOSIZE|SWP_FRAMECHANGED);
  404. }
  405. RedrawWindow( NULL, NULL,
  406. RDW_INVALIDATE | RDW_UPDATENOW | RDW_ERASE | RDW_ALLCHILDREN );
  407. ForceRefreshTabCtrl();
  408. }
  409. void CTabCtrlDlg::OnChkButtons()
  410. {
  411. UpdateData();
  412. m_tabCtrl.ShowNavButtons((m_bCloseButton? xtNavBtnClose: 0) |
  413. (m_bArrowButtons? xtNavBtnArrows: 0));
  414. ForceRefreshTabCtrl();
  415. }
  416. void CTabCtrlDlg::OnSelChangeTab(NMHDR* pNMHDR, LRESULT* pResult) 
  417. {
  418. // This is for demonstration purposes, you could 
  419. // also use the m_tabCtrl member.
  420. CXTTabCtrl* pTabCtrl = DYNAMIC_DOWNCAST(CXTTabCtrl, CWnd::FromHandle(pNMHDR->hwndFrom));
  421. ASSERT_VALID(pTabCtrl);
  422. // This is for demonstration purposes, you could 
  423. // also use IDC_TAB_CTRL or m_tabCtrl.GetDlgCtrlID().
  424.     int nID = (int)pNMHDR->idFrom;
  425. TRACE1("TCN_SELCHANGE called for ID %d.n", nID);
  426. *pResult = 0;
  427. }
  428. void CTabCtrlDlg::OnSelChangingTab(NMHDR* pNMHDR, LRESULT* pResult) 
  429. {
  430. // This is for demonstration purposes, you could 
  431. // also use the m_tabCtrl member.
  432. CXTTabCtrl* pTabCtrl = DYNAMIC_DOWNCAST(CXTTabCtrl, CWnd::FromHandle(pNMHDR->hwndFrom));
  433. ASSERT_VALID(pTabCtrl);
  434. // This is for demonstration purposes, you could 
  435. // also use IDC_TAB_CTRL or m_tabCtrl.GetDlgCtrlID().
  436.     int nID = (int)pNMHDR->idFrom;
  437. TRACE1("TCN_SELCHANGING called for ID %d.n", nID);
  438. *pResult = 0;
  439. // Uncomment this line to disable tab selection from changing.
  440. //*pResult = 1;
  441. }
  442. /////////////////////////////////////////////////////////////////////////////
  443. // CTabCtrlEx
  444. CTabCtrlEx::CTabCtrlEx()
  445. {
  446. // TODO: add construction code here.
  447. m_bXPBorder = false;
  448. }
  449. CTabCtrlEx::~CTabCtrlEx()
  450. {
  451. // TODO: add destruction code here.
  452. }
  453. IMPLEMENT_DYNAMIC(CTabCtrlEx, CXTTabCtrl)
  454. BEGIN_MESSAGE_MAP(CTabCtrlEx, CXTTabCtrl)
  455. //{{AFX_MSG_MAP(CTabCtrlEx)
  456. ON_COMMAND(XT_IDC_TAB_CLOSE, OnCloseTab)
  457. //}}AFX_MSG_MAP
  458. END_MESSAGE_MAP()
  459. /////////////////////////////////////////////////////////////////////////////
  460. // CTabCtrlEx message handlers
  461. void CTabCtrlEx::OnCloseTab()
  462. {
  463. if ( GetItemCount( ) == 1 )
  464. {
  465. AfxMessageBox( IDS_CANNOTDEL );
  466. }
  467. else
  468. {
  469. DeleteView( GetCurSel( ) );
  470. }
  471. }