source: trunk/changelog@ 2450

Last change on this file since 2450 was 2450, checked in by sandervl, 26 years ago

* empty log message *

File size: 12.3 KB
Line 
1 /* $Id: changelog,v 1.651 2000-01-15 16:37:35 sandervl Exp $ */
2
3 2000-01-15: Sander van Leeuwen <sandervl@xs4all.nl>
4 - USER32\NEW: Fixed scroll repaints (never use GetMessage with window
5 handle as that can prevent WM_PAINTs from being dispatched)
6 (may need reworking of Get/PeekMessage instead)
7 ScrollWindow changes
8 Removed frame drawing 'bugfix'.
9 - KERNEL32: Check for null pointers in lstrcmpA
10
11 2000-01-15: Christoph Bratschi <cbratschi@datacomm.ch>
12 - USER32/NEW: cache menu and caption drawing
13 changed minimize button position
14 don't redraw system menu icon in menu.cpp
15 hilighted menubar items don't have an edge in Win9x
16 don't open system menu on mouseover if menubar is used and vice versa
17 show sysmenu on WM_NCRBUTTONUP with HTCAPTION set (todo: position)
18 use WIN32_STDCLASS2 for windows with CS_SAVEBITS class style
19
20 2000-01-14: Christoph Bratschi <cbratschi@datacomm.ch>
21 - USER32/NEW: added caption clipping for faster window text updates
22
23 2000-01-14: Sander van Leeuwen <sandervl@xs4all.nl>
24 - USER32\NEW: Fixed min/max bug for mdi child windows
25 Fixed DrawMenuBar (invalidate frame rectangle in
26 FrameUpdateClient if client rectangle wasn't changed)
27 Fixed bugs in MsgFormatFrame & SendNCCalcSize
28 Fixed WM_WINDOWPOSCHANGED translation for frame window (not done yet)
29 (Winamp works now)
30 Removed code that's no longer used (subclassed OS/2 frame
31 controls & OS/2 scrollbar functions etc)
32
33 2000-01-13: Sander van Leeuwen <sandervl@xs4all.nl>
34 - USER32\NEW: WM_ACTIVATEAPP should be sent when another process' window
35 is activated or deactivated
36 Send correct thread id for non-Odin windows in WM_ACTIVATEAPP
37 Set window handle of non-Odin window to window desktop in WM_ACTIVATE
38 Return window desktop handle for window handle returned by
39 SetActiveWindow if window is non-Odin.
40 Fixed activation of windows. (send WM_ACTIVATE when receiving
41 a WM_WINDOWPOSCHANGED message in pmframe.cpp)
42 Fixed DrawFrame; bottom & right frame borders now drawn correctly
43 Fixed scrollbar positioning (style.exe)
44 Fixed CS_OWNDC for GetDCEx (DCX_WINDOW); don't use a window
45 DC to save/restore a window's own dc.
46 Fixed client rectangle problems. Client rectangles
47 are always in frame coordinates; window rectangles in
48 screen coordinates. Whenever necessary (i.e WM_MOVE)
49 client coordinates are converted to coordinates relative
50 to it's parent client window.
51 Changed WM_MOVE -> client coordinates relative to parent origin
52 if child; otherwise relative to screen origin. (needs testing)
53 (WM_NCCALCSIZE needs to be done as well)
54 - COMCTL32: Version resource version nrs changed (based on NT 4 SP3)
55 - KERNEL32: Added DisableLogging & EnableLogging functions to
56 disable logging in parts of code. Logging will only be
57 done if the logcount is bigger than 0.
58<<<<<<< ChangeLog
59>>>>>>> 1.646
60
61=======
62>>>>>>> 1.648
63
64 2000-01-12: Christoph Bratschi <cbratschi@datacomm.ch>
65 - USER32/NEW: fixed WM_CALCVALIDRECTS
66 activated WM_NCPAINT clipping
67 added improved frame redraw mechanism
68
69 2000-01-12: Sander van Leeuwen <sandervl@xs4all.nl>
70 - USER32\NEW: Changed client rectangle positioning (not done by PM frame
71 handler anymore) -> fixes problems with Shell About dialog
72 and jumping controls when resizing (Winhlp32)
73 Fixed menu tracking for different submenus
74 Fixed delayed repaints of invalidated menu rectangles
75 Ported Wine messagebox code. (for GUI consistency)
76 Fixed bugs in ShowScrollBar. (vert. scrollbar wasn't enabled
77 in notepad)
78 Fixed 'frame' control updates (resizing client window in
79 SetWindowPos for SWP_FRAMECHANGED)
80
81 2000-01-11: Jens Wiessner <wiessnej@rfi.de>
82 - TWAIN_32: Bugfix (removed test code)
83
84 2000-01-11: Christoph Bratschi <cbratschi@datacomm.ch>
85 - USER32/NEW: fixed AdjustWindowRectEx
86
87 2000-01-11: Sander van Leeuwen <sandervl@xs4all.nl>
88 - USER32\NEW: Put nonclient code in win32wbasenonclient.cpp
89 Removed hardcoded dependancy on shell32; load it on-demand
90 Fixed LoadBitmap (OBM_RADIOCHECK was missing from system bitmap list)
91 Fixed wrong return value for OSLibWinGetMsg
92 Workaround for bug in GDI32 FillRect (menu items painted
93 black instead of gray) (menu.cpp, MENU_DrawMenuItem)
94 Applied patch to Wine menu code for RealPlayer
95 Fixed default return value of DefWndProc (0)
96 Fixed SetMenu (menus should be set when a window is no child)
97 Call correct SetMenu function from MsgCreate Win32BaseWindow method
98 Use WIN32_INNERFRAME frame class for top level windows again.
99 (VPBuddy repaint problems were solved by using this class)
100
101 2000-01-10: Sander van Leeuwen <sandervl@xs4all.nl>
102 - USER32: Fixed message translation for WM_TIMER with no window handle or timer proc
103 Bugfix for OSLibWinGetMsg & OSLibWinPeekMsg (wrong return value)
104 - WINMM: Fixed wrong error code for waveOutOpen & waveOutGetDevCaps when
105 there's no audio device
106 - USER32\NEW: Fixed message translation for WM_TIMER with no window handle or timer proc
107 Changed WM_NCHITTEST behaviour. Now sent during WM_MOUSEMOVE
108 or button down/up message translation.
109 Fixed LoadBitmap (only load from user32 if it's a system bitmap)
110 Added WM_NCACTIVATE message generation
111 Bugfix for OSLibWinGetMsg & OSLibWinPeekMsg (wrong return value)
112 Changed GetSystemMenu; added method to Win32BaseWindow class
113 (destroy old menu if present and switch back to default system
114 menu if bRevert = TRUE; needs changes in non-client code)
115
116 2000-01-10: Christoph Bratschi <cbratschi@datacomm.ch>
117 - USER32/NEW: activated menu code
118
119 2000-01-09: Sander van Leeuwen <sandervl@xs4all.nl>
120 - USER32: Added border size for top-level windows in OSLibWinConvertStyle
121 (borders are not drawn correctly)
122 Fixed bug in pmframe WM_WINDOWPOSCHANGED handler (don't update
123 client/window rectangle when size nor position have changed)
124 Fixed out of sync rectWindow. (children don't get notified of
125 parent position change -> rectWindow (in screen coord.) not updated)
126 Fixed LoadBitmap for system bitmaps
127 Fixes for win32 titlebar + added win32 system menu
128 System menu commands now work
129 Fixed repaint problem for win32 titlebar
130 Added Christoph's gradient filled title bars code
131 For (experimental) win32-like windows add this to odin.ini:
132 [CUSTOMIZATION]
133 OS2Look=0
134
135 [COLORS]
136 UseWinColors=1
137
138 2000-01-09: David Raison <djr@lemur.co.uk>
139 - OLEAUT32: Typelib - Updated TKIND_ALIAS handling.
140
141 2000-01-09: Christoph Bratschi <cbratschi@datacomm.ch>
142 - USER32/NEW: implemented scrollbar nc handling
143 windows without menus work now fine
144 implemented gradient filled title bars
145
146 2000-01-08: Sander van Leeuwen <sandervl@xs4all.nl>
147 - USER32: ModifyMenuA bugfix (changing menu ids didn't work)
148 OSLibGetMsg bugfix + WM_QUIT translation fix
149 OSLibGetMenuItemRect fix (y coordinate conversion)
150 Changed WM_NCHITTEST behaviour. Now sent during WM_MOUSEMOVE
151 or button down/up message translation.
152 - OLE32/OLEAUT32/OLESVR32/OLEDLG/OLECLI32:
153 Added Wine-like license that supercedes the main Odin license
154 - CRTDLL: Fixed many register based floating point exports (CRTDLL__CIcos,
155 CRTDLL__CIatan etc etc)
156
157 2000-01-08: Jens Wiessner <wiessnej@rfi.de>
158 - CRTDLL: Compile fix
159
160 2000-01-08: Patrick Haller <phaller@gmx.net>
161 - SHELL32: Update: to WINE level 2000/01/08
162 - KERNEL32: Add: stub for GetDiskFreeSpaceExAW
163
164 2000-01-06: Christoph Bratschi <cbratschi@datacomm.ch>
165 - GDI32: added PatBlt support for negative width/height
166
167 2000-01-06: Sander van Leeuwen <sandervl@xs4all.nl>
168 - ADVAPI32: Implemented StartServiceCtrlDispatcherA/W
169 Faked RegisterServiceCtrlHandlerA/W (TODO)
170 Partly implemented SetServiceBits/SetServiceStatus
171 Improved QueryServiceStatus
172 Call RtlCreateAcl in InitializeAcl
173 - LZ32: Create correct library
174 - CRTDLL: Fixed CRTDLL__wcsnicmp (use Wine version)
175 - VERSION: Fixed VerQueryValue32A and merged with latest Wine sources
176 (991212) (-> fixes errors in RealPlayer)
177 - USER32: GetMenuStringA fix (return length of string if string pointer
178 or size parameter == 0)
179
180 2000-01-05: Jens Wiessner <wiessnej@rfi.de>
181 - TWAIN_32: Update
182
183 2000-01-05: Christoph Bratschi <cbratschi@datacomm.ch>
184 - USER32/NEW: single window works now
185
186 2000-01-05: Sander van Leeuwen <sandervl@xs4all.nl>
187 - KERNEL32/NTDLL: Partially implemented NtOpenThreadToken
188 (should be changed)
189 MS Office 2000 install (first part) almost working.
190 (installs windows installer as system service)
191 - OLEAUT32: Typelib bugfix for MS Office 2k install
192 - odin_ini.txt: Added information about CODEPAGES & TWAIN section
193
194 2000-01-05: David Raison <djr@lemur.co.uk>
195 - OLEAUT32: LHashValOfNameSys(A)
196
197 2000-01-04: Jens Wiessner <wiessnej@rfi.de>
198 - TWAIN_32: Created twain dll for usage with CFM Twain for OS/2.
199
200 2000-01-04: Sander van Leeuwen <sandervl@xs4all.nl>
201 - USER32: InsertMenu bugfix (RealPlayer calls InsertMenu with flag 0 & pos -1)
202 Delete old region in SetWindowRegion
203
204 2000-01-03: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
205 - KERNEL32: Named pipe updates & bugfixes
206
207 2000-01-03: Jens Wiessner <wiessnej@rfi.de>
208 - LZ32/TAPI32: Updated def files to match NT 4 SP6
209 - MSVCRT: Updated def files + MSVCRT40 version info
210 - WINMM: Added Wine's MCI dlls (not compiled as this requires
211 a working MCI subsystem in winmm and a redesign of
212 wave & midi)
213
214 2000-01-03: Sander van Leeuwen <sandervl@xs4all.nl>
215 - LZ32: Cleaned up .def file (don't import directly) & removed
216 debugtools.h
217 - USER32: Fixed PostThreadMessage + bugs in GetMessage
218 - KERNEL32: Set hmq & hab THDB values for newly created
219 threads (hmq not correct now)
220
221 2000-01-02: Przemyslaw Dobrowolski <dobrawka@asua.org.pl>
222 - KERNEL32: Started implementing named pipe apis
223
224 2000-01-02: David Raison <djr@lemur.co.uk>
225 - OLEAUT32: Typelib fixes - Custom Data & Default values.
226 Added private logging to tlib_n.log when reading a TLIB.
227 (Should clarify what is being read & why)
228 Now supports embedded named TLIBS in the format
229 <path>\<libname>\<id> (required for VB6, etc.)
230 Preparatory work to reduce dependance on
231 current file position to enable delaying parsing
232 data until it is requested by user.
233
234 2000-01-02: Sander van Leeuwen <sandervl@xs4all.nl>
235 - USER32: Implemented Set/GetWindowRgn (not activated)
236 - KERNEL32: Fixed Odin zombie processes when there's a trap inside
237 vfprintf during logging.
238 Cleaned up file io procedures in oslibdos.cpp
239
240 2000-01-01: Sander van Leeuwen <sandervl@xs4all.nl>
241 - USER32: Workaround for crash in Lotus Notes when switching to a new
242 view (PM sends WM_WINDOWPOSCHANGED msg after DestroyWindow
243 has been called for a window -> don't dispatch this msg)
244
Note: See TracBrowser for help on using the repository browser.