MyGUI 3.4.1
|
#include <MyGUI_WidgetUserData.h>
Public Member Functions | |
virtual | ~UserData ()=default |
void | setUserString (const std::string &_key, const std::string &_value) |
const std::string & | getUserString (const std::string &_key) const |
const MapString & | getUserStrings () const |
bool | clearUserString (const std::string &_key) |
bool | isUserString (const std::string &_key) const |
void | clearUserStrings () |
void | setUserData (Any _data) |
template<typename ValueType > | |
ValueType * | getUserData (bool _throw=true) const |
void | _setInternalData (Any _data) |
template<typename ValueType > | |
ValueType * | _getInternalData (bool _throw=true) const |
UserData is parent of Widget class. Used to store any user data and strings inside widget
Definition at line 17 of file MyGUI_WidgetUserData.h.
|
virtualdefault |
|
inline |
Definition at line 54 of file MyGUI_WidgetUserData.h.
void MyGUI::UserData::_setInternalData | ( | Any | _data | ) |
Definition at line 59 of file MyGUI_WidgetUserData.cpp.
bool MyGUI::UserData::clearUserString | ( | const std::string & | _key | ) |
Delete user string
Definition at line 33 of file MyGUI_WidgetUserData.cpp.
void MyGUI::UserData::clearUserStrings | ( | ) |
Delete all user strings
Definition at line 49 of file MyGUI_WidgetUserData.cpp.
|
inline |
Get user data and cast it to ValueType
Definition at line 45 of file MyGUI_WidgetUserData.h.
const std::string & MyGUI::UserData::getUserString | ( | const std::string & | _key | ) | const |
Get user string or "" if not found
Definition at line 20 of file MyGUI_WidgetUserData.cpp.
const MapString & MyGUI::UserData::getUserStrings | ( | ) | const |
Get map of all user strings
Definition at line 28 of file MyGUI_WidgetUserData.cpp.
bool MyGUI::UserData::isUserString | ( | const std::string & | _key | ) | const |
Return true if user string with such key exist
Definition at line 44 of file MyGUI_WidgetUserData.cpp.
void MyGUI::UserData::setUserData | ( | Any | _data | ) |
Set any user data to store inside widget
Definition at line 54 of file MyGUI_WidgetUserData.cpp.
void MyGUI::UserData::setUserString | ( | const std::string & | _key, |
const std::string & | _value | ||
) |
Set user string
Definition at line 14 of file MyGUI_WidgetUserData.cpp.