vlcproc.hpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:6k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * vlcproc.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: vlcproc.hpp 8966 2004-10-10 10:08:44Z ipkiss $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teuli鑢e <ipkiss@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #ifndef VLCPROC_HPP
  25. #define VLCPROC_HPP
  26. #include "../vars/playlist.hpp"
  27. #include "../vars/time.hpp"
  28. #include "../vars/volume.hpp"
  29. #include "../vars/stream.hpp"
  30. class OSTimer;
  31. class VarBool;
  32. /// Singleton object handling VLC internal state and playlist
  33. class VlcProc: public SkinObject
  34. {
  35.     public:
  36.         /// Get the instance of VlcProc
  37.         /// Returns NULL if the initialization of the object failed
  38.         static VlcProc *instance( intf_thread_t *pIntf );
  39.         /// Delete the instance of VlcProc
  40.         static void destroy( intf_thread_t *pIntf );
  41.         /// Getter for the playlist variable
  42.         Playlist &getPlaylistVar() { return *((Playlist*)m_cPlaylist.get()); }
  43.         /// Getter for the time variable
  44.         StreamTime &getTimeVar() { return *((StreamTime*)(m_cVarTime.get())); }
  45.         /// Getter for the volume variable
  46.         Volume &getVolumeVar() { return *((Volume*)(m_cVarVolume.get())); }
  47.         /// Getter for the stream variable
  48.         Stream &getStreamVar() { return *((Stream*)(m_cVarStream.get())); }
  49.         /// Set the vout window handle
  50.         void setVoutWindow( void *pVoutWindow );
  51.     protected:
  52.         // Protected because it is a singleton
  53.         VlcProc( intf_thread_t *pIntf );
  54.         virtual ~VlcProc();
  55.     private:
  56.         /// Timer to call manage() regularly (via doManage())
  57.         OSTimer *m_pTimer;
  58.         /// Playlist variable
  59.         VariablePtr m_cPlaylist;
  60.         VariablePtr m_cVarRandom;
  61.         VariablePtr m_cVarLoop;
  62.         VariablePtr m_cVarRepeat;
  63.         /// Variable for current position of the stream
  64.         VariablePtr m_cVarTime;
  65.         /// Variable for audio volume
  66.         VariablePtr m_cVarVolume;
  67.         /// Variable for current stream properties (only name, currently)
  68.         VariablePtr m_cVarStream;
  69.         /// Variable for the "mute" state
  70.         VariablePtr m_cVarMute;
  71.         /// Variables related to the input
  72.         VariablePtr m_cVarPlaying;
  73.         VariablePtr m_cVarStopped;
  74.         VariablePtr m_cVarPaused;
  75.         VariablePtr m_cVarSeekable;
  76.         /// Vout window hanlde
  77.         void *m_pVoutWindow;
  78.         /// Vout thread
  79.         vout_thread_t *m_pVout;
  80.         /// Poll VLC internals to update the status (volume, current time in
  81.         /// the stream, current filename, play/pause/stop status, ...)
  82.         /// This function should be called regurlarly, since there is no
  83.         /// callback mechanism (yet?) to automatically update a variable when
  84.         /// the internal status changes
  85.         void manage();
  86.         /// This function directly calls manage(), because it's boring to
  87.         /// always write "pThis->"
  88.         static void doManage( SkinObject *pObj );
  89.         /// Callback for intf-change variable
  90.         static int onIntfChange( vlc_object_t *pObj, const char *pVariable,
  91.                                  vlc_value_t oldVal, vlc_value_t newVal,
  92.                                  void *pParam );
  93.         /// Callback for intf-show variable
  94.         static int onIntfShow( vlc_object_t *pObj, const char *pVariable,
  95.                                vlc_value_t oldVal, vlc_value_t newVal,
  96.                                void *pParam );
  97.         /// Callback for item-change variable
  98.         static int onItemChange( vlc_object_t *pObj, const char *pVariable,
  99.                                  vlc_value_t oldVal, vlc_value_t newVal,
  100.                                  void *pParam );
  101.         /// Callback for playlist-current variable
  102.         static int onPlaylistChange( vlc_object_t *pObj, const char *pVariable,
  103.                                      vlc_value_t oldVal, vlc_value_t newVal,
  104.                                      void *pParam );
  105.         /// Callback for skins2-to-load variable
  106.         static int onSkinToLoad( vlc_object_t *pObj, const char *pVariable,
  107.                                  vlc_value_t oldVal, vlc_value_t newVal,
  108.                                  void *pParam );
  109.         /// Callback to request a vout window
  110.         static void *getWindow( intf_thread_t *pIntf, vout_thread_t *pVout,
  111.                                 int *pXHint, int *pYHint,
  112.                                 unsigned int *pWidthHint,
  113.                                 unsigned int *pHeightHint );
  114.         /// Callback to release a vout window
  115.         static void releaseWindow( intf_thread_t *pIntf, void *pWindow );
  116.         /// Callback to change a vout window
  117.         static int controlWindow( intf_thread_t *pIntf, void *pWindow,
  118.                                   int query, va_list args );
  119. };
  120. #endif