Changeset 8670 in orxonox.OLD
- Timestamp:
- Jun 21, 2006, 2:15:21 PM (18 years ago)
- Location:
- branches/gui/src/lib/gui/gl
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/lib/gui/gl/glgui_box.cc
r8619 r8670 125 125 height += borderBottom(); /* *2 done further up */ 126 126 127 printf("%f %f\n", width, height);128 127 this->setSize2D(width, height); 129 128 } … … 145 144 height += borderBottom(); /* *2 done further up */ 146 145 147 printf("%f %f\n", width, height);148 146 this->setSize2D(width, height); 149 147 } -
branches/gui/src/lib/gui/gl/glgui_pushbutton.cc
r8669 r8670 63 63 void GLGuiPushButton::receivedFocus() 64 64 { 65 printf("%s received focus\n", this->label().c_str());66 65 GLGuiWidget::receivedFocus(); 67 66 } … … 69 68 void GLGuiPushButton::removedFocus() 70 69 { 71 printf("%s removed focus\n", this->label().c_str());72 70 GLGuiWidget::removedFocus(); 73 71 … … 76 74 void GLGuiPushButton::clicking(const Vector2D& pos) 77 75 { 78 printf("%s clicked\n", this->label().c_str());79 76 GLGuiButton::clicking(pos); 80 77 } … … 83 80 void GLGuiPushButton::releasing(const Vector2D& pos, bool focused) 84 81 { 85 printf("%s released\n", this->label().c_str());86 82 if (focused) 87 83 GLGuiButton::releasing(pos, focused); -
branches/gui/src/lib/gui/gl/glgui_widget.cc
r8669 r8670 174 174 void GLGuiWidget::breakMouseFocus() 175 175 { 176 printf("TESTING UNFOCUSING\n");177 176 if (GLGuiWidget::_mouseFocused == this) 178 177 {
Note: See TracChangeset
for help on using the changeset viewer.