Changeset 8002 in orxonox.OLD for branches/gui/src/lib/gui/gl_gui/glgui_inputline.cc
- Timestamp:
- May 31, 2006, 12:02:50 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/lib/gui/gl_gui/glgui_inputline.cc
r7998 r8002 21 21 { 22 22 /** 23 * standard constructor23 * @brief standard constructor 24 24 */ 25 25 GLGuiInputLine::GLGuiInputLine () … … 30 30 31 31 /** 32 * standard deconstructor33 */32 * @brief standard deconstructor 33 */ 34 34 GLGuiInputLine::~GLGuiInputLine() 35 35 {} … … 40 40 41 41 /** 42 * initializes the GUI-element42 * @brief initializes the GUI-element 43 43 */ 44 44 void GLGuiInputLine::init() … … 53 53 } 54 54 55 56 /** 57 * @brief sets the Text of the InputLine 58 * @param text The new Text. 59 */ 55 60 void GLGuiInputLine::setText(const std::string& text) 56 61 { … … 61 66 } 62 67 68 /** 69 * @brief appends text to the InputLine 70 * @param appendText the Text to append 71 */ 63 72 void GLGuiInputLine::append(const std::string& appendText) 64 73 { … … 68 77 } 69 78 79 80 /** 81 * @brief appends a Character to the InputLine 82 * @param character the Character to append. 83 */ 70 84 void GLGuiInputLine::appendCharacter(char character) 71 85 { … … 76 90 77 91 92 /** 93 * @brief Removes Characters from the InputLine 94 * @param chars The count of characters to remove 95 */ 78 96 void GLGuiInputLine::removeCharacters(unsigned int chars) 79 97 { … … 84 102 85 103 104 /** 105 * removes the focus from this Widget. 106 */ 86 107 void GLGuiInputLine::removedFocus() 87 108 { … … 92 113 93 114 115 /** 116 * Processes an Event. 117 * @param event The event to be processed 118 * @return true if the event was catched. 119 */ 94 120 bool GLGuiInputLine::processEvent(const Event& event) 95 121 { … … 130 156 131 157 158 /** 159 * @brief Resizes the Widget to the new Size-constraints. 160 */ 132 161 void GLGuiInputLine::resize() 133 162 { … … 139 168 140 169 170 /** 171 * ticks the InputLine 172 * @param dt the time passed. 173 */ 141 174 void GLGuiInputLine::tick(float dt) 142 175 {
Note: See TracChangeset
for help on using the changeset viewer.