Mike McCormack
|
6987a4b453
|
user32: Downgrade a FIXME to a WARN.
|
2006-11-09 11:44:45 +01:00 |
Dmitry Timoshkov
|
5b43d41a2b
|
user32: Add a test for CreateWindow/DestroyWindow behaviour with WS_CHILD | WS_POPUP style, make it pass under Wine.
|
2006-10-30 17:43:57 +01:00 |
Alexandre Julliard
|
7d8ef2e19e
|
user32: Properly handle negative coordinates for mouse events.
|
2006-10-25 17:42:42 +02:00 |
Detlef Riekenberg
|
530abd2e25
|
user: Remove wrong comment.
|
2006-10-24 20:07:09 +02:00 |
Alexandre Julliard
|
75fb678070
|
user: Fixed MonitorFromWindow behavior for an invalid window handle.
|
2006-10-23 18:03:16 +02:00 |
Alexandre Julliard
|
4c0ae56c0e
|
user: Take multiple monitors into account when placing a window.
|
2006-10-23 14:38:11 +02:00 |
Alexandre Julliard
|
81c1472449
|
user32: The per-window user data must be a DWORD_PTR.
|
2006-10-04 21:49:11 +02:00 |
Michael Stefaniuc
|
3c60ce8525
|
user: Win64 printf format warning fixes.
|
2006-10-02 14:28:59 +02:00 |
Alexandre Julliard
|
7814420f2f
|
user: Explicitly load explorer.exe from the system directory.
|
2006-08-16 16:43:08 +02:00 |
Dan Hipschman
|
74ece17c6b
|
user: Call SetLastError in CreateWindowEx when WS_CHILD is set with no parent.
|
2006-08-04 20:47:26 +02:00 |
Alexandre Julliard
|
121f9c7e55
|
user: Don't bother checking the WS_VISIBLE style on the desktop window.
|
2006-08-04 20:47:26 +02:00 |
Alexandre Julliard
|
2c2299685f
|
user: Implementation of Get/SetWindowLongPtr for 64-bit platforms.
Also use the same code for Get/SetWindowWord.
Based on a patch by Ge van Geldorp.
|
2006-08-02 21:59:00 +02:00 |
Robert Shearman
|
447721e8cb
|
user: Ignore setting NULL window procs inside SetWindowLong.
Add tests for SetWindowLong error cases.
|
2006-07-31 21:54:55 +02:00 |
Dmitry Timoshkov
|
b2686ad2dd
|
include: Move appropriate parts of winpos.h to winuser.h and win.h,
remove winpos.h afterwards.
|
2006-06-29 14:48:42 +02:00 |
Dmitry Timoshkov
|
2dd2eafd3c
|
user: Neither WS_CAPTION nor WS_EX_APPWINDOW has anything to do how
passed in to CreateWindow menu should be handled.
|
2006-06-09 18:13:29 +02:00 |
Ulrich Czekalla
|
0c468c816c
|
x11drv: Improve handling of the case where the clipboard is opened
with a window from another thread or process.
|
2006-06-05 21:01:30 +02:00 |
Mike McCormack
|
2e1d2b30f8
|
user32: Stub implementations for Win64's Get/Set LongPtr functions.
|
2006-05-30 19:29:36 +02:00 |
Alexandre Julliard
|
14fb1ddcc5
|
user: Only include winproc.h where necessary.
|
2006-05-26 14:54:54 +02:00 |
Jonathan Ernst
|
360a3f9142
|
Update the address of the Free Software Foundation.
|
2006-05-23 14:11:13 +02:00 |
Alexandre Julliard
|
0667292eb5
|
user: Support storing multiple winprocs in a single winproc handle.
Allows to remove special cases for window classes being Ascii and
Unicode at the same time.
|
2006-05-17 13:55:36 +02:00 |
Alexandre Julliard
|
56220c246b
|
user: Have WINPROC_GetProc16 allocate a new winproc if necessary.
|
2006-05-10 16:55:55 +02:00 |
Alexandre Julliard
|
c8ce866a8a
|
user: Make the WINDOWPROCTYPE enum private to winproc.c.
|
2006-05-10 13:34:45 +02:00 |
Alexandre Julliard
|
4cc498f880
|
user: Replace WINPROC_GetProcType by WINPROC_IsUnicode.
|
2006-05-10 13:27:21 +02:00 |
Alexandre Julliard
|
a9e5e94b0d
|
user: Replace WINDOWPROCTYPE by a unicode flag in WINPROC_GetProc/AllocProc.
|
2006-05-10 13:20:34 +02:00 |
Alexandre Julliard
|
ef74193949
|
user: Add a WIN_ISUNICODE flag instead of relying on the winproc type.
Also fix the initial value for the server is_unicode flag.
|
2006-05-10 12:55:36 +02:00 |
Alexandre Julliard
|
41b5e687fd
|
user: Separate the 16 and 32-bit versions of WINPROC_AllocProc.
|
2006-05-09 19:55:05 +02:00 |
Alexandre Julliard
|
4c40190620
|
user: Separate the 16 and 32-bit versions of WINPROC_GetProc.
|
2006-05-09 18:40:46 +02:00 |
Alexandre Julliard
|
5326e304d0
|
user: Fixed offset check for the DWLP_DLGPROC case in SetWindowLong.
|
2006-05-09 18:35:50 +02:00 |
Alexandre Julliard
|
a95c58b871
|
user: Separate Get/SetWindowLong16 implementation from the 32-bit one.
|
2006-05-09 18:34:38 +02:00 |
Alexandre Julliard
|
4d3282a5fb
|
user: Don't send WM_PARENTNOTIFY to the desktop window.
|
2006-03-30 13:22:27 +02:00 |
Alexandre Julliard
|
1a4f6e579b
|
user: Launch explorer to manage the desktop window.
|
2006-03-07 11:42:35 +01:00 |
Alexandre Julliard
|
4be3d4c12b
|
server: Return real parent and owner in the create_window request.
Remove computing of parent and owner handles on the client side.
|
2006-03-06 15:00:37 +01:00 |
Vitaliy Margolen
|
dd57bbd1d2
|
user: Don't drop owned windows in WIN_EnumChildWindows.
Add a few tests for this.
|
2006-01-25 15:07:02 +01:00 |
Louis Lenders
|
d782abff6b
|
user32: Added stub for UpdateLayeredWindow.
|
2006-01-23 20:12:52 +01:00 |
Ken Thomases
|
d6865383a6
|
user: Fixed the lifetime of MDICREATESTRUCT variables.
|
2006-01-19 12:43:45 +01:00 |
Vitaliy Margolen
|
b78784c3f2
|
New maximized visible window should be shown with
ShowWindow(SW_SHOW).
|
2005-11-30 12:37:47 +01:00 |
Vitaliy Margolen
|
e95464a5cb
|
EnumChildWindows should return result from the callback.
|
2005-11-29 10:40:58 +01:00 |
Dmitry Timoshkov
|
7bde557d8a
|
Choose what window styles to dump (WS_GROUP/WS_TABSTOP vs.
WS_MINIMIZEBOX/WS_MAXIMIZEBOX) based on the WS_CHILD style set.
|
2005-11-21 15:18:32 +00:00 |
Markus Amsler
|
86b6749208
|
Improve c2man Documented-Total count. Changes:
- add missing description
- add missing returns section
- complete missing A/W pairs
- reformate comments, to match c2man requirements
|
2005-11-09 10:33:40 +00:00 |
Vitaliy Margolen
|
e135a52294
|
Use GetSystemMetrics instead of hardcoding drag width & height.
|
2005-10-03 18:48:36 +00:00 |
Alexandre Julliard
|
0ec0f048e6
|
Removed unused debug channels.
|
2005-09-22 10:44:40 +00:00 |
Alexandre Julliard
|
42744ff420
|
Don't fallback to LoadMenu16 when the window is created with a null
instance.
|
2005-09-07 09:28:08 +00:00 |
Dmitry Timoshkov
|
4ffc11ad0e
|
Make CreateWindow with invalid menu handle test pass on Wine.
|
2005-08-09 10:22:45 +00:00 |
Alexandre Julliard
|
bf575f1f8f
|
Initialize the various menu global variables on demand instead of at
startup time.
|
2005-07-19 11:51:31 +00:00 |
Alexandre Julliard
|
15ec968724
|
Load the USER driver on demand instead of at user32 load time.
Provide a fallback implementation for all the functions to avoid
having to check for NULL functions everywhere.
|
2005-07-18 15:14:56 +00:00 |
Felix Nawothnig
|
b08e77d9a3
|
Add stub for SetLayeredWindowAttributes.
|
2005-07-18 09:13:13 +00:00 |
Alexandre Julliard
|
8c518808b8
|
Put in place the basic infrastructure to allow supporting multiple
desktop windows.
|
2005-07-08 11:37:40 +00:00 |
Alexandre Julliard
|
e419cb8869
|
Moved initialization of the desktop window in the graphics driver to a
separate CreateDesktopWindow entry point instead of overloading
CreateWindow.
|
2005-07-07 20:33:29 +00:00 |
Alexandre Julliard
|
204596f957
|
Delay creation of the internal pos atom until needed.
|
2005-07-07 17:27:17 +00:00 |
Dmitry Timoshkov
|
86af38c8ca
|
Make IsWindowUnicode work in the case when window belongs to another
process.
|
2005-07-07 12:02:31 +00:00 |