vlccontrol.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlccontrol.h: ActiveX control for VLC
  3.  *****************************************************************************
  4.  * Copyright (C) 2005 the VideoLAN team
  5.  *
  6.  * Authors: Damien Fouilleul <Damien.Fouilleul@laposte.net>
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  21.  *****************************************************************************/
  22. #ifndef _VLCCONTROL_H_
  23. #define _VLCCONTROL_H_
  24. #include "axvlc_idl.h"
  25. class VLCControl : public IVLCControl
  26. {
  27. public:
  28.     VLCControl(VLCPlugin *p_instance) :  _p_instance(p_instance), _p_typeinfo(NULL) {};
  29.     virtual ~VLCControl();
  30.     // IUnknown methods
  31.     STDMETHODIMP QueryInterface(REFIID riid, void **ppv)
  32.     {
  33.         if( NULL == ppv )
  34.           return E_POINTER;
  35.         if( (IID_IUnknown == riid)
  36.          || (IID_IDispatch == riid)
  37.          || (IID_IVLCControl == riid) )
  38.         {
  39.             AddRef();
  40.             *ppv = reinterpret_cast<LPVOID>(this);
  41.             return NOERROR;
  42.         }
  43.         return _p_instance->pUnkOuter->QueryInterface(riid, ppv);
  44.     };
  45.     STDMETHODIMP_(ULONG) AddRef(void) { return _p_instance->pUnkOuter->AddRef(); };
  46.     STDMETHODIMP_(ULONG) Release(void) { return _p_instance->pUnkOuter->Release(); };
  47.     // IDispatch methods
  48.     STDMETHODIMP GetTypeInfoCount(UINT*);
  49.     STDMETHODIMP GetTypeInfo(UINT, LCID, LPTYPEINFO*);
  50.     STDMETHODIMP GetIDsOfNames(REFIID,LPOLESTR*,UINT,LCID,DISPID*);
  51.     STDMETHODIMP Invoke(DISPID,REFIID,LCID,WORD,DISPPARAMS*,VARIANT*,EXCEPINFO*,UINT*);
  52.     // IVLCControl methods
  53.     STDMETHODIMP play(void);
  54.     STDMETHODIMP get_Visible(VARIANT_BOOL *visible);
  55.     STDMETHODIMP put_Visible(VARIANT_BOOL visible);
  56.     STDMETHODIMP pause(void);
  57.     STDMETHODIMP stop(void);
  58.     STDMETHODIMP get_Playing(VARIANT_BOOL *isPlaying);
  59.     STDMETHODIMP get_Position(float *position);
  60.     STDMETHODIMP put_Position(float position);
  61.     STDMETHODIMP get_Time(int *seconds);
  62.     STDMETHODIMP put_Time(int seconds);
  63.     STDMETHODIMP shuttle(int seconds);
  64.     STDMETHODIMP fullscreen();
  65.     STDMETHODIMP get_Length(int *seconds);
  66.     STDMETHODIMP playFaster(void);
  67.     STDMETHODIMP playSlower(void);
  68.     STDMETHODIMP get_Volume(int *volume);
  69.     STDMETHODIMP put_Volume(int volume);
  70.     STDMETHODIMP toggleMute(void);
  71.     STDMETHODIMP setVariable( BSTR name, VARIANT value);
  72.     STDMETHODIMP getVariable( BSTR name, VARIANT *value);
  73.     STDMETHODIMP addTarget( BSTR uri, VARIANT options, enum VLCPlaylistMode mode, int position);
  74.     STDMETHODIMP get_PlaylistIndex(int *index);
  75.     STDMETHODIMP get_PlaylistCount(int *count);
  76.     STDMETHODIMP playlistNext(void);
  77.     STDMETHODIMP playlistPrev(void);
  78.     STDMETHODIMP playlistClear(void);
  79.     STDMETHODIMP get_VersionInfo(BSTR *version);
  80.     STDMETHODIMP get_MRL(BSTR *mrl);
  81.     STDMETHODIMP put_MRL(BSTR mrl);
  82.     STDMETHODIMP get_AutoLoop(VARIANT_BOOL *autoloop);
  83.     STDMETHODIMP put_AutoLoop(VARIANT_BOOL autoloop);
  84.     STDMETHODIMP get_AutoPlay(VARIANT_BOOL *autoplay);
  85.     STDMETHODIMP put_AutoPlay(VARIANT_BOOL autoplay);
  86.     static HRESULT CreateTargetOptions(int codePage, VARIANT *options, char ***cOptions, int *cOptionCount);
  87.     static void FreeTargetOptions(char **cOptions, int cOptionCount);
  88. private:
  89.     HRESULT      getTypeInfo();
  90.     VLCPlugin *_p_instance;
  91.     ITypeInfo *_p_typeinfo;
  92. };
  93. #endif