| 1 | /* $Id: changelog,v 1.1418 2001-05-17 10:03:38 sandervl Exp $ */
|
|---|
| 2 |
|
|---|
| 3 | 2001-05-17: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 4 | - USER32: o Destroy menu windows when they are no longer used.
|
|---|
| 5 | (fixes activation problems with dialogs created after
|
|---|
| 6 | selecting a menu item)
|
|---|
| 7 | (TODO: sync with latest wine menu control sourcecode)
|
|---|
| 8 | o clientHeight bugfix (fixes crash in Solitaire)
|
|---|
| 9 |
|
|---|
| 10 | 2001-05-16: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 11 | - USER32: o WM_SETREDRAW fix; must call WinEnableWindowUpdate for
|
|---|
| 12 | both client and frame window.
|
|---|
| 13 | (winhlp32 buttons are now visible again)
|
|---|
| 14 |
|
|---|
| 15 | 2001-05-15: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
|---|
| 16 | - Tools\bin:o Synced with other projects using the same tools.
|
|---|
| 17 |
|
|---|
| 18 | 2001-05-15: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 19 | - USER32: o BeginPaint must return logical points instead of device points.
|
|---|
| 20 | (not the same if e.g. app changes page viewport)
|
|---|
| 21 | (fixes scaling in Opera)
|
|---|
| 22 | o SetFocus fix; manual activation of windows; PM sometimes
|
|---|
| 23 | changes the Z-order of the window being activated.
|
|---|
| 24 | Also call WH_CBT hook handler (if present)
|
|---|
| 25 | (fixes hotlist window in Opera)
|
|---|
| 26 | - KERNEL32: o OpenFile: check if filename ptr is NULL, return ERROR_INVALID_NAME
|
|---|
| 27 | if true. (verified in NT4, SP6)
|
|---|
| 28 |
|
|---|
| 29 | 2001-05-15: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
|---|
| 30 | - KERNEL32: o Added LOCALE_IFIRSTDAYOFWEEK case for GetLocaleInfoW
|
|---|
| 31 | - COMCTL32: o Commented out TRACE call in DATETIME_ParentNotify.
|
|---|
| 32 | Wrong assumption about lParam as it's not always a pointer
|
|---|
| 33 | (WM_CREATE WM_PARENTNOTIFY lParam == hwnd -> crash)
|
|---|
| 34 |
|
|---|
| 35 | 2001-05-13: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
|---|
| 36 | - COMCTL32: o Fixed wrong return values for datetime control
|
|---|
| 37 | (DTM_GETSYSTEMTIME & DTM_SETSYSTEMTIME)
|
|---|
| 38 |
|
|---|
| 39 | 2001-05-11: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 40 | - USER32: o Rewrote window handling. Back to using frame and client windows
|
|---|
| 41 | for each win32 window.
|
|---|
| 42 | (fixes visible region problems with e.g. Opera)
|
|---|
| 43 | Frame windows never have the WS_CLIPCHILDREN style; this caused
|
|---|
| 44 | the transparency problems reported earlier when using this method.
|
|---|
| 45 | E.g.: Dialog parent, groupbox; invalidate part of groupbox ->
|
|---|
| 46 | painting algorithm stops top-down search when it finds
|
|---|
| 47 | a window with WS_CLIPCHILDREN style
|
|---|
| 48 | -> result: dialog window won't update groupbox background
|
|---|
| 49 | as groupbox only draws the border
|
|---|
| 50 | o UpdateWindow: Must use frame window handle even though
|
|---|
| 51 | UpdateWindow only updates the client area.
|
|---|
| 52 | If the frame window has a valid update region and we call
|
|---|
| 53 | WinUpdateWindow for the client window, then no WM_PAINT
|
|---|
| 54 | messages will be sent.
|
|---|
| 55 | o Don't erase background in RedrawWindow (invalidate) when
|
|---|
| 56 | RDW_ERASE flag not set.
|
|---|
| 57 | (gets rid of excessive background redraws (flickering) for
|
|---|
| 58 | progress windows in some installers)
|
|---|
| 59 | o Fixed ScrollWindow bug
|
|---|
| 60 | o WM_SHOWWINDOW sent twice
|
|---|
| 61 | o Mark window's visible region as changed when client receives
|
|---|
| 62 | WM_SIZE (PM). BeginPaint sends a WM_ERASEBKGND when this
|
|---|
| 63 | flag is set (regardless of erase flag set by RedrawWindow)
|
|---|
| 64 | o ScrollDC fix (window handle transation)
|
|---|
| 65 | o ScrollDC and ScrollWindowEx bugfix (setting update region)
|
|---|
| 66 | (fixes scrolling in MS Word 97)
|
|---|
| 67 | - GDI32: o SetDIBitsToDevice: RGB 555 is the default for 16 bits bitmaps
|
|---|
| 68 | (fixes pictures in (some) documents for Word 97)
|
|---|
| 69 | TODO: Probably need to check bitfields and convert for some
|
|---|
| 70 | other blit functions
|
|---|
| 71 |
|
|---|
| 72 | 2001-05-10: Shingo Tsuda <sofiya@din.or.jp>
|
|---|
| 73 | - GDI32: o Rop conversion for DIB Section blits
|
|---|
| 74 | o Support for negative height (origin top left) in
|
|---|
| 75 | SetDIBitsToDevice + StretchDIBits
|
|---|
| 76 |
|
|---|
| 77 | 2001-05-10: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 78 | - GDI32: o includeBottomRightPoint bugfix; if left == right or top == bottom
|
|---|
| 79 | then the rectangle isn't empty. (include/include input)
|
|---|
| 80 | (fixes e.g. missing erase background when slowly moving window
|
|---|
| 81 | over Odin window (full window dragging enabled))
|
|---|
| 82 |
|
|---|
| 83 | 2001-05-09: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
|---|
| 84 | - src/ws2help, bin/debug, bin/release, src/win32k/list,
|
|---|
| 85 | src/win32k/debug:
|
|---|
| 86 | o Removed directories. These were either not needed
|
|---|
| 87 | or unused. I did this now since I was going to
|
|---|
| 88 | remove ws2help anyway and there by breaking your tree.
|
|---|
| 89 | - tools/bin/CVSRemoveDeletedDirs.cmd:
|
|---|
| 90 | o Rexx script which removes the above directories
|
|---|
| 91 | from your local tree. Run this from the root of the tree.
|
|---|
| 92 | To physically remove the directories you have to specify
|
|---|
| 93 | REMOVE as argument (no dash or slash!).
|
|---|
| 94 |
|
|---|
| 95 | 2001-05-08: knut st. osmundsen <knut.stange.osmundsen@mynd.no>
|
|---|
| 96 | - src/makefile:
|
|---|
| 97 | o Ignore WS2HELP for the moment.
|
|---|
| 98 | (Never add empty subdirs to /src without making
|
|---|
| 99 | /src/makefile ignore it!)
|
|---|
| 100 |
|
|---|
| 101 | 2001-05-07: Patrick Haller <patrick.haller@innotek.de>
|
|---|
| 102 | - WS2_32: o created skeleton and added forwarders to WSOCK32
|
|---|
| 103 | - KERNEL32: o CreateProcess error handling corrected, if
|
|---|
| 104 | O32_CreateProcess fails with specific reason
|
|---|
| 105 |
|
|---|
| 106 | 2001-05-04: Dietrich Teickner <Dietrich_Teickner@t-online.de>
|
|---|
| 107 | - SHELL32: o Update for SHFileOperationA (FO_MOVE)
|
|---|
| 108 |
|
|---|
| 109 | 2001-05-04: Sander van Leeuwen <sandervl@xs4all.nl>
|
|---|
| 110 | - USER32: o FrameTrackFrame bugfix for moving child windows
|
|---|
| 111 |
|
|---|
| 112 | 2000-05-03: Yuri Dario <mc6530@mclink.it>
|
|---|
| 113 | - USER32: o SendNCCalcSize call bugfix (client rectangle parameter)
|
|---|
| 114 | o Fix for groupbox WM_SETFONT handler. Must erase top part
|
|---|
| 115 | if font is changed.
|
|---|
| 116 | - OLEAUT32: o Fail for TLBMAGIC2 typelib type.
|
|---|
| 117 |
|
|---|