#include <SkinController.h>
Public Member Functions | |
SkinController () | |
SkinController (char *skinsXmlFile) | |
~SkinController () | |
int | getNumberSkins () |
Skin | getSkin (int skinNo) |
Definition at line 18 of file SkinController.h.
SkinController::SkinController | ( | ) |
Default Constructor - assumes filename is skins.xml in the same location as the application. This only works if the loader correctly sets the current working directory when the application is launched, otherwise you'll need to provide the path to the skins XML file using the alternative constructor
Definition at line 25 of file SkinController.cpp.
SkinController::SkinController | ( | char * | skinsXmlFile | ) |
Constructor - path (including name) to the skins file can be provided
[in] | skinsXmlFile | the full path the the skins file, e.g. SD:/apps/test/skins.xml |
Definition at line 37 of file SkinController.cpp.
SkinController::~SkinController | ( | ) |
destructor
Definition at line 48 of file SkinController.cpp.
int SkinController::getNumberSkins | ( | ) | [inline] |
Definition at line 24 of file SkinController.h.
Skin SkinController::getSkin | ( | int | skinNo | ) |
Returns the skin at skin number provided
[in] | skinNo | integer containing skin number to return |
Definition at line 138 of file SkinController.cpp.