MyGUI  3.2.1
MyGUI_FontManager.h
Go to the documentation of this file.
1 /*
2  * This source file is part of MyGUI. For the latest info, see http://mygui.info/
3  * Distributed under the MIT License
4  * (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
5  */
6 
7 #ifndef __MYGUI_FONT_MANAGER_H__
8 #define __MYGUI_FONT_MANAGER_H__
9 
10 #include "MyGUI_Prerequest.h"
11 #include "MyGUI_Enumerator.h"
12 #include "MyGUI_IFont.h"
13 #include "MyGUI_Singleton.h"
14 #include "MyGUI_XmlDocument.h"
15 #include "MyGUI_ResourceManager.h"
17 
18 namespace MyGUI
19 {
20 
22  public Singleton<FontManager>,
23  public MemberObsolete<FontManager>
24  {
25  public:
26  FontManager();
27 
28  void initialise();
29  void shutdown();
30 
34  const std::string& getDefaultFont() const;
38  void setDefaultFont(const std::string& _value);
39 
41  IFont* getByName(const std::string& _name) const;
42 
43  private:
44  void _load(xml::ElementPtr _node, const std::string& _file, Version _version);
45 
46  private:
47  std::string mDefaultName;
48 
49  bool mIsInitialise;
50  std::string mXmlFontTagName;
51  std::string mXmlPropertyTagName;
52  std::string mXmlDefaultFontValue;
53  };
54 
55 } // namespace MyGUI
56 
57 #endif // __MYGUI_FONT_MANAGER_H__