[guilib] fix labelcontrols with auto width always being marked as dirty if they speci...
[vuplus_xbmc] / xbmc / guilib / TextureBundleXBT.h
1 #pragma once
2
3 /*
4  *      Copyright (C) 2005-2013 Team XBMC
5  *      http://xbmc.org
6  *
7  *  This Program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2, or (at your option)
10  *  any later version.
11  *
12  *  This Program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with XBMC; see the file COPYING.  If not, see
19  *  <http://www.gnu.org/licenses/>.
20  *
21  */
22
23 #include "utils/StdString.h"
24 #include <map>
25 #include "XBTFReader.h"
26
27 class CBaseTexture;
28
29 class CTextureBundleXBT
30 {
31 public:
32   CTextureBundleXBT(void);
33   ~CTextureBundleXBT(void);
34
35   void Cleanup();
36   void SetThemeBundle(bool themeBundle);
37   bool HasFile(const CStdString& Filename);
38   void GetTexturesFromPath(const CStdString &path, std::vector<CStdString> &textures);
39   static CStdString Normalize(const CStdString &name);
40
41   bool LoadTexture(const CStdString& Filename, CBaseTexture** ppTexture,
42                        int &width, int &height);
43
44   int LoadAnim(const CStdString& Filename, CBaseTexture*** ppTextures,
45                 int &width, int &height, int& nLoops, int** ppDelays);
46
47 private:
48   bool OpenBundle();
49   bool ConvertFrameToTexture(const CStdString& name, CXBTFFrame& frame, CBaseTexture** ppTexture);
50
51   time_t m_TimeStamp;
52
53   bool m_themeBundle;
54   CXBTFReader m_XBTFReader;
55 };
56
57