source: trunk/changelog@ 5693

Last change on this file since 5693 was 5693, checked in by sandervl, 24 years ago

* empty log message *

File size: 4.6 KB
Line 
1/* $Id: changelog,v 1.1408 2001-05-11 19:02:55 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 o ScrollDC fix (window handle transation)
29 o ScrollDC and ScrollWindowEx bugfix (setting update region)
30 (fixes scrolling in MS Word 97)
31 o Don't call frame handler for WM_ADJUSTFRAMEPOS
32 It changes the Z-order of the window when SetFocus is called.
33 (fixes hotlist Opera window painting + activation problems
34 with some (a lot of?) apps)
35 - GDI32: o SetDIBitsToDevice: RGB 555 is the default for 16 bits bitmaps
36 (fixes pictures in (some) documents for Word 97)
37 TODO: Probably need to check bitfields and convert for some
38 other blit functions
39
40 2001-05-10: Shingo Tsuda <sofiya@din.or.jp>
41 - GDI32: o Rop conversion for DIB Section blits
42 o Support for negative height (origin top left) in
43 SetDIBitsToDevice + StretchDIBits
44
45 2001-05-10: Sander van Leeuwen <sandervl@xs4all.nl>
46 - GDI32: o includeBottomRightPoint bugfix; if left == right or top == bottom
47 then the rectangle isn't empty. (include/include input)
48 (fixes e.g. missing erase background when slowly moving window
49 over Odin window (full window dragging enabled))
50
51 2001-05-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
52 - src/ws2help, bin/debug, bin/release, src/win32k/list,
53 src/win32k/debug:
54 o Removed directories. These were either not needed
55 or unused. I did this now since I was going to
56 remove ws2help anyway and there by breaking your tree.
57 - tools/bin/CVSRemoveDeletedDirs.cmd:
58 o Rexx script which removes the above directories
59 from your local tree. Run this from the root of the tree.
60 To physically remove the directories you have to specify
61 REMOVE as argument (no dash or slash!).
62
63 2001-05-08: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
64 - src/makefile:
65 o Ignore WS2HELP for the moment.
66 (Never add empty subdirs to /src without making
67 /src/makefile ignore it!)
68
69 2001-05-07: Patrick Haller <patrick.haller@innotek.de>
70 - WS2_32: o created skeleton and added forwarders to WSOCK32
71 - KERNEL32: o CreateProcess error handling corrected, if
72 O32_CreateProcess fails with specific reason
73
74 2001-05-04: Dietrich Teickner <Dietrich_Teickner@t-online.de>
75 - SHELL32: o Update for SHFileOperationA (FO_MOVE)
76
77 2001-05-04: Sander van Leeuwen <sandervl@xs4all.nl>
78 - USER32: o FrameTrackFrame bugfix for moving child windows
79
80 2000-05-03: Yuri Dario <mc6530@mclink.it>
81 - USER32: o SendNCCalcSize call bugfix (client rectangle parameter)
82 o Fix for groupbox WM_SETFONT handler. Must erase top part
83 if font is changed.
84 - OLEAUT32: o Fail for TLBMAGIC2 typelib type.
85
Note: See TracBrowser for help on using the repository browser.