⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 skin_common.hpp

📁 uclinux 下的vlc播放器源代码
💻 HPP
字号:
/***************************************************************************** * skin_common.hpp ***************************************************************************** * Copyright (C) 2003 the VideoLAN team * $Id: skin_common.hpp 17508 2006-11-06 11:26:08Z md $ * * Authors: Cyril Deguet     <asmax@via.ecp.fr> *          Olivier Teulière <ipkiss@via.ecp.fr> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/#ifndef SKIN_COMMON_HPP#define SKIN_COMMON_HPP#include <vlc/vlc.h>#include <vlc/intf.h>#include "charset.h"#include <string>using namespace std;class AsyncQueue;class Logger;class Dialogs;class Interpreter;class OSFactory;class OSLoop;class VarManager;class VlcProc;class Theme;class ThemeRepository;#ifndef M_PI#   define M_PI 3.14159265358979323846#endif#ifdef _MSC_VER// turn off 'warning C4355: 'this' : used in base member initializer list'#pragma warning ( disable:4355 )// turn off 'identifier was truncated to '255' characters in the debug info'#pragma warning ( disable:4786 )#endif// Useful macros#define SKINS_DELETE( p ) \   if( p ) \   { \       delete p; \   } \   else \   { \       msg_Err( getIntf(), "delete NULL pointer in %s at line %d", \                __FILE__, __LINE__ ); \   }/// Wrapper around FromLocale, to avoid the need to call LocaleFree()static inline string sFromLocale( const string &rLocale ){    char *s = FromLocale( rLocale.c_str() );    string res = s;    LocaleFree( s );    return res;}/// Wrapper around FromWide, to avoid the need to call free()static inline string sFromWide( const wstring &rWide ){    char *s = FromWide( rWide.c_str() );    string res = s;    free( s );    return res;}/// Wrapper around ToLocale, to avoid the need to call LocaleFree()static inline string sToLocale( const string &rUTF8 ){    char *s = ToLocale( rUTF8.c_str() );    string res = s;    LocaleFree( s );    return res;}//---------------------------------------------------------------------------// intf_sys_t: description and status of skin interface//---------------------------------------------------------------------------struct intf_sys_t{    /// The input thread    input_thread_t *p_input;    /// The playlist thread    playlist_t *p_playlist;    /// Message bank subscription    msg_subscription_t *p_sub;    // "Singleton" objects: MUST be initialized to NULL !    /// Logger    Logger *p_logger;    /// Asynchronous command queue    AsyncQueue *p_queue;    /// Dialog provider    Dialogs *p_dialogs;    /// Script interpreter    Interpreter *p_interpreter;    /// Factory for OS specific classes    OSFactory *p_osFactory;    /// Main OS specific message loop    OSLoop *p_osLoop;    /// Variable manager    VarManager *p_varManager;    /// VLC state handler    VlcProc *p_vlcProc;    /// Theme repository    ThemeRepository *p_repository;    /// Current theme    Theme *p_theme;};/// Base class for all skin classesclass SkinObject{    public:        SkinObject( intf_thread_t *pIntf ): m_pIntf( pIntf ) {}        virtual ~SkinObject() {}        /// Getter (public because it is used in C callbacks in the win32        /// interface)        intf_thread_t *getIntf() const { return m_pIntf; }    private:        intf_thread_t *m_pIntf;};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -