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

对话框与窗口

开发平台:

Visual C++

  1. // NotificationsView.cpp : implementation of the CNotificationsView 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 "Notifications.h"
  22. #include "NotificationsDoc.h"
  23. #include "NotificationsView.h"
  24. #ifdef _DEBUG
  25. #define new DEBUG_NEW
  26. #undef THIS_FILE
  27. static char THIS_FILE[] = __FILE__;
  28. #endif
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CNotificationsView
  31. IMPLEMENT_DYNCREATE(CNotificationsView, CView)
  32. BEGIN_MESSAGE_MAP(CNotificationsView, CView)
  33. //{{AFX_MSG_MAP(CNotificationsView)
  34. ON_COMMAND(ID_VIEW_FULLSCREEN, OnViewFullscreen)
  35. ON_UPDATE_COMMAND_UI(ID_VIEW_FULLSCREEN, OnUpdateViewFullscreen)
  36. //}}AFX_MSG_MAP
  37. // Standard printing commands
  38. ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
  39. ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
  40. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
  41. END_MESSAGE_MAP()
  42. /////////////////////////////////////////////////////////////////////////////
  43. // CNotificationsView construction/destruction
  44. CNotificationsView::CNotificationsView()
  45. {
  46. // TODO: add construction code here
  47. }
  48. CNotificationsView::~CNotificationsView()
  49. {
  50. }
  51. BOOL CNotificationsView::PreCreateWindow(CREATESTRUCT& cs)
  52. {
  53. // TODO: Modify the Window class or styles here by modifying
  54. //  the CREATESTRUCT cs
  55. return CView::PreCreateWindow(cs);
  56. }
  57. /////////////////////////////////////////////////////////////////////////////
  58. // CNotificationsView drawing
  59. void CNotificationsView::OnDraw(CDC* /*pDC*/)
  60. {
  61. CNotificationsDoc* pDoc = GetDocument();
  62. ASSERT_VALID(pDoc);
  63. // TODO: add draw code for native data here
  64. }
  65. /////////////////////////////////////////////////////////////////////////////
  66. // CNotificationsView printing
  67. BOOL CNotificationsView::OnPreparePrinting(CPrintInfo* pInfo)
  68. {
  69. // default preparation
  70. return DoPreparePrinting(pInfo);
  71. }
  72. void CNotificationsView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  73. {
  74. // TODO: add extra initialization before printing
  75. }
  76. void CNotificationsView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
  77. {
  78. // TODO: add cleanup after printing
  79. }
  80. /////////////////////////////////////////////////////////////////////////////
  81. // CNotificationsView diagnostics
  82. #ifdef _DEBUG
  83. void CNotificationsView::AssertValid() const
  84. {
  85. CView::AssertValid();
  86. }
  87. void CNotificationsView::Dump(CDumpContext& dc) const
  88. {
  89. CView::Dump(dc);
  90. }
  91. CNotificationsDoc* CNotificationsView::GetDocument() // non-debug version is inline
  92. {
  93. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CNotificationsDoc)));
  94. return (CNotificationsDoc*)m_pDocument;
  95. }
  96. #endif //_DEBUG
  97. /////////////////////////////////////////////////////////////////////////////
  98. // CNotificationsView message handlers
  99. void CNotificationsView::OnViewFullscreen()
  100. {
  101. CWnd* pWnd = GetParent();
  102. if ((pWnd->GetStyle() & WS_MAXIMIZE) != 0)
  103. pWnd->ShowWindow(SW_NORMAL);
  104. else pWnd->ShowWindow(SW_MAXIMIZE);
  105. }
  106. void CNotificationsView::OnUpdateViewFullscreen(CCmdUI* pCmdUI)
  107. {
  108. CWnd* pWnd = GetParent();
  109. LPCTSTR lpszCaption = (pWnd->GetStyle() & WS_MAXIMIZE) != 0? _T("Normal"): _T("Maximized");
  110. pCmdUI->SetText(lpszCaption);
  111. }