mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
988ca977ab
Mon Jun 20 14:26:41 1994 Bob Amstadt (bob@pooh) * [objects/bitmap.c] Allow negative bitmap sizes. Sun Jun 19 12:00:04 1994 David Metcalfe <david@prism.demon.co.uk> * [controls/edit.c] Improved selection display. Added processing for WM_SETFONT, EM_REPLACESEL, EM_LINELENGTH, EM_UNDO, EM_EMPTYUNDOBUFFER, EM_GETHANDLE, EM_SETHANDLE messages. Text buffer now stored on application's local heap. * [windows/graphics.c] Corrected bug in Rectangle(). XFillRectangle has the same width as Rectangle, but XDrawRectangle is one pixel wider for the same co-ordinates. * [memory/heap.c] [include/heap.h] Added HEAP_LocalSize function. * [windows/event.c] [windows/keyboard.c] Improvements to KeyStateTable and addition of AsyncKeyStateTable. Added supporting code to GetKeyState and GetAsyncKeyState and merged mouse button states into GetKeyboardState. * [loader/resource.c] [include/accel.h] Added recognition of SHIFT, CONTROL and ALT keys to TranslateAccelerator. * [objects/metafile.c] [objects/font.c] [objects/bitblt.c] A bit more metafile support. Sun Jun 19 17:29:00 MET DST 1994 Erik Bos (erik@hacktic.nl) * [loader/resource.c] SizeofResource() and AllocResource() added, AccessResource() updated. * [if1632/kernel.spec] FreeLibrary() used for FreeModule(). * [windows/graphics.c] Rectangle(): swap left & right corners when right < left, swap top & bottom when botton < top. Jun 19, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte) * [controls/combo.c] Fix bug in window style of the associated listbox. * [controls/menu.c] Skip separators in keyboard navigation by using new internal functions SelectPrevItem() & SelectNextItem(), * [misc/profile.c] Bug fix in GetPrivateProfileInt(), was limited to 4 digit, IntBuf must be alloc to (5+1)=6. char instead of 5. * [misc/main.c] Put code in functions SetEnvironment() & GetEnvironment(). * [misc/shell.c] Start putting some code in ExtractIcon() function. * [misc/mmsystem.c] Some code for MMTimer functions & timers list. * [miscemu/int31.c] Few stubs for DPMI interrupt calls. Nothing work yet. Mon Jun 20 07:37:43 EDT 1994 John Richardson (jrichard@cs.uml.edu) * include/win.h (tagWND): Added icon fields icon, hIcon and rectClientSave to the tagWND struct. * windows/Imakefile Added icon.c to the list of files to compile * windows/dce.c (GetDCEx): Added some checks for iconic mode and pass icon window as drawable, not the real window. * windows/defwnd.c (DefWindowProc) Added PAINTICON default windows procedure. * windows/event.c (EVENT_Expose) Added check for iconic window expose. If iconic window is exposed send a WM_PAINTICON message * windows/icon.c New file. ICON_Iconify, ICON_findIconFromPoint, ICON_Deiconify. * windows/mdi.c (DefMDIChildProc) Test for IsIconic during a SC_RESTORE, this doesn't work yet. * windows/message.c (hardware_event) Looks for icon as well as window now. * windows/nonclient.c (NC_HandleSysCommand, NC_DoNCPaintIcon) Added iconify/deiconify in NC_HandleSysCommand, new function NC_DoNCPaintIcon which paints an icon. * windows/painting.c (BeginPaint) Made a BeginPaint select the STOCK_BLACK_PEN, STOCK_WHITE_BRUSH, and STOCK_SYSTEM_FONT objects since this is (hopefully) default windows behavior. * windows/win.h (CreateWindowEx) Set the default background color of a window to be white. Create icon window, turn off MINIMIZE if it is on, since I don't know what to do with it as of yet... register the icon with the hwnd of its window so we can identify where icon messages are coming from. Mon Jun 20 10:15:59 1994 Miguel de Icaza (miguel@sphinx) * windows/event.c: Added a hack to define XPointer when using X11R4. * toolkit/hello.c: Test application for WineLib. To compile you'll need: gcc -Iinclude -DWINELIB -g hello.c -c, and to link you'll need: gcc hello.o libwine.a -lX11 -L/usr/openwin/lib -lm * toolkit/heap.c: Extended the size of the block size per chunk. * misc/stress.c (GetFreeFileHandles): Fixed typo. * misc/main.c (main): Changes to allow compilation under SunOS. * loader/library.c: Changed some ifdefs to compile WineLib.
293 lines
7.6 KiB
C
293 lines
7.6 KiB
C
/*
|
|
* USER DCE functions
|
|
*
|
|
* Copyright 1993 Alexandre Julliard
|
|
*/
|
|
|
|
static char Copyright[] = "Copyright Alexandre Julliard, 1993";
|
|
|
|
#include "dce.h"
|
|
#include "class.h"
|
|
#include "win.h"
|
|
#include "gdi.h"
|
|
#include "user.h"
|
|
#include "icon.h"
|
|
|
|
|
|
#define NB_DCE 5 /* Number of DCEs created at startup */
|
|
|
|
extern Display * display;
|
|
|
|
static HANDLE firstDCE = 0;
|
|
static HDC defaultDCstate = 0;
|
|
|
|
|
|
/***********************************************************************
|
|
* DCE_AllocDCE
|
|
*
|
|
* Allocate a new DCE.
|
|
*/
|
|
HANDLE DCE_AllocDCE( DCE_TYPE type )
|
|
{
|
|
DCE * dce;
|
|
HANDLE handle = USER_HEAP_ALLOC( GMEM_MOVEABLE, sizeof(DCE) );
|
|
if (!handle) return 0;
|
|
dce = (DCE *) USER_HEAP_ADDR( handle );
|
|
if (!(dce->hdc = CreateDC( "DISPLAY", NULL, NULL, NULL )))
|
|
{
|
|
USER_HEAP_FREE( handle );
|
|
return 0;
|
|
}
|
|
dce->hwndCurrent = 0;
|
|
dce->type = type;
|
|
dce->inUse = (type != DCE_CACHE_DC);
|
|
dce->xOrigin = 0;
|
|
dce->yOrigin = 0;
|
|
dce->hNext = firstDCE;
|
|
firstDCE = handle;
|
|
return handle;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* DCE_FreeDCE
|
|
*/
|
|
void DCE_FreeDCE( HANDLE hdce )
|
|
{
|
|
DCE * dce;
|
|
HANDLE *handle = &firstDCE;
|
|
|
|
if (!(dce = (DCE *) USER_HEAP_ADDR( hdce ))) return;
|
|
while (*handle && (*handle != hdce))
|
|
{
|
|
DCE * prev = (DCE *) USER_HEAP_ADDR( *handle );
|
|
handle = &prev->hNext;
|
|
}
|
|
if (*handle == hdce) *handle = dce->hNext;
|
|
DeleteDC( dce->hdc );
|
|
USER_HEAP_FREE( hdce );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* DCE_Init
|
|
*/
|
|
void DCE_Init()
|
|
{
|
|
int i;
|
|
HANDLE handle;
|
|
DCE * dce;
|
|
|
|
for (i = 0; i < NB_DCE; i++)
|
|
{
|
|
if (!(handle = DCE_AllocDCE( DCE_CACHE_DC ))) return;
|
|
dce = (DCE *) USER_HEAP_ADDR( handle );
|
|
if (!defaultDCstate) defaultDCstate = GetDCState( dce->hdc );
|
|
}
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* DCE_GetVisRect
|
|
*
|
|
* Return the visible rectangle of a window, i.e. the client or
|
|
* window area clipped by the client area of all ancestors.
|
|
*/
|
|
static void DCE_GetVisRect( WND *wndPtr, BOOL clientArea, RECT *lprect )
|
|
{
|
|
int xoffset, yoffset;
|
|
|
|
*lprect = clientArea ? wndPtr->rectClient : wndPtr->rectWindow;
|
|
xoffset = lprect->left;
|
|
yoffset = lprect->top;
|
|
|
|
while (wndPtr->dwStyle & WS_CHILD)
|
|
{
|
|
WND *parentPtr = WIN_FindWndPtr( wndPtr->hwndParent );
|
|
xoffset += parentPtr->rectClient.left;
|
|
yoffset += parentPtr->rectClient.top;
|
|
OffsetRect( lprect, parentPtr->rectClient.left,
|
|
parentPtr->rectClient.top );
|
|
|
|
/* Warning!! we assume that IntersectRect() handles the case */
|
|
/* where the destination is the same as one of the sources. */
|
|
IntersectRect( lprect, lprect, &parentPtr->rectClient );
|
|
wndPtr = parentPtr;
|
|
}
|
|
OffsetRect( lprect, -xoffset, -yoffset );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* GetDCEx (USER.359)
|
|
*/
|
|
/* Unimplemented flags: DCX_CLIPSIBLINGS, DCX_LOCKWINDOWUPDATE, DCX_PARENTCLIP
|
|
*/
|
|
HDC GetDCEx( HWND hwnd, HRGN hrgnClip, DWORD flags )
|
|
{
|
|
HANDLE hdce;
|
|
RECT clipRect;
|
|
HDC hdc = 0;
|
|
DCE * dce;
|
|
DC * dc;
|
|
WND * wndPtr;
|
|
ICONALLOC *lpico;
|
|
|
|
if (hwnd)
|
|
{
|
|
if (!(wndPtr = WIN_FindWndPtr( hwnd ))) return 0;
|
|
}
|
|
else wndPtr = NULL;
|
|
|
|
if (flags & DCX_USESTYLE)
|
|
{
|
|
/* Not sure if this is the real meaning of the DCX_USESTYLE flag... */
|
|
flags &= ~(DCX_CACHE | DCX_CLIPCHILDREN | DCX_CLIPSIBLINGS);
|
|
if (wndPtr)
|
|
{
|
|
if (!(wndPtr->flags & (WIN_CLASS_DC | WIN_OWN_DC)))
|
|
flags |= DCX_CACHE;
|
|
if (wndPtr->dwStyle & WS_CLIPCHILDREN) flags |= DCX_CLIPCHILDREN;
|
|
if (wndPtr->dwStyle & WS_CLIPSIBLINGS) flags |= DCX_CLIPSIBLINGS;
|
|
}
|
|
else flags |= DCX_CACHE;
|
|
}
|
|
|
|
if (flags & DCX_CACHE)
|
|
{
|
|
for (hdce = firstDCE; (hdce); hdce = dce->hNext)
|
|
{
|
|
if (!(dce = (DCE *) USER_HEAP_ADDR( hdce ))) return 0;
|
|
if ((dce->type == DCE_CACHE_DC) && (!dce->inUse)) break;
|
|
}
|
|
}
|
|
else hdce = wndPtr->hdce;
|
|
|
|
if (!hdce) return 0;
|
|
dce = (DCE *) USER_HEAP_ADDR( hdce );
|
|
dce->hwndCurrent = hwnd;
|
|
dce->inUse = TRUE;
|
|
hdc = dce->hdc;
|
|
|
|
/* Initialize DC */
|
|
|
|
if (!(dc = (DC *) GDI_GetObjPtr( hdc, DC_MAGIC ))) return 0;
|
|
|
|
if (wndPtr)
|
|
{
|
|
dc->u.x.drawable = wndPtr->window;
|
|
if (flags & DCX_WINDOW)
|
|
{
|
|
dc->w.DCOrgX = 0;
|
|
dc->w.DCOrgY = 0;
|
|
dc->w.DCSizeX = wndPtr->rectWindow.right - wndPtr->rectWindow.left;
|
|
dc->w.DCSizeY = wndPtr->rectWindow.bottom - wndPtr->rectWindow.top;
|
|
}
|
|
else if (IsIconic(hwnd)) /* if we have an icon */
|
|
{
|
|
/* more things are hardcoded here than should be,
|
|
* I assume the icon windows is 100 pixels 1/2 of which is 50
|
|
* this just sets up the dc so it knows about the size of
|
|
* the icon area
|
|
*/
|
|
dc->u.x.drawable = wndPtr->icon;
|
|
if (wndPtr->hIcon != (HICON)NULL) {
|
|
lpico = (ICONALLOC *)GlobalLock(wndPtr->hIcon);
|
|
dc->w.DCSizeX = /* (int)lpico->descriptor.Width */ 100;
|
|
dc->w.DCSizeY = (int)lpico->descriptor.Height + 20;
|
|
} else {
|
|
dc->w.DCOrgX = /* 64 */ 100; /* assume max size */
|
|
dc->w.DCOrgY = 64 + 20;
|
|
}
|
|
dc->w.DCOrgX = 0;
|
|
dc->w.DCOrgY = 0;
|
|
}
|
|
else
|
|
{
|
|
dc->w.DCOrgX = wndPtr->rectClient.left - wndPtr->rectWindow.left;
|
|
dc->w.DCOrgY = wndPtr->rectClient.top - wndPtr->rectWindow.top;
|
|
dc->w.DCSizeX = wndPtr->rectClient.right - wndPtr->rectClient.left;
|
|
dc->w.DCSizeY = wndPtr->rectClient.bottom - wndPtr->rectClient.top;
|
|
}
|
|
|
|
DCE_GetVisRect( wndPtr, !(flags & DCX_WINDOW), &clipRect );
|
|
IntersectVisRect( hdc, clipRect.left, clipRect.top,
|
|
clipRect.right, clipRect.bottom );
|
|
}
|
|
else dc->u.x.drawable = rootWindow;
|
|
|
|
if (flags & DCX_CLIPCHILDREN)
|
|
XSetSubwindowMode( display, dc->u.x.gc, ClipByChildren );
|
|
else XSetSubwindowMode( display, dc->u.x.gc, IncludeInferiors);
|
|
|
|
if ((flags & DCX_INTERSECTRGN) || (flags & DCX_EXCLUDERGN))
|
|
{
|
|
HRGN hrgn = CreateRectRgn( 0, 0, 0, 0 );
|
|
if (hrgn && !IsIconic(hwnd))
|
|
{
|
|
if (CombineRgn( hrgn, InquireVisRgn(hdc), hrgnClip,
|
|
(flags & DCX_INTERSECTRGN) ? RGN_AND : RGN_DIFF ))
|
|
SelectVisRgn( hdc, hrgn );
|
|
DeleteObject( hrgn );
|
|
}
|
|
}
|
|
|
|
#ifdef DEBUG_DC
|
|
printf( "GetDCEx(%d,%d,0x%x): returning %d\n", hwnd, hrgnClip, flags, hdc);
|
|
#endif
|
|
return hdc;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* GetDC (USER.66)
|
|
*/
|
|
HDC GetDC( HWND hwnd )
|
|
{
|
|
return GetDCEx( hwnd, 0, DCX_USESTYLE );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* GetWindowDC (USER.67)
|
|
*/
|
|
HDC GetWindowDC( HWND hwnd )
|
|
{
|
|
int flags = DCX_CACHE | DCX_WINDOW;
|
|
if (hwnd)
|
|
{
|
|
WND * wndPtr;
|
|
if (!(wndPtr = WIN_FindWndPtr( hwnd ))) return 0;
|
|
if (wndPtr->dwStyle & WS_CLIPCHILDREN) flags |= DCX_CLIPCHILDREN;
|
|
if (wndPtr->dwStyle & WS_CLIPSIBLINGS) flags |= DCX_CLIPSIBLINGS;
|
|
}
|
|
return GetDCEx( hwnd, 0, flags );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* ReleaseDC (USER.68)
|
|
*/
|
|
int ReleaseDC( HWND hwnd, HDC hdc )
|
|
{
|
|
HANDLE hdce;
|
|
DCE * dce = NULL;
|
|
|
|
#ifdef DEBUG_DC
|
|
printf( "ReleaseDC: %d %d\n", hwnd, hdc );
|
|
#endif
|
|
|
|
for (hdce = firstDCE; (hdce); hdce = dce->hNext)
|
|
{
|
|
if (!(dce = (DCE *) USER_HEAP_ADDR( hdce ))) return 0;
|
|
if (dce->inUse && (dce->hdc == hdc)) break;
|
|
}
|
|
if (!hdce) return 0;
|
|
|
|
if (dce->type == DCE_CACHE_DC)
|
|
{
|
|
SetDCState( dce->hdc, defaultDCstate );
|
|
dce->inUse = FALSE;
|
|
}
|
|
return 1;
|
|
}
|