source: trunk/changelog@ 2438

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

* empty log message *

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