Changeset 8555 in orxonox.OLD for branches/gui/src/lib
- Timestamp:
- Jun 17, 2006, 10:00:10 AM (18 years ago)
- Location:
- branches/gui/src/lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/lib/gui/gl/glgui_style.cc
r8554 r8555 66 66 67 67 void GLGuiStyle::loadParams(const TiXmlElement* root) 68 {} 68 { 69 LoadParam(root, "border-left", this, GLGuiStyle, setBorderLeft); 70 LoadParam(root, "border-right", this, GLGuiStyle, setBorderRight); 71 LoadParam(root, "border-top", this, GLGuiStyle, setBorderTop); 72 LoadParam(root, "border-bottom", this, GLGuiStyle, setBorderBottom); 73 74 LoadParam(root, "text-size", this, GLGuiStyle, setTextSize); 75 LoadParam(root, "background-color", this, GLGuiStyle, setBackgroundColorS); 76 LoadParam(root, "foreground-color", this, GLGuiStyle, setForegroundColorS); 77 78 LoadParam(root, "feature-position", this, GLGuiStyle, setFeaturePosition); 79 LoadParam(root, "Font", this, GLGuiStyle, setFont); 80 81 LoadParam(root, "animated", this, GLGuiStyle, setAnimated); 82 LoadParam(root, "animated-state-changes", this, GLGuiStyle, setAnimatedStateChanges); 83 } 69 84 70 85 -
branches/gui/src/lib/gui/gl/glgui_style.h
r8554 r8555 7 7 #define _GLGUI_STYLE_H 8 8 9 #include "base_object.h" 10 9 11 #include "glgui_defs.h" 10 12 … … 13 15 #include "color.h" 14 16 15 class TiXmlElement;16 17 17 namespace OrxGui 18 18 { 19 19 //! A class for Defining Styles to the opengl-gui. 20 class GLGuiStyle 20 class GLGuiStyle : public BaseObject 21 21 { 22 22 public: -
branches/gui/src/lib/util/executor/functor_list.h
r8048 r8555 144 144 FUNCTOR_LIST(3)(l_STRING, l_UINT, l_UINT); 145 145 146 FUNCTOR_LIST(5)(l_FLOAT, l_FLOAT, l_FLOAT, l_FLOAT, l_STRING); 147 146 148 #endif /* FUNCTOR_LIST */
Note: See TracChangeset
for help on using the changeset viewer.