source: trunk/changelog@ 5733

Last change on this file since 5733 was 5733, checked in by sandervl, 25 years ago

* empty log message *

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