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

多媒体编程

开发平台:

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. #pragma once
  22. #include "IDirectVobSub.h"
  23. #include "........includeIFilterVersion.h"
  24. class CDirectVobSub : public IDirectVobSub2, public IFilterVersion
  25. {
  26. protected:
  27. CDirectVobSub();
  28. virtual ~CDirectVobSub();
  29. protected:
  30.     CCritSec m_propsLock;
  31. CString m_FileName;
  32. int m_iSelectedLanguage;
  33. bool m_fHideSubtitles;
  34. bool m_fDoPreBuffering;
  35. bool m_fOverridePlacement;
  36. int m_PlacementXperc, m_PlacementYperc;
  37. bool m_fBufferVobSub, m_fOnlyShowForcedVobSubs, m_fPolygonize;
  38. STSStyle m_defStyle;
  39. bool m_fAdvancedRenderer;
  40. bool m_fFlipPicture, m_fFlipSubtitles;
  41. bool m_fOSD;
  42. int m_nReloaderDisableCount;
  43. int m_SubtitleDelay, m_SubtitleSpeedMul, m_SubtitleSpeedDiv;
  44. bool m_fMediaFPSEnabled;
  45. double m_MediaFPS;
  46. bool m_fSaveFullPath;
  47. NORMALIZEDRECT m_ZoomRect;
  48. CComPtr<ISubClock> m_pSubClock;
  49. bool m_fForced;
  50. public:
  51. // IDirectVobSub
  52.     STDMETHODIMP get_FileName(WCHAR* fn);
  53.     STDMETHODIMP put_FileName(WCHAR* fn);
  54. STDMETHODIMP get_LanguageCount(int* nLangs);
  55. STDMETHODIMP get_LanguageName(int iLanguage, WCHAR** ppName);
  56. STDMETHODIMP get_SelectedLanguage(int* iSelected);
  57. STDMETHODIMP put_SelectedLanguage(int iSelected);
  58. STDMETHODIMP get_HideSubtitles(bool* fHideSubtitles);
  59.     STDMETHODIMP put_HideSubtitles(bool fHideSubtitles);
  60.     STDMETHODIMP get_PreBuffering(bool* fDoPreBuffering);
  61.     STDMETHODIMP put_PreBuffering(bool fDoPreBuffering);
  62.     STDMETHODIMP get_Placement(bool* fOverridePlacement, int* xperc, int* yperc);
  63.     STDMETHODIMP put_Placement(bool fOverridePlacement, int xperc, int yperc);
  64.     STDMETHODIMP get_VobSubSettings(bool* fBuffer, bool* fOnlyShowForcedSubs, bool* fPolygonize);
  65.     STDMETHODIMP put_VobSubSettings(bool fBuffer, bool fOnlyShowForcedSubs, bool fPolygonize);
  66.     STDMETHODIMP get_TextSettings(void* lf, int lflen, COLORREF* color, bool* fShadow, bool* fOutline, bool* fAdvancedRenderer);
  67.     STDMETHODIMP put_TextSettings(void* lf, int lflen, COLORREF color, bool fShadow, bool fOutline, bool fAdvancedRenderer);
  68.     STDMETHODIMP get_Flip(bool* fPicture, bool* fSubtitles);
  69.     STDMETHODIMP put_Flip(bool fPicture, bool fSubtitles);
  70.     STDMETHODIMP get_OSD(bool* fShowOSD);
  71.     STDMETHODIMP put_OSD(bool fShowOSD);
  72. STDMETHODIMP get_SaveFullPath(bool* fSaveFullPath);
  73. STDMETHODIMP put_SaveFullPath(bool fSaveFullPath);
  74.     STDMETHODIMP get_SubtitleTiming(int* delay, int* speedmul, int* speeddiv);
  75.     STDMETHODIMP put_SubtitleTiming(int delay, int speedmul, int speeddiv);
  76.     STDMETHODIMP get_MediaFPS(bool* fEnabled, double* fps);
  77.     STDMETHODIMP put_MediaFPS(bool fEnabled, double fps);
  78. STDMETHODIMP get_ZoomRect(NORMALIZEDRECT* rect);
  79.     STDMETHODIMP put_ZoomRect(NORMALIZEDRECT* rect);
  80. STDMETHODIMP get_ColorFormat(int* iPosition) {return E_NOTIMPL;}
  81.     STDMETHODIMP put_ColorFormat(int iPosition) {return E_NOTIMPL;}
  82. STDMETHODIMP UpdateRegistry();
  83. STDMETHODIMP HasConfigDialog(int iSelected);
  84. STDMETHODIMP ShowConfigDialog(int iSelected, HWND hWndParent);
  85. // settings for the rest are stored in the registry
  86. STDMETHODIMP IsSubtitleReloaderLocked(bool* fLocked);
  87.     STDMETHODIMP LockSubtitleReloader(bool fLock);
  88. STDMETHODIMP get_SubtitleReloader(bool* fDisabled);
  89.     STDMETHODIMP put_SubtitleReloader(bool fDisable);
  90. // the followings need a partial or full reloading of the filter
  91. STDMETHODIMP get_ExtendPicture(int* horizontal, int* vertical, int* resx2, int* resx2minw, int* resx2minh);
  92. STDMETHODIMP put_ExtendPicture(int horizontal, int vertical, int resx2, int resx2minw, int resx2minh);
  93. STDMETHODIMP get_LoadSettings(int* level, bool* fExternalLoad, bool* fWebLoad, bool* fEmbeddedLoad);
  94. STDMETHODIMP put_LoadSettings(int level, bool fExternalLoad, bool fWebLoad, bool fEmbeddedLoad);
  95. // IDirectVobSub2
  96. STDMETHODIMP AdviseSubClock(ISubClock* pSubClock);
  97. STDMETHODIMP_(bool) get_Forced();
  98. STDMETHODIMP put_Forced(bool fForced);
  99.     STDMETHODIMP get_TextSettings(STSStyle* pDefStyle);
  100.     STDMETHODIMP put_TextSettings(STSStyle* pDefStyle);
  101. // IFilterVersion
  102. STDMETHODIMP_(DWORD) GetFilterVersion();
  103. };