PPageSubDB.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. // PPageSubDB.cpp : implementation file
  22. //
  23. #include "stdafx.h"
  24. #include "mplayerc.h"
  25. #include "MainFrm.h"
  26. #include "PPageSubDB.h"
  27. #include "ISDb.h"
  28. // CPPageSubDB dialog
  29. IMPLEMENT_DYNAMIC(CPPageSubDB, CPPageBase)
  30. CPPageSubDB::CPPageSubDB()
  31. : CPPageBase(CPPageSubDB::IDD, CPPageSubDB::IDD)
  32. , m_ISDb(_T(""))
  33. {
  34. }
  35. CPPageSubDB::~CPPageSubDB()
  36. {
  37. }
  38. void CPPageSubDB::DoDataExchange(CDataExchange* pDX)
  39. {
  40. __super::DoDataExchange(pDX);
  41. DDX_Control(pDX, IDC_COMBO1, m_ISDbCombo);
  42. DDX_CBString(pDX, IDC_COMBO1, m_ISDb);
  43. }
  44. BEGIN_MESSAGE_MAP(CPPageSubDB, CPPageBase)
  45. ON_BN_CLICKED(IDC_BUTTON1, OnBnClickedButton1)
  46. ON_UPDATE_COMMAND_UI(IDC_BUTTON1, OnUpdateButton1)
  47. END_MESSAGE_MAP()
  48. // CPPageSubDB message handlers
  49. BOOL CPPageSubDB::OnInitDialog()
  50. {
  51. __super::OnInitDialog();
  52. AppSettings& s = AfxGetAppSettings();
  53. m_ISDb = s.ISDb;
  54. m_ISDbCombo.AddString(m_ISDb);
  55. if(m_ISDb.CompareNoCase(_T("sub.sytes.net")))
  56. m_ISDbCombo.AddString(_T("sub.sytes.net"));
  57. UpdateData(FALSE);
  58. return TRUE;  // return TRUE unless you set the focus to a control
  59. // EXCEPTION: OCX Property Pages should return FALSE
  60. }
  61. BOOL CPPageSubDB::OnApply()
  62. {
  63. UpdateData();
  64. AppSettings& s = AfxGetAppSettings();
  65. s.ISDb = m_ISDb;
  66. s.ISDb.TrimRight('/');
  67. return __super::OnApply();
  68. }
  69. void CPPageSubDB::OnBnClickedButton1()
  70. {
  71. CString ISDb, ver, msg, str;
  72. m_ISDbCombo.GetWindowText(ISDb);
  73. ISDb.TrimRight('/');
  74. ver.Format(_T("ISDb v%d"), ISDb_PROTOCOL_VERSION);
  75. CWebTextFile wtf;
  76. if(wtf.Open(_T("http://") + ISDb + _T("/test.php")) && wtf.ReadString(str) && str == ver)
  77. {
  78. msg = _T("The URL appears to be correct!");
  79. }
  80. else if(str.Find(_T("ISDb v")) == 0)
  81. {
  82. msg = _T("Protocol version mismatch, please upgrade your player or choose a different address!");
  83. }
  84. else
  85. {
  86. msg = _T("Bad URL, could not locate subtitle database there!");
  87. }
  88. AfxMessageBox(msg, MB_OK);
  89. }
  90. void CPPageSubDB::OnUpdateButton1(CCmdUI* pCmdUI)
  91. {
  92. pCmdUI->Enable(m_ISDbCombo.GetWindowTextLength() > 0);
  93. }