28 #ifndef HPL_WIDGET_LABEL_H 29 #define HPL_WIDGET_LABEL_H 31 #include "hpl1/engine/gui/Widget.h" 42 void SetTextAlign(eFontAlign aType) { mTextAlign = aType; }
43 eFontAlign GetTextAlign() {
return mTextAlign; }
45 bool GetWordWrap() {
return mbWordWrap; }
46 void SetWordWrap(
bool abX) { mbWordWrap = abX; }
48 void SetMaxTextLength(
int alLength);
49 int GetMaxTextLength() {
return mlMaxCharacters; }
54 void OnLoadGraphics();
66 eFontAlign mTextAlign;
74 #endif // HPL_WIDGET_LABEL_H
Definition: GuiTypes.h:263