source: trunk/changelog@ 5711

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

* empty log message *

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