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