source: trunk/changelog@ 5731

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

* empty log message *

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