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