Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 2608 was 2608, checked in by rgrieder, 17 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
RevLine 
[2608]1/***********************************************************************
2        WindowManager
3***********************************************************************/
4class WindowManager
5{
6        static WindowManager& getSingleton();
7
8        tolua_throws|CEGUI::AlreadyExistsException,nil| Window* createWindow(string type, string name="");
9        tolua_throws|CEGUI::Exception,error|std::exception,error|any,error| Window* loadWindowLayout(string filename, string name_prefix="", string resourcegroup="");
10
11    void writeWindowLayoutToStream(string window, OutStream& out, bool writeParent=false) const;
12    void writeWindowLayoutToStream(const Window& window, OutStream& out, bool writeParent=false) const;
13
14        void destroyWindow(string name);
15        void destroyWindow(Window* window);
16        void destroyAllWindows();
17
18        tolua_throws|CEGUI::UnknownObjectException,nil| Window* getWindow(string name) const;
19        bool isWindowPresent(string name) const;
20
21        bool isDeadPoolEmpty() const;
22        void cleanDeadPool();
23
24    void renameWindow(Window* window, string  new_name);
25    void renameWindow(string window, string new_name);
26
27    WindowIterator getIterator() const;
28
29    static void setDefaultResourceGroup(string resourceGroup);
30    static string& getDefaultResourceGroup();
31};
Note: See TracBrowser for help on using the repository browser.