source: trunk/changelog@ 2443

Last change on this file since 2443 was 2443, checked in by cbratschi, 26 years ago

* empty log message *

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