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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * theme_loader.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 42e69cfa0844e1fa0c5db08a76435cc85caa1b55 $
  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. #ifndef THEME_LOADER_HPP
  25. #define THEME_LOADER_HPP
  26. #include "skin_common.hpp"
  27. #include <string>
  28. #if defined( HAVE_ZLIB_H )
  29. #   include "unzip.h"
  30. #endif
  31. class ThemeLoader: public SkinObject
  32. {
  33.     public:
  34.         ThemeLoader( intf_thread_t *pIntf ): SkinObject( pIntf ) {}
  35.         virtual ~ThemeLoader() {}
  36.         /// The expected fileName must be an UTF-8 string
  37.         bool load( const string &fileName );
  38.     private:
  39. #if defined( HAVE_ZLIB_H )
  40.         /// Extract files from an archive (handles tar.gz and zip)
  41.         /**
  42.          * Expects a string from the current locale.
  43.          */
  44.         bool extract( const string &fileName );
  45.         /// Extract files from a tar.gz archive
  46.         /**
  47.          * Expects strings from the current locale.
  48.          */
  49.         bool extractTarGz( const string &tarFile, const string &rootDir );
  50.         /// Extract files from a .zip archive
  51.         /**
  52.          * Expects strings from the current locale.
  53.          */
  54.         bool extractZip( const string &zipFile, const string &rootDir );
  55.         /// Extract the current file from a .zip archive
  56.         /**
  57.          * Expects a string from the current locale.
  58.          */
  59.         bool extractFileInZip( unzFile file, const string &rootDir );
  60.         /// Clean up the temporary files created by the extraction
  61.         /**
  62.          * Expects a string from the current locale.
  63.          */
  64.         void deleteTempFiles( const string &path );
  65. #endif
  66.         /// Parse the XML file given as a parameter and build the skin
  67.         /**
  68.          * Expects UTF8 strings
  69.          */
  70.         bool parse( const string &path, const string &xmlFile );
  71.         /// Recursively look for the XML file from rootDir.
  72.         /**
  73.          * The first corresponding file found will be chosen and themeFilePath
  74.          * will be updated accordingly.
  75.          * The method returns true if a theme file was found, false otherwise.
  76.          * rootDir and rFilename must both be strings in the current locale,
  77.          * whereas themeFilePath will be in UTF8.
  78.          */
  79.         bool findFile( const string &rootDir, const string &rFileName,
  80.                        string &themeFilePath );
  81.         /// Get the base path of a file
  82.         string getFilePath( const string &rFullPath );
  83.         /// Replace '/' separators by the actual separator of the OS
  84.         string fixDirSeparators( const string &rPath );
  85. };
  86. #endif