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
RevLine 
[5820]1/* $Id: changelog,v 1.1452 2001-05-28 17:18:33 phaller Exp $ */
[5313]2
[5814]3 2001-05-28: Patrick Haller <patrick.haller@innotek.de>
4 - GDI32: o Split GDI32.CPP into ICM.CPP and GDI32.CPP
[5820]5 o CreateDC() accepts "display" instead of "DISPLAY"
6 (fixes font-not-found problem in ZD Bench 99)
[5815]7 - KERNEL32: o mmap.cpp: slightly accelerated ::findMapByView()
[5820]8 o directory.cpp: don't trap in CreateDirectory(NULL, NULL)
9 - DDRAW: o implemented DirectDrawCreateClipper()
[5814]10
[5809]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
[5807]18 2001-05-26: Sander van Leeuwen <sandervl@xs4all.nl>
19 - COMCTL32: o Datetime control resync with Wine (get/setrange added)
20
[5800]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
[5801]27 - USER32: o Dialog control x & y coordinates in dialog template are signed
[5803]28 words. (fixes dialog controls with negative offset)
[5804]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
[5800]33
[5789]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
[5794]37 o GetTextExtentPointA; call WGSS instead.
38 Better result (strings not clipped).
[5789]39 - KERNEL32: o OpenFile fix for OF_REOPEN flag (crashes when looking up
40 handle)
[5793]41 - IPHLPAPI o Added stub dll
[5789]42
[5783]43 2001-05-23: Sander van Leeuwen <sandervl@xs4all.nl>
44 - USER32: o RedrawWindow with desktop window handle no longer returns
45 an error.
[5785]46 (fixes RealPlayer Auto Size window)
47 - Odin.ini o Added font mapping for MS Shell Dlg to WarpSans
[5787]48 (gets rid of ugly fonts (in dialogs) which also have the wrong
[5785]49 size (text clipping))
[5787]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
[5783]53
[5775]54 2001-05-22: Sander van Leeuwen <sandervl@xs4all.nl>
55 - COMCTL32: o Partial merge of listview control with latest Wine
[5779]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)
[5775]60 - USER32: o Fixed minimizing & restoring of top-level windows
[5781]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)
[5775]65
[5767]66 2001-05-20: Sander van Leeuwen <sandervl@xs4all.nl>
[5770]67 - GDI32: o Fixed LPtoDP/DPtoLP again.
[5767]68 - USER32: o Paint menu item first before destroying it
69 (prevents menu control from painting selected item on
70 desktop)
[5770]71 o Don't show or hide scrollbar in SetScrollInfo if
72 scroll parameters didn't change.
73 (fixes loop in VirtualPC settings dialog)
[5767]74
[5765]75 2001-05-20: Dietrich Teickner <Dietrich_Teickner@t-online.de>
76 - KERNEL32: o LOCALE_IFIRSTDAYOFWEEK fixes (Get/SetLocaleInfo)
77
[5763]78 2001-05-19: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
[5765]79 - win32k: o Added improvements from Rafal, better validation of the
[5763]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
[5741]84 2001-05-19: Sander van Leeuwen <sandervl@xs4all.nl>
[5763]85 - GDI32: o LPtoDP/DPtoLP: check input because GpiConvert doesn't like
[5761]86 illegal values (TODO: check what NT does)
87 (fixes huge buttons in VirtualPC dialog (font with wrong
88 height created))
[5758]89 - INCLUDE\odinwrap.h:
90 o ODINFUNCTIONNODBG & ODINPROCEDURENODBG should still save
91 and restore FS!!!
92 (FS corruption in release build; mainly affects wsock32)
[5741]93 - WS2_32: o Added more exports
[5744]94 - KERNEL32: o Export TryEnterCriticalSection
[5747]95 o InterlockedCompareExchange bugfix; should not always return
96 old destination; return whatever cmpxchg puts in eax
[5744]97 - SHLWAPI: o Export SHSetValueW
[5747]98 o Ordinal export 342 is InterlockedCompareExchange implementation
99 Takes 3 parameters, not 4. (Wine bug)
[5752]100 o Ordinal export 151 takes 3 parameters, not zero.
[5763]101 o Implemented SHLWAPI_151 (case sensitive string compare
[5752]102 with length; ascii version of SHLWAPI_152)
[5763]103 o Implemented SHLWAPI_153 (case insensitive string compare
[5752]104 with length (ascii))
[5763]105 o Added SHLWAPI_154 (case insensitive string compare with
[5752]106 length (unicode))
[5747]107 - USER32: o Added TrackMouseEvent, GetGUIThreadInfo & SendInput stubs
108 - ADVAPI32: o Added undocumented SystemFunctionXXX functions (stubs)
109 o Set lasterror in EnumServicesStatusA/W stubs
[5756]110 - GDI32: o GetTextExtentPointA now handles strings larger than 512
111 characters.
[5741]112
[5739]113 2001-05-19: Dietrich Teickner <Dietrich_Teickner@t-online.de>
114 - KERNEL32: o LOCALE_IFIRSTDAYOFWEEK fix (GetLocaleInfo)
115
[5735]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
[5724]120 2001-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
[5733]121 - USER32: o InvalidateRect & InvalidateRgn must call RedrawWindow
[5763]122 with RDW_ALLCHILDREN flag.
[5733]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>
[5724]127 - USER32: o Destroy menu windows when they are no longer used.
[5763]128 (fixes activation problems with dialogs created after
[5724]129 selecting a menu item)
130 (TODO: sync with latest wine menu control sourcecode)
[5726]131 o clientHeight bugfix (fixes crash in Solitaire)
[5730]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)
[5724]135
[5720]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
[5719]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
[5708]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)
[5711]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)
[5714]152 - KERNEL32: o OpenFile: check if filename ptr is NULL, return ERROR_INVALID_NAME
153 if true. (verified in NT4, SP6)
[5708]154
[5705]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
[5700]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
[5683]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.
[5719]171 E.g.: Dialog parent, groupbox; invalidate part of groupbox ->
172 painting algorithm stops top-down search when it finds
[5683]173 a window with WS_CLIPCHILDREN style
[5719]174 -> result: dialog window won't update groupbox background
[5683]175 as groupbox only draws the border
[5719]176 o UpdateWindow: Must use frame window handle even though
[5683]177 UpdateWindow only updates the client area.
178 If the frame window has a valid update region and we call
[5719]179 WinUpdateWindow for the client window, then no WM_PAINT
[5683]180 messages will be sent.
181 o Don't erase background in RedrawWindow (invalidate) when
[5719]182 RDW_ERASE flag not set.
[5683]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)
[5688]190 o ScrollDC fix (window handle transation)
191 o ScrollDC and ScrollWindowEx bugfix (setting update region)
[5686]192 (fixes scrolling in MS Word 97)
[5688]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
[5683]197
[5679]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
[5691]201 SetDIBitsToDevice + StretchDIBits
[5679]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
[5675]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
[5671]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
[5663]227 2001-05-07: Patrick Haller <patrick.haller@innotek.de>
[5668]228 - WS2_32: o created skeleton and added forwarders to WSOCK32
[5666]229 - KERNEL32: o CreateProcess error handling corrected, if
230 O32_CreateProcess fails with specific reason
[5663]231
[5656]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
[5645]238 2000-05-03: Yuri Dario <mc6530@mclink.it>
239 - USER32: o SendNCCalcSize call bugfix (client rectangle parameter)
[5649]240 o Fix for groupbox WM_SETFONT handler. Must erase top part
241 if font is changed.
[5652]242 - OLEAUT32: o Fail for TLBMAGIC2 typelib type.
[5645]243
Note: See TracBrowser for help on using the repository browser.