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