Changeset 9021 in orxonox.OLD for trunk/src/lib/gui/gl
- Timestamp:
- Jul 2, 2006, 10:25:41 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/gui/gl/glgui_handler.cc
r9006 r9021 18 18 #include "glgui_handler.h" 19 19 #include "event_handler.h" 20 #include "key_names.h" 20 21 21 22 #include "glgui_mainwidget.h" … … 203 204 switch (event.type) 204 205 { 206 case EV_MOUSE_MOTION: 207 this->checkFocus(); 208 break; 209 205 210 case EV_MOUSE_BUTTON_LEFT: 206 211 if (GLGuiWidget::mouseFocused() != NULL && event.bPressed) … … 247 252 } 248 253 254 255 // Send the Event to the Widget below. 249 256 if (GLGuiWidget::selected() != NULL) 250 257 { 258 printf("event is %s\n", EVToKeyName(event.type).c_str()); 251 259 GLGuiWidget::selected()->processEvent(event); 252 260 }
Note: See TracChangeset
for help on using the changeset viewer.