Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/buildsystem2/src/ceguilua/ceguilua-0.5.0/package/WindowFactoryManager.pkg @ 2608

Last change on this file since 2608 was 2608, checked in by rgrieder, 15 years ago

Large cleanup in CEGUILua:

  • Removed the heavy 1.7MB bind files and added the small pkg files from the CEGUI source instead
  • Those pkg files get copied version incrementally (starting with 0.5.0) to the binary dir. That saves a lot of files when having 4 different versions.
  • Added support for CEGUI 0.6.0 and 0.6.2
  • Added library info files
  • CEGUILua 0.5.0 finally supports Lua 5.1 too That means all version support both Lua 5.0 and 5.1
  • Added unified diffs with the changes to the CEGUILua source
  • Property svn:eol-style set to native
File size: 1.2 KB
Line 
1/***********************************************************************
2        WindowFactoryManager
3***********************************************************************/
4class FalagardWindowMapping
5{
6    string d_windowType @ windowType;
7    string d_lookName @ lookName;
8    string d_baseType @ baseType;
9    string d_rendererType @ rendererType;
10};
11
12class WindowFactory
13{
14    string getTypeName() const;
15};
16
17class WindowFactoryManager
18{
19    static WindowFactoryManager& getSingleton();
20
21    bool isFactoryPresent(string name) const;
22    void addWindowTypeAlias(string aliasName, string targetType);
23    void removeWindowTypeAlias(string aliasName, string targetType);
24    void addFalagardWindowMapping(string newType, string targetType, string lookName, string renderer);
25    void removeFalagardWindowMapping(string type);
26    bool isFalagardMappedType(string type) const;
27    string getMappedLookForType(string type) const;
28    string getMappedRendererForType(string type) const;
29    String getDereferencedAliasType(string type) const;
30    const FalagardWindowMapping& getFalagardMappingForType(string type) const;
31
32    WindowFactoryIterator getIterator() const;
33    FalagardMappingIterator getFalagardMappingIterator() const;
34};
Note: See TracBrowser for help on using the repository browser.