PPageRealMediaQuickTime.cpp
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:3k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) 2003-2005 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. // PPageRealMediaQuickTime.cpp : implementation file
  22. //
  23. #include "stdafx.h"
  24. #include "mplayerc.h"
  25. #include "PPageRealMediaQuickTime.h"
  26. // CPPageRealMediaQuickTime dialog
  27. IMPLEMENT_DYNAMIC(CPPageRealMediaQuickTime, CPPageBase)
  28. CPPageRealMediaQuickTime::CPPageRealMediaQuickTime()
  29. : CPPageBase(CPPageRealMediaQuickTime::IDD, CPPageRealMediaQuickTime::IDD)
  30. , m_fIntRealMedia(FALSE)
  31. , m_fRealMediaRenderless(FALSE)
  32. , m_iQuickTimeRenderer(0)
  33. {
  34. }
  35. CPPageRealMediaQuickTime::~CPPageRealMediaQuickTime()
  36. {
  37. }
  38. void CPPageRealMediaQuickTime::DoDataExchange(CDataExchange* pDX)
  39. {
  40. __super::DoDataExchange(pDX);
  41. DDX_Check(pDX, IDC_CHECK2, m_fIntRealMedia);
  42. DDX_Check(pDX, IDC_CHECK1, m_fRealMediaRenderless);
  43. DDX_Radio(pDX, IDC_RADIO1, m_iQuickTimeRenderer);
  44. DDX_Control(pDX, IDC_EDIT2, m_RealMediaQuickTimeFPS);
  45. }
  46. BEGIN_MESSAGE_MAP(CPPageRealMediaQuickTime, CPPageBase)
  47. ON_BN_CLICKED(IDC_BUTTON1, OnBnClickedButton1)
  48. END_MESSAGE_MAP()
  49. // CPPageRealMediaQuickTime message handlers
  50. BOOL CPPageRealMediaQuickTime::OnInitDialog()
  51. {
  52. __super::OnInitDialog();
  53. AppSettings& s = AfxGetAppSettings();
  54. m_fIntRealMedia = s.fIntRealMedia;
  55. // m_fRealMediaRenderless = s.fRealMediaRenderless;
  56. // m_iQuickTimeRenderer = s.iQuickTimeRenderer;
  57. m_RealMediaQuickTimeFPS = s.RealMediaQuickTimeFPS;
  58. UpdateData(FALSE);
  59. return TRUE;  // return TRUE unless you set the focus to a control
  60. // EXCEPTION: OCX Property Pages should return FALSE
  61. }
  62. BOOL CPPageRealMediaQuickTime::OnApply()
  63. {
  64. UpdateData();
  65. AppSettings& s = AfxGetAppSettings();
  66. s.fIntRealMedia = !!m_fIntRealMedia;
  67. // s.fRealMediaRenderless = !!m_fRealMediaRenderless;
  68. // s.iQuickTimeRenderer = m_iQuickTimeRenderer;
  69. float f;
  70. if(m_RealMediaQuickTimeFPS.GetFloat(f)) s.RealMediaQuickTimeFPS = f;
  71. m_RealMediaQuickTimeFPS = s.RealMediaQuickTimeFPS;
  72. UpdateData(FALSE);
  73. return __super::OnApply();
  74. }
  75. void CPPageRealMediaQuickTime::OnBnClickedButton1()
  76. {
  77. UpdateData(FALSE);
  78. }