📄 theme_repository.hpp
字号:
/***************************************************************************** * theme_repository.hpp ***************************************************************************** * Copyright (C) 2004 VideoLAN * $Id: theme_repository.hpp 9934 2005-02-15 13:55:08Z courmisch $ * * Authors: Cyril Deguet <asmax@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., 59 Temple Place - Suite 330, Boston, MA 02111, USA. *****************************************************************************/#ifndef THEME_REPOSITORY_HPP#define THEME_REPOSITORY_HPP#include "skin_common.hpp"/// Singleton object handling the list of available themesclass ThemeRepository: public SkinObject{ public: /// Get the instance of ThemeRepository /// Returns NULL if the initialization of the object failed static ThemeRepository *instance( intf_thread_t *pIntf ); /// Delete the instance of ThemeRepository static void destroy( intf_thread_t *pIntf ); protected: // Protected because it is a singleton ThemeRepository( intf_thread_t *pIntf ); virtual ~ThemeRepository(); private: /// Identifier for the special menu entry static const char *kOpenDialog; /// Look for themes in a directory void parseDirectory( const string &rDir ); /// Callback for menu item selection static int changeSkin( vlc_object_t *pThis, char const *pCmd, vlc_value_t oldval, vlc_value_t newval, void *pData );};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -