ComPropertyPage.cpp
上传用户:tangyu_668
上传日期:2014-02-27
资源大小:678k
文件大小:3k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) 2003-2006 Gabest
  3.  * http://www.gabest.org
  4.  *
  5.  *  This Program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2, or (at your option)
  8.  *  any later version.
  9.  *   
  10.  *  This Program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13.  *  GNU General Public License for more details.
  14.  *   
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with GNU Make; see the file COPYING.  If not, write to
  17.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  18.  *  http://www.gnu.org/copyleft/gpl.html
  19.  *
  20.  */
  21. // ComPropertyPage.cpp : implementation file
  22. //
  23. #include "stdafx.h"
  24. #include "mplayerc.h"
  25. #include "ComPropertyPage.h"
  26. #include "ComPropertySheet.h"
  27. // CComPropertyPage dialog
  28. IMPLEMENT_DYNAMIC(CComPropertyPage, CPropertyPage)
  29. CComPropertyPage::CComPropertyPage(IPropertyPage* pPage)
  30. : CPropertyPage(CComPropertyPage::IDD), m_pPage(pPage)
  31. {
  32. PROPPAGEINFO ppi;
  33. m_pPage->GetPageInfo(&ppi);
  34. m_pPSP->pszTitle = (m_strCaption = ppi.pszTitle);
  35. m_psp.dwFlags |= PSP_USETITLE;
  36. }
  37. CComPropertyPage::~CComPropertyPage()
  38. {
  39. }
  40. void CComPropertyPage::DoDataExchange(CDataExchange* pDX)
  41. {
  42. CPropertyPage::DoDataExchange(pDX);
  43. }
  44. BOOL CComPropertyPage::OnInitDialog()
  45. {
  46. CPropertyPage::OnInitDialog();
  47. CRect r;
  48. PROPPAGEINFO ppi;
  49. m_pPage->GetPageInfo(&ppi);
  50. r = CRect(CPoint(0,0), ppi.size);
  51. m_pPage->Activate(m_hWnd, r, FALSE);
  52. m_pPage->Show(SW_SHOW);
  53. return TRUE;  // return TRUE unless you set the focus to a control
  54. // EXCEPTION: OCX Property Pages should return FALSE
  55. }
  56. void CComPropertyPage::OnDestroy()
  57. {
  58. CPropertyPage::OnDestroy();
  59. m_pPage->Deactivate();
  60. }
  61. BOOL CComPropertyPage::OnSetActive()
  62. {
  63. SetModified(S_OK == m_pPage->IsPageDirty());
  64. CWnd* pParent = GetParent();
  65. if(pParent->IsKindOf(RUNTIME_CLASS(CComPropertySheet)))
  66. {
  67. CComPropertySheet* pSheet = (CComPropertySheet*)pParent;
  68. pSheet->OnActivated(this);
  69. }
  70. return CPropertyPage::OnSetActive();
  71. }
  72. BOOL CComPropertyPage::OnKillActive()
  73. {
  74. SetModified(FALSE);
  75. return CPropertyPage::OnKillActive();
  76. }
  77. BEGIN_MESSAGE_MAP(CComPropertyPage, CPropertyPage)
  78. ON_WM_DESTROY()
  79. END_MESSAGE_MAP()
  80. // CComPropertyPage message handlers
  81. void CComPropertyPage::OnOK()
  82. {
  83. if(S_OK == m_pPage->IsPageDirty()) m_pPage->Apply();
  84. SetModified(FALSE);
  85. CPropertyPage::OnOK();
  86. }