Last change
on this file since 5768 was
5738,
checked in by landauf, 15 years ago
|
merged libraries2 back to trunk
|
-
Property svn:eol-style set to
native
|
File size:
889 bytes
|
Rev | Line | |
---|
[2608] | 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.