SelectMediaType.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. // SelectMediaType.cpp : implementation file
  22. //
  23. #include "stdafx.h"
  24. #include "mplayerc.h"
  25. #include "SelectMediaType.h"
  26. #include "....DSUtilDSUtil.h"
  27. // CSelectMediaType dialog
  28. IMPLEMENT_DYNAMIC(CSelectMediaType, CCmdUIDialog)
  29. CSelectMediaType::CSelectMediaType(CAtlArray<GUID>& guids, GUID guid, CWnd* pParent /*=NULL*/)
  30. : CCmdUIDialog(CSelectMediaType::IDD, pParent)
  31. , m_guids(guids), m_guid(guid)
  32. {
  33. m_guidstr = CStringFromGUID(guid);
  34. }
  35. CSelectMediaType::~CSelectMediaType()
  36. {
  37. }
  38. void CSelectMediaType::DoDataExchange(CDataExchange* pDX)
  39. {
  40. __super::DoDataExchange(pDX);
  41. DDX_CBString(pDX, IDC_COMBO1, m_guidstr);
  42. DDX_Control(pDX, IDC_COMBO1, m_guidsctrl);
  43. }
  44. BEGIN_MESSAGE_MAP(CSelectMediaType, CCmdUIDialog)
  45. ON_CBN_EDITCHANGE(IDC_COMBO1, OnCbnEditchangeCombo1)
  46. ON_UPDATE_COMMAND_UI(IDOK, OnUpdateOK)
  47. END_MESSAGE_MAP()
  48. // CSelectMediaType message handlers
  49. BOOL CSelectMediaType::OnInitDialog()
  50. {
  51. CCmdUIDialog::OnInitDialog();
  52. for(int i = 0; i < m_guids.GetCount(); i++)
  53. {
  54. m_guidsctrl.AddString(GetMediaTypeName(m_guids[i]));
  55. }
  56. return TRUE;  // return TRUE unless you set the focus to a control
  57. // EXCEPTION: OCX Property Pages should return FALSE
  58. }
  59. void CSelectMediaType::OnCbnEditchangeCombo1()
  60. {
  61. UpdateData();
  62. int i = m_guidsctrl.FindStringExact(0, m_guidstr);
  63. if(i >= 0)
  64. {
  65. DWORD sel = m_guidsctrl.GetEditSel();
  66. m_guidsctrl.SetCurSel(i);
  67. m_guidsctrl.SetEditSel(sel,sel);
  68. }
  69. }
  70. void CSelectMediaType::OnUpdateOK(CCmdUI* pCmdUI)
  71. {
  72. UpdateData();
  73. pCmdUI->Enable(!m_guidstr.IsEmpty() && (m_guidsctrl.GetCurSel() >= 0 || GUIDFromCString(m_guidstr) != GUID_NULL));
  74. }
  75. void CSelectMediaType::OnOK()
  76. {
  77. UpdateData();
  78. int i = m_guidsctrl.GetCurSel();
  79. m_guid = i >= 0 ? m_guids[i] : GUIDFromCString(m_guidstr);
  80. CCmdUIDialog::OnOK();
  81. }