source: trunk/changelog@ 5820

Last change on this file since 5820 was 5820, checked in by phaller, 24 years ago

Implemented DirectDrawCreateClipper

File size: 12.9 KB
Line 
1/* $Id: changelog,v 1.1452 2001-05-28 17:18:33 phaller Exp $ */
2
3 2001-05-28: Patrick Haller <patrick.haller@innotek.de>
4 - GDI32: o Split GDI32.CPP into ICM.CPP and GDI32.CPP
5 o CreateDC() accepts "display" instead of "DISPLAY"
6 (fixes font-not-found problem in ZD Bench 99)
7 - KERNEL32: o mmap.cpp: slightly accelerated ::findMapByView()
8 o directory.cpp: don't trap in CreateDirectory(NULL, NULL)
9 - DDRAW: o implemented DirectDrawCreateClipper()
10
11 2001-05-27: Sander van Leeuwen <sandervl@xs4all.nl>
12 - COMCTL32: o Listview: merged old LISTVIEW_EnsureVisible
13 (gets rid of excessive repaints)
14 - USER32: o Replaced TabbedTextOutA/W & GetTabbedTextExtentA/W with
15 Wine version. GPI doesn't support strings > 512 characters.
16 - GDI32: o Commented out InternalTabbedTextOutA/W & InternalGetTabbedTextExtentA/W
17
18 2001-05-26: Sander van Leeuwen <sandervl@xs4all.nl>
19 - COMCTL32: o Datetime control resync with Wine (get/setrange added)
20
21 2001-05-25: Sander van Leeuwen <sandervl@xs4all.nl>
22 - Odin.ini: o Removed MS Shell Dlg font mapping
23 - GDI32: o Synchronize DIB Section after SelectPalette call (if selected in DC)
24 (fixes wrong colors for some bitmaps)
25 o Update bitmap and synchronize DIB Section in SetDIBits
26 o Update color table during DIB sync too
27 - USER32: o Dialog control x & y coordinates in dialog template are signed
28 words. (fixes dialog controls with negative offset)
29 o Rewrote Post(Thread)/SendMessage; filtering of posted/sent
30 messages (by app) is now possible with Peek/GetMessage.
31 o PeekMessage fix; got rid of double removal for untranslated
32 messages
33
34 2001-05-24: Sander van Leeuwen <sandervl@xs4all.nl>
35 - GDI32: o Commented out recent changes (color conversion) in
36 SetDIBitsToDevice. Breaks startup bitmap of Acrobat Reader 4
37 o GetTextExtentPointA; call WGSS instead.
38 Better result (strings not clipped).
39 - KERNEL32: o OpenFile fix for OF_REOPEN flag (crashes when looking up
40 handle)
41 - IPHLPAPI o Added stub dll
42
43 2001-05-23: Sander van Leeuwen <sandervl@xs4all.nl>
44 - USER32: o RedrawWindow with desktop window handle no longer returns
45 an error.
46 (fixes RealPlayer Auto Size window)
47 - Odin.ini o Added font mapping for MS Shell Dlg to WarpSans
48 (gets rid of ugly fonts (in dialogs) which also have the wrong
49 size (text clipping))
50 - KERNEL32: o CreateFile for partitions; handle lookup fails if
51 OS/2 handle is set to -1 (happens if disk not inserted)
52 -> set to 0 instead
53
54 2001-05-22: Sander van Leeuwen <sandervl@xs4all.nl>
55 - COMCTL32: o Partial merge of listview control with latest Wine
56 o Listview: Send WM_MEASUREITEM for controls with
57 LVS_OWNERDRAWFIXED style.
58 (TODO: sets size for all items only)
59 (fixes wrong item size for VirtualPC main window)
60 - USER32: o Fixed minimizing & restoring of top-level windows
61 - KERNEL32: o Check name before adding dependency for module in
62 order to avoid circular dependencies (WNETAP32 (== NETAPI32)
63 imports from NETAPI32)
64 (fixes crash at exit in VirtualPC)
65
66 2001-05-20: Sander van Leeuwen <sandervl@xs4all.nl>
67 - GDI32: o Fixed LPtoDP/DPtoLP again.
68 - USER32: o Paint menu item first before destroying it
69 (prevents menu control from painting selected item on
70 desktop)
71 o Don't show or hide scrollbar in SetScrollInfo if
72 scroll parameters didn't change.
73 (fixes loop in VirtualPC settings dialog)
74
75 2001-05-20: Dietrich Teickner <Dietrich_Teickner@t-online.de>
76 - KERNEL32: o LOCALE_IFIRSTDAYOFWEEK fixes (Get/SetLocaleInfo)
77
78 2001-05-19: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
79 - win32k: o Added improvements from Rafal, better validation of the
80 paths which are found. Might cause some warnings for
81 some of you, but just read and ignore them.
82 Run configure.cmd (one of them)!
83
84 2001-05-19: Sander van Leeuwen <sandervl@xs4all.nl>
85 - GDI32: o LPtoDP/DPtoLP: check input because GpiConvert doesn't like
86 illegal values (TODO: check what NT does)
87 (fixes huge buttons in VirtualPC dialog (font with wrong
88 height created))
89 - INCLUDE\odinwrap.h:
90 o ODINFUNCTIONNODBG & ODINPROCEDURENODBG should still save
91 and restore FS!!!
92 (FS corruption in release build; mainly affects wsock32)
93 - WS2_32: o Added more exports
94 - KERNEL32: o Export TryEnterCriticalSection
95 o InterlockedCompareExchange bugfix; should not always return
96 old destination; return whatever cmpxchg puts in eax
97 - SHLWAPI: o Export SHSetValueW
98 o Ordinal export 342 is InterlockedCompareExchange implementation
99 Takes 3 parameters, not 4. (Wine bug)
100 o Ordinal export 151 takes 3 parameters, not zero.
101 o Implemented SHLWAPI_151 (case sensitive string compare
102 with length; ascii version of SHLWAPI_152)
103 o Implemented SHLWAPI_153 (case insensitive string compare
104 with length (ascii))
105 o Added SHLWAPI_154 (case insensitive string compare with
106 length (unicode))
107 - USER32: o Added TrackMouseEvent, GetGUIThreadInfo & SendInput stubs
108 - ADVAPI32: o Added undocumented SystemFunctionXXX functions (stubs)
109 o Set lasterror in EnumServicesStatusA/W stubs
110 - GDI32: o GetTextExtentPointA now handles strings larger than 512
111 characters.
112
113 2001-05-19: Dietrich Teickner <Dietrich_Teickner@t-online.de>
114 - KERNEL32: o LOCALE_IFIRSTDAYOFWEEK fix (GetLocaleInfo)
115
116 2001-05-18: Sander van Leeuwen <sandervl@xs4all.nl>
117 - KERNEL32: o Fixed FS corruption in LCMapStringA/W
118 o ole2nls: resync with latest Wine sources
119
120 2001-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
121 - USER32: o InvalidateRect & InvalidateRgn must call RedrawWindow
122 with RDW_ALLCHILDREN flag.
123 (RealPlayer 8 install dialog doesn't have WS_CLIPCHILDREN
124 style -> InvalidateRect overwrites child windows (buttons))
125
126 2001-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
127 - USER32: o Destroy menu windows when they are no longer used.
128 (fixes activation problems with dialogs created after
129 selecting a menu item)
130 (TODO: sync with latest wine menu control sourcecode)
131 o clientHeight bugfix (fixes crash in Solitaire)
132 o Check if another app changed mouse cursor (Get/SetCursor)
133 (previously mouse cursor did not change back if another
134 app modified it)
135
136 2001-05-16: Sander van Leeuwen <sandervl@xs4all.nl>
137 - USER32: o WM_SETREDRAW fix; must call WinEnableWindowUpdate for
138 both client and frame window.
139 (winhlp32 buttons are now visible again)
140
141 2001-05-15: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
142 - Tools\bin:o Synced with other projects using the same tools.
143
144 2001-05-15: Sander van Leeuwen <sandervl@xs4all.nl>
145 - USER32: o BeginPaint must return logical points instead of device points.
146 (not the same if e.g. app changes page viewport)
147 (fixes scaling in Opera)
148 o SetFocus fix; manual activation of windows; PM sometimes
149 changes the Z-order of the window being activated.
150 Also call WH_CBT hook handler (if present)
151 (fixes hotlist window in Opera)
152 - KERNEL32: o OpenFile: check if filename ptr is NULL, return ERROR_INVALID_NAME
153 if true. (verified in NT4, SP6)
154
155 2001-05-15: Dietrich Teickner <Dietrich_Teickner@t-online.de>
156 - KERNEL32: o Added LOCALE_IFIRSTDAYOFWEEK case for GetLocaleInfoW
157 - COMCTL32: o Commented out TRACE call in DATETIME_ParentNotify.
158 Wrong assumption about lParam as it's not always a pointer
159 (WM_CREATE WM_PARENTNOTIFY lParam == hwnd -> crash)
160
161 2001-05-13: Dietrich Teickner <Dietrich_Teickner@t-online.de>
162 - COMCTL32: o Fixed wrong return values for datetime control
163 (DTM_GETSYSTEMTIME & DTM_SETSYSTEMTIME)
164
165 2001-05-11: Sander van Leeuwen <sandervl@xs4all.nl>
166 - USER32: o Rewrote window handling. Back to using frame and client windows
167 for each win32 window.
168 (fixes visible region problems with e.g. Opera)
169 Frame windows never have the WS_CLIPCHILDREN style; this caused
170 the transparency problems reported earlier when using this method.
171 E.g.: Dialog parent, groupbox; invalidate part of groupbox ->
172 painting algorithm stops top-down search when it finds
173 a window with WS_CLIPCHILDREN style
174 -> result: dialog window won't update groupbox background
175 as groupbox only draws the border
176 o UpdateWindow: Must use frame window handle even though
177 UpdateWindow only updates the client area.
178 If the frame window has a valid update region and we call
179 WinUpdateWindow for the client window, then no WM_PAINT
180 messages will be sent.
181 o Don't erase background in RedrawWindow (invalidate) when
182 RDW_ERASE flag not set.
183 (gets rid of excessive background redraws (flickering) for
184 progress windows in some installers)
185 o Fixed ScrollWindow bug
186 o WM_SHOWWINDOW sent twice
187 o Mark window's visible region as changed when client receives
188 WM_SIZE (PM). BeginPaint sends a WM_ERASEBKGND when this
189 flag is set (regardless of erase flag set by RedrawWindow)
190 o ScrollDC fix (window handle transation)
191 o ScrollDC and ScrollWindowEx bugfix (setting update region)
192 (fixes scrolling in MS Word 97)
193 - GDI32: o SetDIBitsToDevice: RGB 555 is the default for 16 bits bitmaps
194 (fixes pictures in (some) documents for Word 97)
195 TODO: Probably need to check bitfields and convert for some
196 other blit functions
197
198 2001-05-10: Shingo Tsuda <sofiya@din.or.jp>
199 - GDI32: o Rop conversion for DIB Section blits
200 o Support for negative height (origin top left) in
201 SetDIBitsToDevice + StretchDIBits
202
203 2001-05-10: Sander van Leeuwen <sandervl@xs4all.nl>
204 - GDI32: o includeBottomRightPoint bugfix; if left == right or top == bottom
205 then the rectangle isn't empty. (include/include input)
206 (fixes e.g. missing erase background when slowly moving window
207 over Odin window (full window dragging enabled))
208
209 2001-05-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
210 - src/ws2help, bin/debug, bin/release, src/win32k/list,
211 src/win32k/debug:
212 o Removed directories. These were either not needed
213 or unused. I did this now since I was going to
214 remove ws2help anyway and there by breaking your tree.
215 - tools/bin/CVSRemoveDeletedDirs.cmd:
216 o Rexx script which removes the above directories
217 from your local tree. Run this from the root of the tree.
218 To physically remove the directories you have to specify
219 REMOVE as argument (no dash or slash!).
220
221 2001-05-08: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
222 - src/makefile:
223 o Ignore WS2HELP for the moment.
224 (Never add empty subdirs to /src without making
225 /src/makefile ignore it!)
226
227 2001-05-07: Patrick Haller <patrick.haller@innotek.de>
228 - WS2_32: o created skeleton and added forwarders to WSOCK32
229 - KERNEL32: o CreateProcess error handling corrected, if
230 O32_CreateProcess fails with specific reason
231
232 2001-05-04: Dietrich Teickner <Dietrich_Teickner@t-online.de>
233 - SHELL32: o Update for SHFileOperationA (FO_MOVE)
234
235 2001-05-04: Sander van Leeuwen <sandervl@xs4all.nl>
236 - USER32: o FrameTrackFrame bugfix for moving child windows
237
238 2000-05-03: Yuri Dario <mc6530@mclink.it>
239 - USER32: o SendNCCalcSize call bugfix (client rectangle parameter)
240 o Fix for groupbox WM_SETFONT handler. Must erase top part
241 if font is changed.
242 - OLEAUT32: o Fail for TLBMAGIC2 typelib type.
243
Note: See TracBrowser for help on using the repository browser.