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

对话框与窗口

开发平台:

Visual C++

  1. // ShortcutPaneFolders.cpp: implementation of the CShortcutPaneFolders class.
  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 "shortcutbar.h"
  22. #include "ShortcutPaneFolders.h"
  23. #ifdef _DEBUG
  24. #undef THIS_FILE
  25. static char THIS_FILE[]=__FILE__;
  26. #define new DEBUG_NEW
  27. #endif
  28. static UINT treeIcons[] =
  29. {
  30. IDI_INBOX           ,
  31. IDI_SEARCH          ,
  32. IDI_SENT_ITEMS      ,
  33. IDI_OUTBOX          ,
  34. IDI_OUTLOOK_TODAY   ,
  35. IDI_DELETED_ITEMS   ,
  36. IDI_DRAFTS          ,
  37. IDI_ARCHIVE         ,
  38. IDI_CALENDAR        ,
  39. IDI_CONTACTS
  40. };
  41. //////////////////////////////////////////////////////////////////////
  42. // Construction/Destruction
  43. //////////////////////////////////////////////////////////////////////
  44. CShortcutPaneFolders::CShortcutPaneFolders()
  45. {
  46. m_ilTreeIcons.Create(16, 16, ILC_MASK|ILC_COLOR32, 1, 1);
  47. for (int i  = 0; i < _countof(treeIcons); i++)
  48. {
  49. HICON hIcon = AfxGetApp()->LoadIcon(treeIcons[i]);
  50. ASSERT(hIcon);
  51. m_ilTreeIcons.Add (hIcon);
  52. }
  53. }
  54. CShortcutPaneFolders::~CShortcutPaneFolders()
  55. {
  56. }
  57. BOOL CShortcutPaneFolders::Create(LPCTSTR lpszCaption, CXTPShortcutBar* pParent)
  58. {
  59. if (!CXTPShortcutBarPane::Create(lpszCaption, pParent))
  60. return FALSE;
  61. VERIFY(m_wndTreeFolders.Create(WS_VISIBLE|TVS_HASBUTTONS|TVS_LINESATROOT, CXTPEmptyRect(), this, 0));
  62. m_wndTreeFolders.SetImageList(&m_ilTreeIcons, TVSIL_NORMAL);
  63. HTREEITEM hItem = m_wndTreeFolders.InsertItem (_T("Personal"), 4, 4);
  64. m_wndTreeFolders.InsertItem (_T("Deleted Items"), 5, 5, hItem);
  65. m_wndTreeFolders.InsertItem (_T("Inbox"), 0, 0, hItem);
  66. m_wndTreeFolders.InsertItem (_T("Sent Items"), 2, 2, hItem);
  67. m_wndTreeFolders.InsertItem (_T("Outbox"), 3, 3, hItem);
  68. m_wndTreeFolders.InsertItem (_T("Calendar"), 8, 8, hItem);
  69. m_wndTreeFolders.InsertItem (_T("Unread Mail"), 1, 1, hItem);
  70. m_wndTreeFolders.InsertItem (_T("Drafts"), 6, 6, hItem);
  71. m_wndTreeFolders.InsertItem(_T("Contacts"), 9, 9, hItem);
  72. HTREEITEM hItemSearch = m_wndTreeFolders.InsertItem (_T("Search Folders"), 1, 1, hItem);
  73. m_wndTreeFolders.InsertItem (_T("For Follow Up"), 1, 1, hItemSearch);
  74. m_wndTreeFolders.InsertItem (_T("Large Mail"), 1, 1, hItemSearch);
  75. m_wndTreeFolders.InsertItem (_T("Unread Mail"), 1, 1, hItemSearch);
  76. m_wndTreeFolders.Expand(hItem, TVE_EXPAND);
  77. hItem = m_wndTreeFolders.InsertItem (_T("Archive Folders"), 7, 7);
  78. m_wndTreeFolders.InsertItem (_T("Deleted Items"), 5, 5, hItem);
  79. m_wndTreeFolders.InsertItem (_T("Search Folders"), 1, 1, hItem);
  80. AddItem(_T("All Folders"), &m_wndTreeFolders, 115);
  81. return TRUE;
  82. }