Changeset 4832 in orxonox.OLD for orxonox/trunk/src/lib/graphics
- Timestamp:
- Jul 11, 2005, 5:45:27 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/graphics/graphics_engine.h
r4831 r4832 49 49 int resolutionChanged(const SDL_ResizeEvent& resizeInfo); 50 50 51 52 static void showMouse(bool show) { (show)?SDL_ShowCursor(SDL_ENABLE):SDL_ShowCursor(SDL_DISABLE); }; 53 static bool isMouseVisible() {return (SDL_ShowCursor(SDL_QUERY) == SDL_ENABLE)?true:false; }; 51 /** @param show if The mouse-cursor should be visible */ 52 inline static void showMouse(bool show) { (show)?SDL_ShowCursor(SDL_ENABLE):SDL_ShowCursor(SDL_DISABLE); }; 53 /** @returns The Visinility of the mouse-cursor (true if visible, false if it is invisible) */ 54 static bool isMouseVisible() { return (SDL_ShowCursor(SDL_QUERY) == SDL_ENABLE)?true:false; }; 55 /** @param steal If the Winodow-Managers Events should be stolen to this app (steals the mouse, and all WM-clicks) */ 54 56 static void stealWMEvents(bool steal) { (steal)?SDL_WM_GrabInput(SDL_GRAB_ON):SDL_WM_GrabInput(SDL_GRAB_OFF); }; 57 /** @returns true if Events are stolen from the WM, false if not. */ 58 static bool isStealingEvents() { if (SDL_GRAB_ON) return true; }; 55 59 56 60 static void enter2DMode();
Note: See TracChangeset
for help on using the changeset viewer.