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