Changeset 33540 in vbox for trunk/src/VBox/Frontends/VBoxSDL
- Timestamp:
- Oct 28, 2010 9:27:05 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67140
- Location:
- trunk/src/VBox/Frontends/VBoxSDL
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxSDL/Framebuffer.h
r31698 r33540 163 163 /** flag whether we're in fullscreen mode */ 164 164 bool mfFullscreen; 165 /** flag whet er we keep the host screen resolution when switching to165 /** flag whether we keep the host screen resolution when switching to 166 166 * fullscreen or not */ 167 167 bool mfKeepHostRes; -
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDL.cpp
r33386 r33540 98 98 * Structures and Typedefs * 99 99 *******************************************************************************/ 100 /** Pointer shape change event data struc ure */100 /** Pointer shape change event data structure */ 101 101 struct PointerShapeChangeData 102 102 { … … 712 712 /* 713 713 * Lock keys on SDL behave different from normal keys: A KeyPress event is generated 714 * if the lock mode gets active and a keyRelease event is gener eated if the lock mode714 * if the lock mode gets active and a keyRelease event is generated if the lock mode 715 715 * gets inactive, that is KeyPress and KeyRelease are sent when pressing the lock key 716 716 * to change the mode. The current lock mode is reflected in SDL_GetModState(). … … 3342 3342 case SDLK_LMETA: 3343 3343 case SDLK_LSUPER: keycode = 0x5b | 0x100; break; 3344 /* Sssumes normal key. */3344 /* Assumes normal key. */ 3345 3345 default: keycode = s_aMacToSet1[keycode]; break; 3346 3346 } … … 4255 4255 bi.bV5BitCount = 32; 4256 4256 bi.bV5Compression = BI_BITFIELDS; 4257 // specif iy a supported 32 BPP alpha format for Windows XP4257 // specify a supported 32 BPP alpha format for Windows XP 4258 4258 bi.bV5RedMask = 0x00FF0000; 4259 4259 bi.bV5GreenMask = 0x0000FF00; -
trunk/src/VBox/Frontends/VBoxSDL/VBoxSDLMain-darwin.m
r16894 r33540 12 12 #import <iprt/assert.h> 13 13 14 /* For some rea on, Apple removed setAppleMenu from the headers in 10.4,14 /* For some reason, Apple removed setAppleMenu from the headers in 10.4, 15 15 but the method still is there and works. To avoid warnings, we declare 16 16 it ourselves here. */
Note:
See TracChangeset
for help on using the changeset viewer.