source:
code/branches/rocket3/src/external/ceguilua/ceguilua-0.5.0/package/ImagesetManager.pkg
@
7144
| Last change on this file since 7144 was 5781, checked in by rgrieder, 16 years ago | |
|---|---|
|
|
| File size: 889 bytes | |
| Line | |
|---|---|
| 1 | /*********************************************************************** |
| 2 | ImagesetManager |
| 3 | ***********************************************************************/ |
| 4 | class ImagesetManager |
| 5 | { |
| 6 | static ImagesetManager& getSingleton(); |
| 7 | |
| 8 | tolua_throws|CEGUI::Exception,error| Imageset* createImageset(string name, Texture* texture); |
| 9 | tolua_throws|CEGUI::Exception,error| Imageset* createImageset(string filename, string resourcegroup=""); |
| 10 | tolua_throws|CEGUI::Exception,error| Imageset* createImagesetFromImageFile(string name, string filename, string resourcegroup=""); |
| 11 | |
| 12 | void destroyImageset(Imageset* imageset); |
| 13 | void destroyImageset(string name); |
| 14 | void destroyAllImagesets(); |
| 15 | |
| 16 | tolua_throws|CEGUI::Exception,nil| Imageset* getImageset(string name) const; |
| 17 | bool isImagesetPresent(string name) const; |
| 18 | |
| 19 | void notifyScreenResolution(const Size& size); |
| 20 | |
| 21 | ImagesetIterator getIterator() const; |
| 22 | }; |
Note: See TracBrowser
for help on using the repository browser.










