mirror of
https://github.com/reactos/wine.git
synced 2025-03-07 04:09:16 +00:00

Sat Dec 23 18:15:59 1995 Alexandre Julliard <julliard@sunsite.unc.edu> * [configure.in] [Makefile.in] [tools/install-sh] New 'install' target installs Wine binary, library and man page. Library is now more logically named libwine.a. Split toolkit/ directory into library (for library code) and libtest (for test programs). * [controls/edit.c] Quick hack to partially support EM_PASSWORD style (avoids displaying your passwords on the screen when testing programs...) * [configure.in] [controls/menu.c] [include/resource.h] [misc/commdlg.c] [misc/ole2nls.c] [misc/shell.c] [windows/msgbox.c] Language is now a run-time option (wine -language xx). * [debugger/dbg.y] Dump some more debugging info on crash. * [misc/profile.c] Only consider ';' as a comment if it's the first non-blank character on the line. * [miscemu/dpmi.c] More debugging info for real-mode callback. * [objects/gdiobj.c] Rewrote EnumObjects() to do the Right Thing. * [resources/sysres*] New directory containing system resources. Fri Dec 22 11:24:39 GMT 1995 John Harvey <john@division.co.uk> * [win32/file.c] [win32/memory.c] Unixware doesn't have MAP_ANON ifdefed out for now. * [misc/dos_fs.c] DOS_GetDosFileName didn't truncate paths starting ./ properly. * [tools/build.c] Produces assembly code that works with the unixware assembler. Wed Dec 20 22:22:29 +0100 1995 Morten Welinder <terra@diku.dk> * [miscemu/instr.c] INSTR_GetOperandAddr: 16-bit addresses should be masked to 16 bits. * [misc/dos_fs.c] DOS_readdir should always return directories, even if they don't match the file name mask. Tue Dec 19 18:00:00 1995 Uwe Bonnes <bon@elektron.ikp.physik.th-darmstadt.de> * [misc/exec.c] Give arguments to winhelp. * [miscemu/int21.c] Implemented Interrupt 21 AX=6C00 EXTENDED OPEN/CREATE. Created function ExtendedOpenCreateFile. Give for some Windows95 interrupts the return value 'not implemented'. Sun Dec 17 16:51:56 EST 1995 Jim Peterson <jspeter@birch.ee.vt.edu> * [include/kernel32.h] [include/windows.h] Moved the typedefs for SYSTEMTIME and LPSYSTEMTIME from include/kernel32.h to include/windows.h and declared the new Win32 API functions Sleep(), GetLocalTime(), and GetSystemTime(). Redefined INFINITE as 0xFFFFFFFF if WINELIB32. * [rc/rc (new file)] Created the shell script 'rc', which should simplify resource compilation. * [win32/environment.c] Kludged around an undefined reference to wine_files. This change should be fixed some time. * [win32/time.c] [if1632/kernel32.spec] Added the functions GetSystemTime(), and Sleep(). * [miscemu/int21.c] Renamed static function GetSystemTime to INT21_GetSystemTime to avoid conflicts with the API function of the same name. * [include/wintypes.h] Added the SPFMT definition for printf statements. * [misc/shell.c] [include/shell.h] Changed ERROR_* defines to SHELL_ERROR_*, as they were conflicting with the ones in include/winerror.h. They should probably use the versions in winerror.h, but I'm not certain, and that can be done later. * [windows/mdi.c] Translated WM_MDIACTIVATE(?,(LOhwnd,HIhwnd)) messages to WM_MDIACTIVATE(HIhwnd,LOhwnd) for WINELIB32. The ? parameter (boolean) was discarded with this translation. Translated handler of WM_MDISETMENU(ref,(loHMENU,hiHMENU)) to handle WM_MDISETMENU(loHMENU, hiHMENU) messages in WINELIB32 (ref assumed false, call DrawMenuBar() if desired). * [*/*] General explicit casts and more rigid typing to remove warnings. * [include/winpos.h] [windows/winpos.c] Changed return type of WINPOS_ChangeActiveWindow to BOOL. * [include/commdlg.h] [misc/commdlg.c] Added prototypes for ChooseColor(), CommDlgExtendedError(), FindText() GetFileTitle(), GetOpenFileName(), GetSaveFileName(), PrintDlg, and ReplaceText(). Renamed the CommDlgExtendError() function to CommDlgExtendedError(). Made GetFileTitle return a short, as per the API definition. * [Makefile.in] Added line to clean and distclean that removes temporaries from the include directory. Sat Dec 16 19:39:14 MET 1995 Steffen Moeller <smoe0024@rz.uni-hildesheim.de> * [controls/edit.c] Almost rewrote EDIT_GetLineMsg. Sat Dec 16 13:51:48 MST 1995 Andrew Taylor <andrew@riscan.com> * [windows/mdi.c] Fixed MDITile() bug that occurs when 0 windows are present or all windows are minimized. Wed Dec 12 23:30:00 1995 Uwe Bonnes <bon@elektron.ikp.physik.th-darmstadt.de> * [misc/profile.c] Try harder to find files, especially in the working directory. Look in $HOME/.wine too and create it there if it isn't found.
316 lines
7.8 KiB
C
316 lines
7.8 KiB
C
/*
|
|
* Scroll windows and DCs
|
|
*
|
|
* Copyright David W. Metcalfe, 1993
|
|
* Alex Korobka 1995
|
|
*
|
|
*
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include "wintypes.h"
|
|
#include "class.h"
|
|
#include "win.h"
|
|
#include "gdi.h"
|
|
#include "sysmetrics.h"
|
|
#include "stddebug.h"
|
|
/* #define DEBUG_SCROLL */
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
extern HRGN DCE_GetVisRgn(HWND, WORD);
|
|
|
|
static int RgnType;
|
|
|
|
|
|
/* -----------------------------------------------------------------------
|
|
* SCROLL_TraceChildren
|
|
*
|
|
* Returns a region invalidated by children, siblings, and/or ansectors
|
|
* in the window rectangle or client rectangle
|
|
*
|
|
* dcx can have DCX_WINDOW, DCX_CLIPCHILDREN, DCX_CLIPSIBLINGS set
|
|
*/
|
|
|
|
HRGN SCROLL_TraceChildren( HWND hScroll, short dx, short dy, WORD dcx)
|
|
{
|
|
WND *wndScroll = WIN_FindWndPtr( hScroll );
|
|
HRGN hRgnWnd;
|
|
HRGN hUpdateRgn,hCombineRgn;
|
|
|
|
if( !wndScroll || ( !dx && !dy) ) return 0;
|
|
|
|
if( dcx & DCX_WINDOW )
|
|
hRgnWnd = CreateRectRgnIndirect(&wndScroll->rectWindow);
|
|
else
|
|
{
|
|
RECT rect;
|
|
|
|
GetClientRect(hScroll,&rect);
|
|
hRgnWnd = CreateRectRgnIndirect(&rect);
|
|
}
|
|
|
|
hUpdateRgn = DCE_GetVisRgn( hScroll, dcx );
|
|
hCombineRgn = CreateRectRgn(0,0,0,0);
|
|
|
|
if( !hUpdateRgn || !hCombineRgn )
|
|
{
|
|
DeleteObject( hUpdateRgn? hUpdateRgn : hCombineRgn);
|
|
DeleteObject(hRgnWnd);
|
|
return 0;
|
|
}
|
|
|
|
OffsetRgn( hUpdateRgn, dx, dy);
|
|
CombineRgn(hCombineRgn, hRgnWnd, hUpdateRgn, RGN_DIFF);
|
|
|
|
DeleteObject(hRgnWnd);
|
|
DeleteObject(hUpdateRgn);
|
|
|
|
return hCombineRgn;
|
|
}
|
|
|
|
|
|
/* ----------------------------------------------------------------------
|
|
* SCROLL_ScrollChildren
|
|
*/
|
|
BOOL SCROLL_ScrollChildren( HWND hScroll, short dx, short dy)
|
|
{
|
|
WND *wndPtr = WIN_FindWndPtr(hScroll);
|
|
HWND hWnd = wndPtr->hwndChild;
|
|
HRGN hUpdateRgn;
|
|
BOOL b = 0;
|
|
|
|
if( !wndPtr || ( !dx && !dy )) return 0;
|
|
|
|
dprintf_scroll(stddeb,"SCROLL_ScrollChildren: hwnd "NPFMT" dx=%i dy=%i\n",hScroll,dx,dy);
|
|
|
|
/* get a region in client rect invalidated by siblings and ansectors */
|
|
hUpdateRgn = SCROLL_TraceChildren(hScroll, dx , dy, DCX_CLIPSIBLINGS);
|
|
|
|
/* update children coordinates */
|
|
while( hWnd )
|
|
{
|
|
wndPtr = WIN_FindWndPtr( hWnd );
|
|
|
|
/* we can check if window intersects with clipRect parameter
|
|
* and do not move it if not - just a thought. - AK
|
|
*/
|
|
|
|
SetWindowPos(hWnd,0,wndPtr->rectWindow.left + dx,
|
|
wndPtr->rectWindow.top + dy, 0,0, SWP_NOZORDER |
|
|
SWP_NOSIZE | SWP_NOACTIVATE | SWP_NOREDRAW |
|
|
SWP_DEFERERASE );
|
|
|
|
hWnd = wndPtr->hwndNext;
|
|
}
|
|
|
|
/* invalidate uncovered region and paint frames */
|
|
b = RedrawWindow( hScroll, NULL, hUpdateRgn, RDW_INVALIDATE | RDW_FRAME | RDW_ERASE |
|
|
RDW_ERASENOW | RDW_ALLCHILDREN );
|
|
|
|
DeleteObject( hUpdateRgn);
|
|
return b;
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* ScrollWindow (USER.61)
|
|
*
|
|
* FIXME: a bit broken
|
|
*/
|
|
|
|
void ScrollWindow(HWND hwnd, short dx, short dy, LPRECT rect, LPRECT clipRect)
|
|
{
|
|
HDC hdc;
|
|
HRGN hrgnUpdate,hrgnClip;
|
|
RECT rc, cliprc;
|
|
|
|
dprintf_scroll(stddeb,"ScrollWindow: dx=%d, dy=%d, lpRect =%08lx clipRect=%i,%i,%i,%i\n",
|
|
dx, dy, (LONG)rect, (int)((clipRect)?clipRect->left:0),
|
|
(int)((clipRect)?clipRect->top:0),
|
|
(int)((clipRect)?clipRect->right:0),
|
|
(int)((clipRect)?clipRect->bottom:0));
|
|
|
|
/* if rect is NULL children have to be moved */
|
|
if ( !rect )
|
|
{
|
|
GetClientRect(hwnd, &rc);
|
|
hrgnClip = CreateRectRgnIndirect( &rc );
|
|
|
|
/* children will be Blt'ed too */
|
|
hdc = GetDCEx(hwnd, hrgnClip, DCX_CACHE | DCX_CLIPSIBLINGS);
|
|
DeleteObject(hrgnClip);
|
|
}
|
|
else
|
|
{
|
|
GetClientRect(hwnd,&rc);
|
|
dprintf_scroll(stddeb,"\trect=%i %i %i %i client=%i %i %i %i\n",
|
|
(int)rect->left,(int)rect->top,(int)rect->right,
|
|
(int)rect->bottom,(int)rc.left,(int)rc.top,
|
|
(int)rc.right,(int)rc.bottom);
|
|
|
|
CopyRect(&rc, rect);
|
|
hdc = GetDC(hwnd);
|
|
}
|
|
|
|
if (clipRect == NULL)
|
|
GetClientRect(hwnd, &cliprc);
|
|
else
|
|
CopyRect(&cliprc, clipRect);
|
|
|
|
hrgnUpdate = CreateRectRgn(0, 0, 0, 0);
|
|
ScrollDC(hdc, dx, dy, &rc, &cliprc, hrgnUpdate, NULL);
|
|
ReleaseDC(hwnd, hdc);
|
|
|
|
if( !rect )
|
|
{
|
|
/* FIXME: this doesn't take into account hrgnUpdate */
|
|
if( !SCROLL_ScrollChildren(hwnd,dx,dy) )
|
|
InvalidateRgn(hwnd, hrgnUpdate, TRUE);
|
|
}
|
|
else
|
|
{
|
|
HRGN hrgnInv = SCROLL_TraceChildren(hwnd,dx,dy,DCX_CLIPCHILDREN |
|
|
DCX_CLIPSIBLINGS );
|
|
if( hrgnInv )
|
|
{
|
|
HRGN hrgnCombine = CreateRectRgn(0,0,0,0);
|
|
|
|
CombineRgn(hrgnCombine,hrgnInv,hrgnUpdate,RGN_OR);
|
|
dprintf_scroll(stddeb,"ScrollWindow: hrgnComb="NPFMT" hrgnInv="NPFMT" hrgnUpd="NPFMT"\n",
|
|
hrgnCombine,hrgnInv,hrgnUpdate);
|
|
|
|
DeleteObject(hrgnUpdate); DeleteObject(hrgnInv);
|
|
hrgnUpdate = hrgnCombine;
|
|
}
|
|
|
|
RedrawWindow( hwnd, NULL, hrgnUpdate, RDW_INVALIDATE | RDW_ERASE | RDW_ERASENOW);
|
|
}
|
|
|
|
DeleteObject(hrgnUpdate);
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* ScrollDC (USER.221)
|
|
*
|
|
* FIXME: half-broken
|
|
*/
|
|
|
|
BOOL ScrollDC(HDC hdc, short dx, short dy, LPRECT rc, LPRECT cliprc,
|
|
HRGN hrgnUpdate, LPRECT rcUpdate)
|
|
{
|
|
HRGN hrgnClip, hrgn1, hrgn2;
|
|
POINT src, dest;
|
|
short width, height;
|
|
DC *dc = (DC *)GDI_GetObjPtr(hdc, DC_MAGIC);
|
|
|
|
dprintf_scroll(stddeb,"ScrollDC: dx=%d dy=%d, hrgnUpdate="NPFMT" rc=%i %i %i %i\n",
|
|
dx,dy,hrgnUpdate,(int)((rc)?rc->left:0),
|
|
(int)((rc)?rc->top:0),
|
|
(int)((rc)?rc->right:0),
|
|
(int)((rc)?rc->bottom:0));
|
|
|
|
if (rc == NULL)
|
|
return FALSE;
|
|
|
|
if (cliprc)
|
|
{
|
|
hrgnClip = CreateRectRgnIndirect(cliprc);
|
|
SelectClipRgn(hdc, hrgnClip);
|
|
}
|
|
|
|
if (dx > 0)
|
|
{
|
|
src.x = XDPTOLP(dc, rc->left);
|
|
dest.x = XDPTOLP(dc, rc->left + abs(dx));
|
|
}
|
|
else
|
|
{
|
|
src.x = XDPTOLP(dc, rc->left + abs(dx));
|
|
dest.x = XDPTOLP(dc, rc->left);
|
|
}
|
|
if (dy > 0)
|
|
{
|
|
src.y = YDPTOLP(dc, rc->top);
|
|
dest.y = YDPTOLP(dc, rc->top + abs(dy));
|
|
}
|
|
else
|
|
{
|
|
src.y = YDPTOLP(dc, rc->top + abs(dy));
|
|
dest.y = YDPTOLP(dc, rc->top);
|
|
}
|
|
|
|
width = rc->right - rc->left - abs(dx);
|
|
height = rc->bottom - rc->top - abs(dy);
|
|
|
|
if (!BitBlt(hdc, dest.x, dest.y, width, height, hdc, src.x, src.y,
|
|
SRCCOPY))
|
|
return FALSE;
|
|
|
|
if (hrgnUpdate)
|
|
{
|
|
if (dx > 0)
|
|
hrgn1 = CreateRectRgn(rc->left, rc->top, rc->left+dx, rc->bottom);
|
|
else if (dx < 0)
|
|
hrgn1 = CreateRectRgn(rc->right+dx, rc->top, rc->right,
|
|
rc->bottom);
|
|
else
|
|
hrgn1 = CreateRectRgn(0, 0, 0, 0);
|
|
|
|
if (dy > 0)
|
|
hrgn2 = CreateRectRgn(rc->left, rc->top, rc->right, rc->top+dy);
|
|
else if (dy < 0)
|
|
hrgn2 = CreateRectRgn(rc->left, rc->bottom+dy, rc->right,
|
|
rc->bottom);
|
|
else
|
|
hrgn2 = CreateRectRgn(0, 0, 0, 0);
|
|
|
|
RgnType = CombineRgn(hrgnUpdate, hrgn1, hrgn2, RGN_OR);
|
|
}
|
|
|
|
if (rcUpdate) GetRgnBox( hrgnUpdate, rcUpdate );
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
/*************************************************************************
|
|
* ScrollWindowEx (USER.319)
|
|
*
|
|
* FIXME: broken
|
|
*
|
|
* SCROLL_TraceChildren can help
|
|
*/
|
|
|
|
int ScrollWindowEx(HWND hwnd, short dx, short dy, LPRECT rect, LPRECT clipRect,
|
|
HRGN hrgnUpdate, LPRECT rcUpdate, WORD flags)
|
|
{
|
|
HDC hdc;
|
|
RECT rc, cliprc;
|
|
|
|
dprintf_scroll(stddeb,"ScrollWindowEx: dx=%d, dy=%d, wFlags=%04x\n",dx, dy, flags);
|
|
|
|
hdc = GetDC(hwnd);
|
|
|
|
if (rect == NULL)
|
|
GetClientRect(hwnd, &rc);
|
|
else
|
|
CopyRect(&rc, rect);
|
|
if (clipRect == NULL)
|
|
GetClientRect(hwnd, &cliprc);
|
|
else
|
|
CopyRect(&cliprc, clipRect);
|
|
|
|
ScrollDC(hdc, dx, dy, &rc, &cliprc, hrgnUpdate, rcUpdate);
|
|
|
|
if (flags | SW_INVALIDATE)
|
|
{
|
|
RedrawWindow( hwnd, NULL, hrgnUpdate, RDW_INVALIDATE | RDW_ERASE |
|
|
((flags & SW_ERASE) ? RDW_ERASENOW : 0));
|
|
}
|
|
|
|
ReleaseDC(hwnd, hdc);
|
|
return RgnType;
|
|
}
|