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

多媒体编程

开发平台:

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. // PPageTweaks.cpp : implementation file
  22. //
  23. #include "stdafx.h"
  24. #include "mplayerc.h"
  25. #include "PPageTweaks.h"
  26. // CPPageTweaks dialog
  27. IMPLEMENT_DYNAMIC(CPPageTweaks, CPPageBase)
  28. CPPageTweaks::CPPageTweaks()
  29. : CPPageBase(CPPageTweaks::IDD, CPPageTweaks::IDD)
  30. , m_fDisabeXPToolbars(FALSE)
  31. , m_fUseWMASFReader(FALSE)
  32. , m_nJumpDistS(0)
  33. , m_nJumpDistM(0)
  34. , m_nJumpDistL(0)
  35. , m_fFreeWindowResizing(TRUE)
  36. , m_fNotifyMSN(TRUE)
  37. , m_fNotifyGTSdll(FALSE)
  38. , m_GTSdllLink(_T("https://sourceforge.net/project/showfiles.php?group_id=82303&package_id=169521&release_id=371114"))
  39. {
  40. m_fWMASFReader = SUCCEEDED(CComPtr<IBaseFilter>().CoCreateInstance(
  41. GUIDFromCString(_T("{187463A0-5BB7-11D3-ACBE-0080C75E246E}")))); // WM ASF Reader
  42. }
  43. CPPageTweaks::~CPPageTweaks()
  44. {
  45. }
  46. void CPPageTweaks::DoDataExchange(CDataExchange* pDX)
  47. {
  48. __super::DoDataExchange(pDX);
  49. DDX_Check(pDX, IDC_CHECK3, m_fDisabeXPToolbars);
  50. DDX_Control(pDX, IDC_CHECK3, m_fDisabeXPToolbarsCtrl);
  51. DDX_Check(pDX, IDC_CHECK2, m_fUseWMASFReader);
  52. DDX_Control(pDX, IDC_CHECK2, m_fUseWMASFReaderCtrl);
  53. DDX_Text(pDX, IDC_EDIT1, m_nJumpDistS);
  54. DDX_Text(pDX, IDC_EDIT2, m_nJumpDistM);
  55. DDX_Text(pDX, IDC_EDIT3, m_nJumpDistL);
  56. DDX_Check(pDX, IDC_CHECK1, m_fFreeWindowResizing);
  57. DDX_Check(pDX, IDC_CHECK4, m_fNotifyMSN);
  58. DDX_Check(pDX, IDC_CHECK5, m_fNotifyGTSdll);
  59. DDX_Control(pDX, IDC_STATICLINKGTS, m_GTSdllLink);
  60. }
  61. BOOL CPPageTweaks::OnInitDialog()
  62. {
  63. __super::OnInitDialog();
  64. AppSettings& s = AfxGetAppSettings();
  65. m_fDisabeXPToolbars = s.fDisabeXPToolbars;
  66. m_fUseWMASFReader = s.fUseWMASFReader;
  67. m_nJumpDistS = s.nJumpDistS;
  68. m_nJumpDistM = s.nJumpDistM;
  69. m_nJumpDistL = s.nJumpDistL;
  70. m_fFreeWindowResizing = s.fFreeWindowResizing;
  71. m_fNotifyMSN = s.fNotifyMSN;
  72. m_fNotifyGTSdll = s.fNotifyGTSdll;
  73. UpdateData(FALSE);
  74. return TRUE;  // return TRUE unless you set the focus to a control
  75. // EXCEPTION: OCX Property Pages should return FALSE
  76. }
  77. BOOL CPPageTweaks::OnApply()
  78. {
  79. UpdateData();
  80. AppSettings& s = AfxGetAppSettings();
  81. s.fDisabeXPToolbars = !!m_fDisabeXPToolbars;
  82. s.fUseWMASFReader = !!m_fUseWMASFReader;
  83. s.nJumpDistS = m_nJumpDistS;
  84. s.nJumpDistM = m_nJumpDistM;
  85. s.nJumpDistL = m_nJumpDistL;
  86. s.fFreeWindowResizing = !!m_fFreeWindowResizing;
  87. s.fNotifyMSN = !!m_fNotifyMSN;
  88. s.fNotifyGTSdll = !!m_fNotifyGTSdll;
  89. return __super::OnApply();
  90. }
  91. BEGIN_MESSAGE_MAP(CPPageTweaks, CPPageBase)
  92. ON_UPDATE_COMMAND_UI(IDC_CHECK3, OnUpdateCheck3)
  93. ON_UPDATE_COMMAND_UI(IDC_CHECK2, OnUpdateCheck2)
  94. ON_BN_CLICKED(IDC_BUTTON1, OnBnClickedButton1)
  95. END_MESSAGE_MAP()
  96. // CPPageTweaks message handlers
  97. void CPPageTweaks::OnUpdateCheck3(CCmdUI* pCmdUI)
  98. {
  99. if(!AfxGetAppSettings().fXpOrBetter)
  100. {
  101. pCmdUI->Enable(FALSE);
  102. pCmdUI->SetCheck(TRUE);
  103. }
  104. }
  105. void CPPageTweaks::OnUpdateCheck2(CCmdUI* pCmdUI)
  106. {
  107. pCmdUI->Enable(m_fWMASFReader);
  108. }
  109. void CPPageTweaks::OnBnClickedButton1()
  110. {
  111. m_nJumpDistS = 1000;
  112. m_nJumpDistM = 5000;
  113. m_nJumpDistL = 20000;
  114. UpdateData(FALSE);
  115. }