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

对话框与窗口

开发平台:

Visual C++

  1. // ShortcutPaneCalendar.cpp: implementation of the CShortcutPaneCalendar 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 "resource.h"
  22. #include "ShortcutPaneCalendar.h"
  23. //////////////////////////////////////////////////////////////////////
  24. // Construction/Destruction
  25. //////////////////////////////////////////////////////////////////////
  26. CShortcutPaneCalendar::CShortcutPaneCalendar()
  27. {
  28. m_ilTreeIcons.Create(16, 16, ILC_MASK|ILC_COLOR32, 1, 1);
  29. HICON hIcon = AfxGetApp()->LoadIcon(IDI_CALENDAR);
  30. ASSERT(hIcon);
  31. m_ilTreeIcons.Add (hIcon);
  32. }
  33. CShortcutPaneCalendar::~CShortcutPaneCalendar()
  34. {
  35. }
  36. BOOL CShortcutPaneCalendar::Create(LPCTSTR lpszCaption, CXTPShortcutBar* pParent)
  37. {
  38. if (!CXTPShortcutBarPane::Create(lpszCaption, pParent))
  39. return FALSE;
  40. m_wndCalendar.Create(WS_CHILD|WS_VISIBLE|MCS_NOTODAY , CPoint(0, 0), this, 0);
  41. AddItem(_T("Calendar"), &m_wndCalendar, 300);
  42. VERIFY(m_wndTreeCalendar.Create(WS_VISIBLE|TVS_HASBUTTONS|TVS_LINESATROOT, CXTPEmptyRect(), this, 0));
  43. m_wndTreeCalendar.SetImageList(&m_ilTreeIcons, TVSIL_NORMAL);
  44. m_wndTreeCalendar.InsertItem (_T("Calendar"), 0, 0);
  45. AddItem(_T("My Calendars"), &m_wndTreeCalendar, 115);
  46. return TRUE;
  47. }
  48. BEGIN_MESSAGE_MAP(CShortcutPaneCalendar, CXTPShortcutBarPane)
  49. //{{AFX_MSG_MAP(CShortcutPaneCalendar)
  50. ON_WM_SIZE()
  51. //}}AFX_MSG_MAP
  52. END_MESSAGE_MAP()
  53. void CShortcutPaneCalendar::OnSize(UINT nType, int cx, int cy)
  54. {
  55. CXTPShortcutBarPaneItem* pItem = GetItem(0);
  56. if (pItem)
  57. {
  58. pItem->SetHeight(max(0, cy - 150));
  59. }
  60. CXTPShortcutBarPane::OnSize(nType, cx, cy);
  61. }