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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * skin_common.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: c893207325ba1856b323f38c68e9486a4d929ef8 $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teulière <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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #ifdef HAVE_CONFIG_H
  25. # include "config.h"
  26. #endif
  27. #ifndef SKIN_COMMON_HPP
  28. #define SKIN_COMMON_HPP
  29. #include <vlc_common.h>
  30. #include <vlc_interface.h>
  31. #include "vlc_charset.h"
  32. #include <string>
  33. using namespace std;
  34. class AsyncQueue;
  35. class Logger;
  36. class Dialogs;
  37. class Interpreter;
  38. class OSFactory;
  39. class OSLoop;
  40. class VarManager;
  41. class VlcProc;
  42. class VoutManager;
  43. class Theme;
  44. class ThemeRepository;
  45. #ifndef M_PI
  46. #   define M_PI 3.14159265358979323846
  47. #endif
  48. #ifdef _MSC_VER
  49. // turn off 'warning C4355: 'this' : used in base member initializer list'
  50. #pragma warning ( disable:4355 )
  51. // turn off 'identifier was truncated to '255' characters in the debug info'
  52. #pragma warning ( disable:4786 )
  53. #endif
  54. // Useful macros
  55. #define SKINS_DELETE( p ) 
  56.    if( p ) 
  57.    { 
  58.        delete p; 
  59.    } 
  60.    else 
  61.    { 
  62.        msg_Err( getIntf(), "delete NULL pointer in %s at line %d", 
  63.                 __FILE__, __LINE__ ); 
  64.    }
  65. /// Wrapper around FromLocale, to avoid the need to call LocaleFree()
  66. static inline string sFromLocale( const string &rLocale )
  67. {
  68.     char *s = FromLocale( rLocale.c_str() );
  69.     string res = s;
  70.     LocaleFree( s );
  71.     return res;
  72. }
  73. #ifdef WIN32
  74. /// Wrapper around FromWide, to avoid the need to call free()
  75. static inline string sFromWide( const wstring &rWide )
  76. {
  77.     char *s = FromWide( rWide.c_str() );
  78.     string res = s;
  79.     free( s );
  80.     return res;
  81. }
  82. #endif
  83. /// Wrapper around ToLocale, to avoid the need to call LocaleFree()
  84. static inline string sToLocale( const string &rUTF8 )
  85. {
  86.     char *s = ToLocale( rUTF8.c_str() );
  87.     string res = s;
  88.     LocaleFree( s );
  89.     return res;
  90. }
  91. //---------------------------------------------------------------------------
  92. // intf_sys_t: description and status of skin interface
  93. //---------------------------------------------------------------------------
  94. struct intf_sys_t
  95. {
  96.     /// The input thread
  97.     input_thread_t *p_input;
  98.     /// The playlist thread
  99.     playlist_t *p_playlist;
  100. #ifdef WIN32
  101.     /// flags in order to terminate properly
  102.     bool b_exitRequested;
  103.     bool b_exitOK;
  104. #endif
  105.     /// Message bank subscription
  106.     msg_subscription_t *p_sub;
  107.     // "Singleton" objects: MUST be initialized to NULL !
  108.     /// Logger
  109.     Logger *p_logger;
  110.     /// Asynchronous command queue
  111.     AsyncQueue *p_queue;
  112.     /// Dialog provider
  113.     Dialogs *p_dialogs;
  114.     /// Script interpreter
  115.     Interpreter *p_interpreter;
  116.     /// Factory for OS specific classes
  117.     OSFactory *p_osFactory;
  118.     /// Main OS specific message loop
  119.     OSLoop *p_osLoop;
  120.     /// Variable manager
  121.     VarManager *p_varManager;
  122.     /// VLC state handler
  123.     VlcProc *p_vlcProc;
  124.     /// Vout manager
  125.     VoutManager *p_voutManager;
  126.     /// Theme repository
  127.     ThemeRepository *p_repository;
  128.     /// Current theme
  129.     Theme *p_theme;
  130. };
  131. /// Base class for all skin classes
  132. class SkinObject
  133. {
  134.     public:
  135.         SkinObject( intf_thread_t *pIntf ): m_pIntf( pIntf ) {}
  136.         virtual ~SkinObject() {}
  137.         /// Getter (public because it is used in C callbacks in the win32
  138.         /// interface)
  139.         intf_thread_t *getIntf() const { return m_pIntf; }
  140.     private:
  141.         intf_thread_t *m_pIntf;
  142. };
  143. #endif