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