Commit Graph

204 Commits

Author SHA1 Message Date
David Faure f64b70e558 Special case handling of : Shift + arrow, shift + home, ...
X returns a char for it, but Windows doesn't. Ignore X char.
Also added some documentation.
1998-11-14 16:47:54 +00:00
Per Ångström d772adab0f Fixed SetMessageQueue32 to return FALSE, not TRUE, when called with
an invalid size parameter.
1998-11-14 11:29:02 +00:00
Lionel Ulmer 9f984ce78d Wine keyboard and mouse have now their own UIDs. 1998-11-14 11:22:25 +00:00
NF Stevens e1f67b99bb Fixed keystroke accelerators in dialogs which have controls containing
other controls as child windows.
1998-11-08 16:44:41 +00:00
Juergen Schmied fdf6aa4eed Fixes: LB_/CB_/EM_ messages for getting/setting text and a bug in
16->32 bit conversion.
1998-11-08 16:28:49 +00:00
Lionel Ulmer 12de3ea346 Added device type constants and used them in device enumeration
function.
1998-11-08 14:24:04 +00:00
Uwe Bonnes 9fdceb8a21 - adds GetExitCodeProcess
- corrects the return-type of GetKeyState
- corrects the winelib definition of IsDialogMessage
- adds winelib definitions for PrintDlg
1998-11-08 13:12:49 +00:00
Ulrich Weigand a11ce32ad4 Adapted to new input event handling. 1998-11-08 12:27:26 +00:00
Ulrich Weigand 2b067584e9 USER-side part of input event handling: contains implementation of
keybd_event and mouse_event, and USER-related code removed from
windows/event.c and windows/keyboard.c.
1998-11-08 12:26:36 +00:00
Ulrich Weigand a6663e8573 Stubs for DISPLAY.DRV removed from keyboard.c. 1998-11-08 12:24:02 +00:00
Ulrich Weigand bf844a4f38 Implementation of MOUSE.DRV (contains some code taken from
windows/event.c).
1998-11-08 12:21:35 +00:00
Ulrich Weigand d1b919c7e4 Implementation of KEYBOARD.DRV (code mostly taken from previous
windows/keyboard.c).
1998-11-08 12:19:23 +00:00
Rein Klazes cb505623c1 Added WM_GETDLGCODE handling in (Un)MapMsg32Ato16. 1998-11-07 12:24:21 +00:00
Lionel Ulmer 89f8ba2129 Changed mouse button mapping and check size of return buffer. 1998-11-06 17:28:22 +00:00
Ove Kaaven 0fbe1de1f7 Made sure ConfigureNotify is processed before Expose, deferring the
Expose event if necessary, thus working around a WM flaw with virtual
desktop scrolling in -managed mode.
1998-11-06 10:56:09 +00:00
Marcus Meissner 4d7f5b6098 Two missing WINAPIs. 1998-11-06 10:15:00 +00:00
Jesper Skov 5c3e457b16 egcs 'ambiguous else' warnings fixes. 1998-11-01 19:27:22 +00:00
Ulrich Weigand 7df1fbb3df Run Winelib applications as 32-bit processes in the initial task.
Simplified/removed several special 'if (__winelib)' cases in
Wine main code obsoleted by that change.
1998-11-01 18:01:53 +00:00
Ulrich Weigand 718cbaea16 Call mouse driver callback also if windows are not registered with X
(if using native USER.EXE).
1998-11-01 18:00:56 +00:00
Alexandre Julliard 463b713dfd Fixed crashes with WM_GETDLGCODE translation. 1998-11-01 16:23:54 +00:00
Patrik Stridvall ea5847247e Started moving some X11 window management code to windows/x11drv. 1998-11-01 16:22:07 +00:00
Ove Kaaven 748acbb0a5 Fixed IsDialogMessage16. 1998-11-01 15:27:12 +00:00
Huw D M Davies 84dd9feb05 A couple of small fixes to my bitmap patch. 1998-11-01 15:13:53 +00:00
Uwe Bonnes 3700777e9a Allow the user to put a mark in the debug log by adding a item in the
SYSMENU. The messages needs implementation in all other languages than
English and German.
1998-11-01 15:07:24 +00:00
Rein Klazes 5c6fc1bb91 CreateWindowEx32[AW] now creates an MDI chils when the WM_EX_MDICHILD
extended style is specified. Also implemented CreateMDIWindow32A()
call - single thread only -.
1998-11-01 14:50:06 +00:00
Marcus Meissner 9cfe2d5384 Added stubs for user32,advapi32 functions. 1998-11-01 14:02:57 +00:00
Andreas Mohr b7db887be1 Added stub for CheckCursor(). 1998-11-01 13:30:18 +00:00
Tim Newsome e7cdbb0589 Fix for non-modal dialog closing. 1998-11-01 13:04:43 +00:00
David Faure 120e4576c4 Rewrote the two routines using the vkey->scancode array to use
keyc2vkey for each keycode, instead. Not tested.
Removed unused IDirectInputDeviceA_GetDeviceState.
Fixed warning in TRACE() call.
1998-11-01 13:03:43 +00:00
David Faure 6f75dc440f Deleted the vkey->sancode array, because QWERTY specific.
Back to using the X keycode instead as the scancode. Tested.
1998-11-01 13:02:59 +00:00
Marcus Meissner 1e319975d7 Small fixes. 1998-10-31 12:20:55 +00:00
Marcus Meissner 8143accee2 Lots of stubs to get winlogon.exe from nt3.51 and other NT3.51 applets
a bit further.
1998-10-31 12:19:56 +00:00
Rein Klazes 4f7abc05c2 MDIchild created when the MDI client has the MDIS_ALLCHILDSTYLES
style, should not be shown at creation nor activated unless the
WS_VISIBLE flag is set.
1998-10-31 12:18:17 +00:00
Rein Klazes bf1bc516cc Delay linking newly created window in linked list until after the
WM_NCCREATE message.
1998-10-31 12:09:32 +00:00
Juergen Schmied 982f139d19 A dest buffer was printed out as string. 1998-10-28 14:58:02 +00:00
Huw D M Davies 87f87bf61c Added pBitmapBits and pCreateBitmap to the GDI function table and
moved the X11 dependent stuff out of objects/bitmap.c into x11drv.
1998-10-28 09:53:53 +00:00
Marcus Meissner 66cd333461 EnumDisplayModes* returns a static list of modes with all depths
(helps hexen2demo), ChangeDisplaySettings returns true all the time.
1998-10-27 15:41:54 +00:00
NF Stevens 1410cdd0c4 A couple of TRACE messages are missing a newline at the end. 1998-10-26 11:04:12 +00:00
Pascal Cuoq 724f1900de 32-bit clipboard support. 1998-10-26 10:58:16 +00:00
Ulrich Weigand e948930ea8 Bugfix for QUEUE_Signal: Always use PostEvent if no thread is waiting
on the queue.
1998-10-26 10:45:13 +00:00
NF Stevens 9552483350 Fixed a minor problem with the menus for mdi child windows. 1998-10-26 10:44:17 +00:00
David Faure b745eaa466 Replaced 0x00 with 0x01 in the vkey->sancode array, so that no key is
ignored. 0x00 is used for generated key events only.
1998-10-25 09:24:29 +00:00
Douglas Ridgway efaa573501 API Documentation for SendMessage, GetTickCount, PostQuitMessage,
GetMessagePos, GetMessageTime.
1998-10-25 09:20:30 +00:00
Kai Morich 6a387e500e Added Drag&Drop from KDE app to 16/32 bit Windoze app. 1998-10-24 12:02:20 +00:00
Kai Morich 54ae47358c Added FIXME message in PostMessage32x if parameters are truncated
when calling PostMessage16.
1998-10-24 12:01:36 +00:00
Lionel Ulmer 27829e4337 Beginning of mouse support in DirectInput (only "standard" mouse
configuration supported for now).
1998-10-24 11:04:07 +00:00
Eric Kohl d0b79c0886 Fixed DrawCaption16() and DrawCaptionTemp16(). 1998-10-24 10:45:42 +00:00
David Faure 905d6226ef Fixed warning. 1998-10-24 10:45:01 +00:00
Juergen Schmied 8e26b5837d New stub RegisterTaskList.
New function EnumDisplaySettings32W().
1998-10-23 12:51:38 +00:00
Juergen Schmied 4a84dc2391 More message mapping 32A<-->32W for EM_, CB_, LB_ for Unicode. 1998-10-23 12:04:25 +00:00