source: trunk/changelog@ 5708

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

* empty log message *

File size: 5.1 KB
Line 
1/* $Id: changelog,v 1.1412 2001-05-15 10:33:41 sandervl Exp $ */
2
3 2001-05-15: Sander van Leeuwen <sandervl@xs4all.nl>
4 - USER32: o BeginPaint must return logical points instead of device points.
5 (not the same if e.g. app changes page viewport)
6 (fixes scaling in Opera)
7
8 2001-05-15: Dietrich Teickner <Dietrich_Teickner@t-online.de>
9 - KERNEL32: o Added LOCALE_IFIRSTDAYOFWEEK case for GetLocaleInfoW
10 - COMCTL32: o Commented out TRACE call in DATETIME_ParentNotify.
11 Wrong assumption about lParam as it's not always a pointer
12 (WM_CREATE WM_PARENTNOTIFY lParam == hwnd -> crash)
13
14 2001-05-13: Dietrich Teickner <Dietrich_Teickner@t-online.de>
15 - COMCTL32: o Fixed wrong return values for datetime control
16 (DTM_GETSYSTEMTIME & DTM_SETSYSTEMTIME)
17
18 2001-05-11: Sander van Leeuwen <sandervl@xs4all.nl>
19 - USER32: o Rewrote window handling. Back to using frame and client windows
20 for each win32 window.
21 (fixes visible region problems with e.g. Opera)
22 Frame windows never have the WS_CLIPCHILDREN style; this caused
23 the transparency problems reported earlier when using this method.
24 E.g.: Dialog parent, groupbox; invalidate part of groupbox ->
25 painting algorithm stops top-down search when it finds
26 a window with WS_CLIPCHILDREN style
27 -> result: dialog window won't update groupbox background
28 as groupbox only draws the border
29 o UpdateWindow: Must use frame window handle even though
30 UpdateWindow only updates the client area.
31 If the frame window has a valid update region and we call
32 WinUpdateWindow for the client window, then no WM_PAINT
33 messages will be sent.
34 o Don't erase background in RedrawWindow (invalidate) when
35 RDW_ERASE flag not set.
36 (gets rid of excessive background redraws (flickering) for
37 progress windows in some installers)
38 o Fixed ScrollWindow bug
39 o WM_SHOWWINDOW sent twice
40 o Mark window's visible region as changed when client receives
41 WM_SIZE (PM). BeginPaint sends a WM_ERASEBKGND when this
42 flag is set (regardless of erase flag set by RedrawWindow)
43 o ScrollDC fix (window handle transation)
44 o ScrollDC and ScrollWindowEx bugfix (setting update region)
45 (fixes scrolling in MS Word 97)
46 - GDI32: o SetDIBitsToDevice: RGB 555 is the default for 16 bits bitmaps
47 (fixes pictures in (some) documents for Word 97)
48 TODO: Probably need to check bitfields and convert for some
49 other blit functions
50
51 2001-05-10: Shingo Tsuda <sofiya@din.or.jp>
52 - GDI32: o Rop conversion for DIB Section blits
53 o Support for negative height (origin top left) in
54 SetDIBitsToDevice + StretchDIBits
55
56 2001-05-10: Sander van Leeuwen <sandervl@xs4all.nl>
57 - GDI32: o includeBottomRightPoint bugfix; if left == right or top == bottom
58 then the rectangle isn't empty. (include/include input)
59 (fixes e.g. missing erase background when slowly moving window
60 over Odin window (full window dragging enabled))
61
62 2001-05-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
63 - src/ws2help, bin/debug, bin/release, src/win32k/list,
64 src/win32k/debug:
65 o Removed directories. These were either not needed
66 or unused. I did this now since I was going to
67 remove ws2help anyway and there by breaking your tree.
68 - tools/bin/CVSRemoveDeletedDirs.cmd:
69 o Rexx script which removes the above directories
70 from your local tree. Run this from the root of the tree.
71 To physically remove the directories you have to specify
72 REMOVE as argument (no dash or slash!).
73
74 2001-05-08: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
75 - src/makefile:
76 o Ignore WS2HELP for the moment.
77 (Never add empty subdirs to /src without making
78 /src/makefile ignore it!)
79
80 2001-05-07: Patrick Haller <patrick.haller@innotek.de>
81 - WS2_32: o created skeleton and added forwarders to WSOCK32
82 - KERNEL32: o CreateProcess error handling corrected, if
83 O32_CreateProcess fails with specific reason
84
85 2001-05-04: Dietrich Teickner <Dietrich_Teickner@t-online.de>
86 - SHELL32: o Update for SHFileOperationA (FO_MOVE)
87
88 2001-05-04: Sander van Leeuwen <sandervl@xs4all.nl>
89 - USER32: o FrameTrackFrame bugfix for moving child windows
90
91 2000-05-03: Yuri Dario <mc6530@mclink.it>
92 - USER32: o SendNCCalcSize call bugfix (client rectangle parameter)
93 o Fix for groupbox WM_SETFONT handler. Must erase top part
94 if font is changed.
95 - OLEAUT32: o Fail for TLBMAGIC2 typelib type.
96
Note: See TracBrowser for help on using the repository browser.