1 | /* $Id: changelog,v 1.1404 2001-05-11 08:34:26 sandervl Exp $ */
|
---|
2 |
|
---|
3 | 2001-05-11: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
4 | - USER32: o Rewrote window handling. Back to using frame and client windows
|
---|
5 | for each win32 window.
|
---|
6 | (fixes visible region problems with e.g. Opera)
|
---|
7 | Frame windows never have the WS_CLIPCHILDREN style; this caused
|
---|
8 | the transparency problems reported earlier when using this method.
|
---|
9 | E.g.: Dialog parent, groupbox; invalidate part of groupbox ->
|
---|
10 | painting algorithm stops top-down search when it finds
|
---|
11 | a window with WS_CLIPCHILDREN style
|
---|
12 | -> result: dialog window won't update groupbox background
|
---|
13 | as groupbox only draws the border
|
---|
14 | o UpdateWindow: Must use frame window handle even though
|
---|
15 | UpdateWindow only updates the client area.
|
---|
16 | If the frame window has a valid update region and we call
|
---|
17 | WinUpdateWindow for the client window, then no WM_PAINT
|
---|
18 | messages will be sent.
|
---|
19 | o Don't erase background in RedrawWindow (invalidate) when
|
---|
20 | RDW_ERASE flag not set.
|
---|
21 | (gets rid of excessive background redraws (flickering) for
|
---|
22 | progress windows in some installers)
|
---|
23 | o Fixed ScrollWindow bug
|
---|
24 | o WM_SHOWWINDOW sent twice
|
---|
25 | o Mark window's visible region as changed when client receives
|
---|
26 | WM_SIZE (PM). BeginPaint sends a WM_ERASEBKGND when this
|
---|
27 | flag is set (regardless of erase flag set by RedrawWindow)
|
---|
28 |
|
---|
29 | 2001-05-10: Shingo Tsuda <sofiya@din.or.jp>
|
---|
30 | - GDI32: o Rop conversion for DIB Section blits
|
---|
31 | o Support for negative height (origin top left) in
|
---|
32 | SetDIBitsToDevice
|
---|
33 |
|
---|
34 | 2001-05-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
35 | - GDI32: o includeBottomRightPoint bugfix; if left == right or top == bottom
|
---|
36 | then the rectangle isn't empty. (include/include input)
|
---|
37 | (fixes e.g. missing erase background when slowly moving window
|
---|
38 | over Odin window (full window dragging enabled))
|
---|
39 |
|
---|
40 | 2001-05-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
41 | - src/ws2help, bin/debug, bin/release, src/win32k/list,
|
---|
42 | src/win32k/debug:
|
---|
43 | o Removed directories. These were either not needed
|
---|
44 | or unused. I did this now since I was going to
|
---|
45 | remove ws2help anyway and there by breaking your tree.
|
---|
46 | - tools/bin/CVSRemoveDeletedDirs.cmd:
|
---|
47 | o Rexx script which removes the above directories
|
---|
48 | from your local tree. Run this from the root of the tree.
|
---|
49 | To physically remove the directories you have to specify
|
---|
50 | REMOVE as argument (no dash or slash!).
|
---|
51 |
|
---|
52 | 2001-05-08: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
---|
53 | - src/makefile:
|
---|
54 | o Ignore WS2HELP for the moment.
|
---|
55 | (Never add empty subdirs to /src without making
|
---|
56 | /src/makefile ignore it!)
|
---|
57 |
|
---|
58 | 2001-05-07: Patrick Haller <patrick.haller@innotek.de>
|
---|
59 | - WS2_32: o created skeleton and added forwarders to WSOCK32
|
---|
60 | - KERNEL32: o CreateProcess error handling corrected, if
|
---|
61 | O32_CreateProcess fails with specific reason
|
---|
62 |
|
---|
63 | 2001-05-04: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
---|
64 | - SHELL32: o Update for SHFileOperationA (FO_MOVE)
|
---|
65 |
|
---|
66 | 2001-05-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
---|
67 | - USER32: o FrameTrackFrame bugfix for moving child windows
|
---|
68 |
|
---|
69 | 2000-05-03: Yuri Dario <mc6530@mclink.it>
|
---|
70 | - USER32: o SendNCCalcSize call bugfix (client rectangle parameter)
|
---|
71 | o Fix for groupbox WM_SETFONT handler. Must erase top part
|
---|
72 | if font is changed.
|
---|
73 | - OLEAUT32: o Fail for TLBMAGIC2 typelib type.
|
---|
74 |
|
---|