1993-09-04 10:09:32 +00:00
|
|
|
/*
|
|
|
|
* GDI region objects
|
|
|
|
*
|
1994-09-16 09:24:37 +00:00
|
|
|
* Copyright 1993, 1994 Alexandre Julliard
|
1994-12-10 13:02:28 +00:00
|
|
|
*
|
1994-09-16 09:24:37 +00:00
|
|
|
static char Copyright[] = "Copyright Alexandre Julliard, 1993, 1994";
|
1994-12-10 13:02:28 +00:00
|
|
|
*/
|
1993-09-04 10:09:32 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
1994-09-16 09:24:37 +00:00
|
|
|
|
1995-01-09 18:21:16 +00:00
|
|
|
#include "region.h"
|
1994-10-17 18:12:41 +00:00
|
|
|
#include "stddebug.h"
|
1994-12-10 13:02:28 +00:00
|
|
|
/* #define DEBUG_REGION */
|
1994-10-17 18:12:41 +00:00
|
|
|
#include "debug.h"
|
1993-09-04 10:09:32 +00:00
|
|
|
|
|
|
|
/* GC used for region operations */
|
|
|
|
static GC regionGC = 0;
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* REGION_Init
|
|
|
|
*/
|
1994-12-10 13:02:28 +00:00
|
|
|
BOOL REGION_Init(void)
|
1993-09-04 10:09:32 +00:00
|
|
|
{
|
|
|
|
Pixmap tmpPixmap;
|
|
|
|
|
|
|
|
/* CreateGC needs a drawable */
|
Release 940405
Tue Apr 5 14:36:59 1994 Bob Amstadt (bob@pooh)
* [include/mdi.h] [windows/mdi.c]
Use WM_PARENTNOTIFY messages to activate children.
Generate WM_CHILDACTIVATE messages.
Beginnings handler for maxmized child window.
Clean up when children are destroyed.
* [windows/message.c] [windows/nonclient.c] [windows/winpos.c]
Removed code add 94/03/26.
Apr 4, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
* [control/menu.c]
Make mouse menu navigation working again. :-))
(be carefull, clicking outside menus (ie.: clientrect)
not resolved yet)
* [windows/nonclient.c] [controls/scroll.c]
Bugs fix in NCTrackScrollBars().
* [misc/dos_fs.c]
Bug fix in 'ToDos()' in conversion for '/',
(example: '/window/' was translated to 'WINDOWs').
* [miscemu/int21.c]
Function ChangeDir() extract possible drive before DOS_ChangeDir().
* [loader/library.c] [loader/wine.c]
Playing around moving function GetProcAddress() and put some code in.
Mon Apr 4 21:39:07 1994 Alexandre Julliard (julliard@lamisun.epfl.ch)
* [misc/main.c]
Better explanation of command-line options.
* [objects/dib.c]
Implemented SetDIBitsToDevice().
* [windows/dc.c]
Bug fix in SetDCState().
* [windows/event.c]
Removed WS_DISABLED handling (now done in message.c).
* [windows/message.c]
Added sending a WM_PARENTNOTIFY message in MSG_TranslateMouseMsg().
Use WindowFromPoint() to find the window for mouse events, taking
into account disabled windows.
* [windows/painting.c]
Bug fix in BeginPaint() to allow calling it at other times than
on WM_PAINT (Solitaire needs it...)
* [windows/win.c]
Implemented FindWindow().
Rewritten EnableWindow() to behave more like Windows.
* [windows/winpos.c]
Rewritten WindowFromPoint() to also search child windows.
Mon Apr 4 17:36:32 1994 Erik Bos (erik@trashcan.hacktic.nl)
* [include/int21.h] -> [msdos.h]
renamed.
* [miscemu/int10.h] [miscemu/int25.h] [miscemu/int26.h]
new, added for int 10, 25 and 26.
* [miscemu/ioports.c]
new, added to allow win apps to use ioports.
* [loader/signal.c]
Added support for in, inb, out, outb instructions.
Sun Mar 27 13:40:25 1994 Bob Amstadt (bob@pooh)
* controls/menu.c (InsertMenu): Changed to use FindMenuItem().
Sat Mar 26 21:23:55 1994 Bob Amstadt (bob@pooh)
* [windows/mdi.c]
Window list properly updated.
* [windows/message.c]
Call WINPOS_ChildActivate() when mouse pressed.
* [windows/nonclient.c]
Use WINPOS_IsAnActiveWindow() instead of GetActiveWindow() in
NC_HandleNCPaint().
* [windows/winpos.c]
Created functions WINPOS_IsAnActiveWindow() and WINPOS_ActivateChild()
Thu Mar 24 14:49:17 1994 Bob Amstadt (bob@pooh)
* controls/menu.c (DeleteMenu): Changed to use FindMenuItem
(DeleteMenu): Many bug fixes.
* [controls/menu.c]
Created function FindMenuItem().
Thu Mar 24 14:17:24 1994 Bob Amstadt (bob@pooh)
* [windows/win.c]
Removed incorrect MDI handling code from CreateWindowEx().
* [controls/menu.c]
MF_STRING items needed to allocate a private copy of string.
* [controls/menu.c]
Fixed buggy calls to GlobalFree().
* [memory/global.c]
Eliminated some redundant code with function call.
Wed Mar 23 1994 Pentti Moilanen (pentti.moilanen@ntc.nokia.com)
* [windows/timer.c]
timer list pointers looped in InsertTimer
Tue Mar 29 13:32:08 MET DST 1994 julliard@di.epfl.ch (Alexandre Julliard)
* [misc/cursor.c]
A few changes for desktop window support.
* [misc/main.c]
Added -depth option.
* [misc/rect.c]
Yet another bug fix in SubtractRect().
* [objects/bitmap.c]
Changes to use only one depth (specified with -depth)
for color bitmaps.
* [objects/brush.c]
Added support for dithered solid brushes.
* [objects/color.c]
Use the same 20 system colors as in Windows.
System palette initialisation now done in COLOR_InitPalette().
Added support for a color mapping table to map logical color
indexes to X colormap entries.
Implemented GetNearestColor() and RealizeDefaultPalette().
* [objects/dib.c]
Added support for color mapping table.
* [objects/dither.c] (New file)
Implemented solid color dithering.
* [objects/palette.c]
Implemented GetSystemPaletteEntries() and SelectPalette().
* [windows/class.c]
Make a copy of the menu name in RegisterClass().
* [windows/dc.c]
Fixed device caps when using a desktop window.
Added support for the color mapping table in DCs.
* [windows/event.c]
Added ConfigureNotify handler on desktop window.
* [windows/message.c]
Removed call to XTranslateCoordinates() on every mouse motion
New function MSG_Synchronize() to synchronize with the X server.
* [windows/syscolor.c]
Rewritten SYSCOLOR_Init() to read the system colors from WIN.INI.
* [windows/winpos.c]
Added synchronization on window mapping. Solves the double redraw
problem when starting Solitaire.
Mar 27, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
* [control/menu.c] * [windows/defwnd.c]
Make keyboard navigation working with menubar,
but temporarely inserted a bug in menubar mouse handling ... :-((
(it will be fix next week !)
* [windows/defwnd.c]
Connect VK_MENU to menubar navigation.
* [loader/library.c]
GetModuleHandle() return 'fictive 0xF000+ handles' for built-in DLLs.
Sun Mar 20 22:32:13 1994 Erik Bos (erik@trashcan.hacktic.nl)
* [misc/main.c]
Added Copy(). Added a check for `-h' to show usage.
* [misc/dos_fs.c]
Fixed bug in FindFile(), to load directories as dlls.
* [misc/dos_fs.c]
Fixed ToUnix() and ToDos() again, as my previous patch
didn't make it.
* [misc/dos_fs.c] [miscemu/int21.c]
Bug fixes, should be able to handle all winfile and progman int21
requests now except for a few small things.
Tue Mar 29 06:25:54 1994 crw@harris.mlb.semi.harris.com (Carl Williams)
* [memory/heap.c]
Implemented GetFreeSystemResources().
Mon Mar 21 17:32:25 1994 Bob Amstadt (bob@pooh)
* controls/menu.c (GetSubMenu): Function did not return correct value
* [windows/mdi.c]
Beginnings of menu handling.
Thu Mar 10 11:32:06 1994 Stefan (SAM) Muenzel (muenzel@tat.physik.uni-tuebingen.de)
* [objects/font.c]
if font.width equals zero use asterix instead.
Mon Mar 21 17:23:37 MET 1994 julliard@di.epfl.ch (Alexandre Julliard)
* [objects/bitmap.c]
Rewritten bitmap code to use exclusively X pixmaps; *much* faster.
* [objects/brush.c]
Some changes with pattern brushes because of the new bitmap code.
* [objects/color.c]
Added function COLOR_ToPhysical for better color mapping.
* [objects/dib.c]
Heavily optimized SetDIBits().
* [windows/dc.c]
Opimized SetDCState() and DC_SetupGC*() functions.
Added stub for CreateIC().
Mar 20, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
* [misc/message.c]
Call SetFocus() after closing box to give back focus to previous owner.
* [misc/files.c]
Small bug fix in GetTempFilename() : replace a '\' to '\\'.
* [control/scroll.c]
Calls to BitBlt() replace by StretchBlt().
* [control/menu.c]
Call SetFocus() to previous owner after closing Popups.
Fill stub DeleteMenu().
* [control/listbox.c]
* [control/combo.c]
Use SetFocus() in WM_LBUTTONDOWN.
Close ComboBox List upon WM_KILLFOCUS.
Early development of WM_MEASUREITEM mecanism.
* [windows/defwnd.c]
Early development of WM_MEASUREITEM mecanism.
Tue Mar 22 10:44:57 1994 Miguel de Icaza (miguel@xochitl)
* [misc/atom.c]
Fixed sintaxis problem when building the library.
Tue Mar 15 13:11:56 1994 Bob Amstadt (bob@pooh)
* [include/windows.h]
Added message types and structures for MDI
* [include/mdi.h]
Created internal structures for handling MDI
* [windows/mdi.c]
Began creating MDI support
Thu Mar 10 16:51:46 1994 Bob Amstadt (bob@pooh)
* [loader/wine.c] [include/wine.h]
Added new field to "struct w_files" to hold the "name table"
resource for Windows 3.0 programs
* [loader/resource.c]
Added code to handle programs with a "name table" resource.
LoadResourceByName() modified to check for the existence of
this resource.
Mon Mar 14 22:31:42 MET 1994 julliard@di.epfl.ch (Alexandre Julliard)
* [objects/color.c]
Added installing the private colormap on the desktop window.
* [windows/event.c]
Cleaned up focus event handling (see focus.c).
Use GetFocus() to direct key events to the correct window.
* [windows/focus.c]
Rewritten SetFocus() to:
- only set X focus on top-level windows
- send WM_SETFOCUS and WM_KILLFOCUS messages (was done in event.c)
- prevent setting focus to disabled windows
- install private colormap so -privatemap option works again
* [windows/message.c] [windows/timer.c]
Changed timer management to no longer use PostMessage(), but
to generate timer messages on the fly. Also fixed a related bug
in GetMessage() which could cause busy-waiting.
* [windows/win.c]
Only select focus events on top-level windows.
* [windows/winpos.c]
Added some sanity checks for desktop window.
Fri Mar 4 20:42:01 1994 Erik Bos (erik@trashcan.hacktic.nl)
* [misc/dos_fs.c]
bug fixes in ToUnix(), WinIniFileName(), GetUnixFileName().
Support for tilde symbol added for rootdirectories in [drives]
section of wine's configfile.
* [misc/file.c]
hread(), hwrite() added.
* [misc/main.c]
hmemcpy() added.
* [if1632/stress.spec] [include/stress.h] [misc/stress.c]
Added STRESS.DLL, an useless dll used to stress a windows system.
* [*/*]
Added missing #includes, fixed prototypes for prototype checking.
* [include/prototypes.h]
Added prototypes for loader/*c, if1632/*c.
Tue Mar 8 09:54:34 1994 Bob Amstadt (bob@pooh)
* [Configure]
Added reminder to set WINEPATH, if it is not set.
* [Imakefile]
Removed #elif's
* [controls/button.c]
Added BN_CLICKED notification for owner-draw buttons.
* [if1632/kernel.spec] [memory/heap.c]
Changed Local* functions to WIN16_Local* to prevent unconcious use
of these functions.
* [if1632/relay.c]
Push old Stack16Frame on stack before setting.
* [include/atom.h] [misc/atom.c] [include/heap.h] [memory/local.c]
Added multiple local heap handling in Atom* functions.
* [include/regfunc.h] [miscemu/int21.c]
Rewrote DOS3Call() use context frame that is already on the stack.
* [misc/profile.c]
Fixed to allow leading ";" to mark comments.
* [misc/spy.c]
Fixed bugs and added support for "include" and "exclude" filters.
* [misc/user.c]
Rearranged calls in InitApp().
* [misc/font.c]
Fixed font handling to create system fonts, if they are used.
* [windows/dc.c]
If text drawn on window with no font specified, then default the
font to the system font.
Mon Mar 7 20:32:09 MET 1994 julliard@di.epfl.ch (Alexandre Julliard)
* [controls/desktop.c]
Added handling of WM_NCCREATE and WM_ERASEBKGND functions.
Implemented SetDeskPattern().
* [misc/main.c]
Added -desktop option to get a large desktop window with
everything inside it.
Added -name option.
* [misc/rect.c]
Bug fix in SubtractRect().
* [objects/*.c]
Replaced the DefaultRootWindow() macro by the rootWindow variable.
* [windows/event.c] [windows/message.c]
[windows/nonclient.c] [windows/win.c]
A few changes to accomodate the new desktop window.
Tue Mar 8 11:13:03 1994 Miguel de Icaza (miguel@xochitl.nuclecu.unam.mx)
* [toolkit/arch.c] --New file--
Routines for converting little endian data structures to
big-endian data structures, currently only BITMAP structures are
converted.
* [misc/atom.c]
When used as part of the WineLib, the code is much simpler.
Doesn't depend on alignement.
* [loader/wine.c]
Ifdefed Emulator dependent code if compiling WineLib.
* [loader/resource.c]
Moved misc/resource.c to loader/resource.c.
* [loader/dump.c,ldt.c,ldtlib.c,library,c,selector.c,signal.c]
Ifdefed whole code if compiling WINELIB.
* [include/winsock.h]
Added compilation define to allow compilation on SunOS.
* [include/wine.h]
Removed load_typeinfo and load_nameinfo prototypes, they belong
to neexe.h
* [include/neexe.h]
Added load_typeinfo and load_nameinfo prototypes.
* [include/arch.h]
Fixed some bugs in the conversion routines.
Added macros for Bitmap loading.
Tue Mar 8 12:52:05 1994 crw@maniac.mlb.semi.harris.com (Carl Williams)
* [if1632/kernel.spec] [memory/global.c]
Implemented GetFreeSpace()
* [if1632/user.spec] [loader/resource.c]
Implemented CreateIcon()
1994-04-05 21:42:43 +00:00
|
|
|
tmpPixmap = XCreatePixmap( display, rootWindow, 1, 1, 1 );
|
1993-09-04 10:09:32 +00:00
|
|
|
if (tmpPixmap)
|
|
|
|
{
|
1994-09-16 09:24:37 +00:00
|
|
|
regionGC = XCreateGC( display, tmpPixmap, 0, NULL );
|
|
|
|
XFreePixmap( display, tmpPixmap );
|
1993-09-04 10:09:32 +00:00
|
|
|
if (!regionGC) return FALSE;
|
1994-09-16 09:24:37 +00:00
|
|
|
XSetForeground( display, regionGC, 1 );
|
|
|
|
XSetGraphicsExposures( display, regionGC, False );
|
1993-09-04 10:09:32 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1994-09-16 09:24:37 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* REGION_MakePixmap
|
|
|
|
*
|
|
|
|
* Make a pixmap of an X region.
|
|
|
|
*/
|
|
|
|
static BOOL REGION_MakePixmap( REGION *region )
|
|
|
|
{
|
|
|
|
int width = region->box.right - region->box.left;
|
|
|
|
int height = region->box.bottom - region->box.top;
|
|
|
|
|
|
|
|
if (!region->xrgn) return TRUE; /* Null region */
|
|
|
|
region->pixmap = XCreatePixmap( display, rootWindow, width, height, 1 );
|
|
|
|
if (!region->pixmap) return FALSE;
|
|
|
|
XSetRegion( display, regionGC, region->xrgn );
|
1994-10-17 18:12:41 +00:00
|
|
|
XSetClipOrigin( display, regionGC, -region->box.left, -region->box.top );
|
|
|
|
XSetFunction( display, regionGC, GXset );
|
1994-09-16 09:24:37 +00:00
|
|
|
XFillRectangle( display, region->pixmap, regionGC, 0, 0, width, height );
|
|
|
|
XSetClipMask( display, regionGC, None ); /* Clear clip region */
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-09-04 10:09:32 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* REGION_SetRect
|
|
|
|
*
|
1994-09-16 09:24:37 +00:00
|
|
|
* Set the bounding box of the region and create the pixmap (or the X rgn).
|
1993-09-04 10:09:32 +00:00
|
|
|
* The hrgn must be valid.
|
|
|
|
*/
|
1994-09-16 09:24:37 +00:00
|
|
|
static BOOL REGION_SetRect( HRGN hrgn, LPRECT rect, BOOL createXrgn )
|
1993-09-04 10:09:32 +00:00
|
|
|
{
|
|
|
|
int width, height;
|
|
|
|
|
|
|
|
/* Fill region */
|
|
|
|
|
|
|
|
REGION * region = &((RGNOBJ *)GDI_HEAP_ADDR( hrgn ))->region;
|
|
|
|
width = rect->right - rect->left;
|
|
|
|
height = rect->bottom - rect->top;
|
|
|
|
if ((width <= 0) || (height <= 0))
|
|
|
|
{
|
|
|
|
region->type = NULLREGION;
|
|
|
|
region->box.left = 0;
|
|
|
|
region->box.right = 0;
|
|
|
|
region->box.top = 0;
|
|
|
|
region->box.bottom = 0;
|
|
|
|
region->pixmap = 0;
|
1994-09-16 09:24:37 +00:00
|
|
|
region->xrgn = 0;
|
1993-09-04 10:09:32 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
1994-09-16 09:24:37 +00:00
|
|
|
region->type = SIMPLEREGION;
|
|
|
|
region->box = *rect;
|
|
|
|
region->xrgn = 0;
|
|
|
|
region->pixmap = 0;
|
1993-09-04 10:09:32 +00:00
|
|
|
|
1994-09-16 09:24:37 +00:00
|
|
|
if (createXrgn) /* Create and set the X region */
|
|
|
|
{
|
|
|
|
XRectangle xrect = { region->box.left, region->box.top, width, height};
|
1994-10-17 18:12:41 +00:00
|
|
|
if (!(region->xrgn = XCreateRegion())) return FALSE;
|
|
|
|
XUnionRectWithRegion( &xrect, region->xrgn, region->xrgn );
|
1994-09-16 09:24:37 +00:00
|
|
|
}
|
|
|
|
else /* Create the pixmap */
|
|
|
|
{
|
|
|
|
region->pixmap = XCreatePixmap( display, rootWindow, width, height, 1);
|
|
|
|
if (!region->pixmap) return FALSE;
|
|
|
|
/* Fill the pixmap */
|
|
|
|
XSetFunction( display, regionGC, GXclear );
|
|
|
|
XFillRectangle(display, region->pixmap, regionGC, 0, 0, width, height);
|
|
|
|
}
|
1993-09-04 10:09:32 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* REGION_DeleteObject
|
|
|
|
*/
|
|
|
|
BOOL REGION_DeleteObject( HRGN hrgn, RGNOBJ * obj )
|
|
|
|
{
|
1994-09-16 09:24:37 +00:00
|
|
|
if (obj->region.pixmap) XFreePixmap( display, obj->region.pixmap );
|
|
|
|
if (obj->region.xrgn) XDestroyRegion( obj->region.xrgn );
|
1993-09-04 10:09:32 +00:00
|
|
|
return GDI_FreeObject( hrgn );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* OffsetRgn (GDI.101)
|
|
|
|
*/
|
|
|
|
int OffsetRgn( HRGN hrgn, short x, short y )
|
|
|
|
{
|
|
|
|
RGNOBJ * obj = (RGNOBJ *) GDI_GetObjPtr( hrgn, REGION_MAGIC );
|
|
|
|
if (!obj) return ERROR;
|
1994-10-17 18:12:41 +00:00
|
|
|
dprintf_region(stddeb, "OffsetRgn: %d %d,%d\n", hrgn, x, y );
|
1993-09-04 10:09:32 +00:00
|
|
|
OffsetRect( &obj->region.box, x, y );
|
1994-09-16 09:24:37 +00:00
|
|
|
if (obj->region.xrgn) XOffsetRegion( obj->region.xrgn, x, y );
|
1993-09-04 10:09:32 +00:00
|
|
|
return obj->region.type;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* GetRgnBox (GDI.134)
|
|
|
|
*/
|
|
|
|
int GetRgnBox( HRGN hrgn, LPRECT rect )
|
|
|
|
{
|
|
|
|
RGNOBJ * obj = (RGNOBJ *) GDI_GetObjPtr( hrgn, REGION_MAGIC );
|
|
|
|
if (!obj) return ERROR;
|
1994-10-17 18:12:41 +00:00
|
|
|
dprintf_region(stddeb, "GetRgnBox: %d\n", hrgn );
|
1993-09-04 10:09:32 +00:00
|
|
|
*rect = obj->region.box;
|
|
|
|
return obj->region.type;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CreateRectRgn (GDI.64)
|
|
|
|
*/
|
|
|
|
HRGN CreateRectRgn( short left, short top, short right, short bottom )
|
|
|
|
{
|
|
|
|
RECT rect = { left, top, right, bottom };
|
|
|
|
return CreateRectRgnIndirect( &rect );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CreateRectRgnIndirect (GDI.65)
|
|
|
|
*/
|
|
|
|
HRGN CreateRectRgnIndirect( LPRECT rect )
|
|
|
|
{
|
|
|
|
HRGN hrgn;
|
|
|
|
|
1994-10-17 18:12:41 +00:00
|
|
|
dprintf_region(stddeb, "CreateRectRgnIndirect: %d,%d-%d,%d\n",
|
1993-09-04 10:09:32 +00:00
|
|
|
rect->left, rect->top, rect->right, rect->bottom );
|
|
|
|
|
|
|
|
/* Create region */
|
|
|
|
|
|
|
|
if (!(hrgn = GDI_AllocObject( sizeof(RGNOBJ), REGION_MAGIC ))) return 0;
|
1994-09-16 09:24:37 +00:00
|
|
|
if (!REGION_SetRect( hrgn, rect, TRUE ))
|
1993-09-04 10:09:32 +00:00
|
|
|
{
|
|
|
|
GDI_FreeObject( hrgn );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return hrgn;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CreateRoundRectRgn (GDI.444)
|
|
|
|
*/
|
|
|
|
HRGN CreateRoundRectRgn( short left, short top, short right, short bottom,
|
|
|
|
short ellipse_width, short ellipse_height )
|
|
|
|
{
|
|
|
|
RECT rect = { left, top, right, bottom };
|
|
|
|
RGNOBJ * rgnObj;
|
|
|
|
HRGN hrgn;
|
|
|
|
|
1994-10-17 18:12:41 +00:00
|
|
|
dprintf_region(stddeb, "CreateRoundRectRgn: %d,%d-%d,%d %dx%d\n",
|
1993-09-04 10:09:32 +00:00
|
|
|
left, top, right, bottom, ellipse_width, ellipse_height );
|
|
|
|
|
|
|
|
/* Create region */
|
|
|
|
|
|
|
|
if (!(hrgn = GDI_AllocObject( sizeof(RGNOBJ), REGION_MAGIC ))) return 0;
|
1994-09-16 09:24:37 +00:00
|
|
|
if (!REGION_SetRect( hrgn, &rect, FALSE ))
|
1993-09-04 10:09:32 +00:00
|
|
|
{
|
|
|
|
GDI_FreeObject( hrgn );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
rgnObj = (RGNOBJ *) GDI_HEAP_ADDR( hrgn );
|
|
|
|
|
|
|
|
/* Fill pixmap */
|
|
|
|
|
|
|
|
if (rgnObj->region.type != NULLREGION)
|
|
|
|
{
|
|
|
|
int width = rgnObj->region.box.right - rgnObj->region.box.left;
|
|
|
|
int height = rgnObj->region.box.bottom - rgnObj->region.box.top;
|
1994-09-16 09:24:37 +00:00
|
|
|
XSetFunction( display, regionGC, GXcopy );
|
|
|
|
XFillRectangle( display, rgnObj->region.pixmap, regionGC,
|
1993-09-04 10:09:32 +00:00
|
|
|
0, ellipse_height / 2,
|
|
|
|
width, height - ellipse_height );
|
1994-09-16 09:24:37 +00:00
|
|
|
XFillRectangle( display, rgnObj->region.pixmap, regionGC,
|
1993-09-04 10:09:32 +00:00
|
|
|
ellipse_width / 2, 0,
|
|
|
|
width - ellipse_width, height );
|
1994-09-16 09:24:37 +00:00
|
|
|
XFillArc( display, rgnObj->region.pixmap, regionGC,
|
1993-09-04 10:09:32 +00:00
|
|
|
0, 0,
|
|
|
|
ellipse_width, ellipse_height, 0, 360*64 );
|
1994-09-16 09:24:37 +00:00
|
|
|
XFillArc( display, rgnObj->region.pixmap, regionGC,
|
1993-09-04 10:09:32 +00:00
|
|
|
width - ellipse_width, 0,
|
|
|
|
ellipse_width, ellipse_height, 0, 360*64 );
|
1994-09-16 09:24:37 +00:00
|
|
|
XFillArc( display, rgnObj->region.pixmap, regionGC,
|
1993-09-04 10:09:32 +00:00
|
|
|
0, height - ellipse_height,
|
|
|
|
ellipse_width, ellipse_height, 0, 360*64 );
|
1994-09-16 09:24:37 +00:00
|
|
|
XFillArc( display, rgnObj->region.pixmap, regionGC,
|
1993-09-04 10:09:32 +00:00
|
|
|
width - ellipse_width, height - ellipse_height,
|
|
|
|
ellipse_width, ellipse_height, 0, 360*64 );
|
|
|
|
}
|
|
|
|
|
|
|
|
return hrgn;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* SetRectRgn (GDI.172)
|
|
|
|
*/
|
|
|
|
void SetRectRgn( HRGN hrgn, short left, short top, short right, short bottom )
|
|
|
|
{
|
|
|
|
RECT rect = { left, top, right, bottom };
|
|
|
|
RGNOBJ * rgnObj;
|
|
|
|
|
1994-10-17 18:12:41 +00:00
|
|
|
dprintf_region(stddeb, "SetRectRgn: %d %d,%d-%d,%d\n",
|
|
|
|
hrgn, left, top, right, bottom );
|
1993-09-04 10:09:32 +00:00
|
|
|
|
|
|
|
/* Free previous pixmap */
|
|
|
|
|
|
|
|
if (!(rgnObj = (RGNOBJ *) GDI_GetObjPtr( hrgn, REGION_MAGIC ))) return;
|
1994-09-16 09:24:37 +00:00
|
|
|
if (rgnObj->region.pixmap) XFreePixmap( display, rgnObj->region.pixmap );
|
|
|
|
if (rgnObj->region.xrgn) XDestroyRegion( rgnObj->region.xrgn );
|
|
|
|
REGION_SetRect( hrgn, &rect, TRUE );
|
1993-09-04 10:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CreateEllipticRgn (GDI.54)
|
|
|
|
*/
|
|
|
|
HRGN CreateEllipticRgn( short left, short top, short right, short bottom )
|
|
|
|
{
|
|
|
|
RECT rect = { left, top, right, bottom };
|
|
|
|
return CreateEllipticRgnIndirect( &rect );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CreateEllipticRgnIndirect (GDI.55)
|
|
|
|
*/
|
|
|
|
HRGN CreateEllipticRgnIndirect( LPRECT rect )
|
|
|
|
{
|
|
|
|
RGNOBJ * rgnObj;
|
|
|
|
HRGN hrgn;
|
|
|
|
|
1994-10-17 18:12:41 +00:00
|
|
|
dprintf_region(stddeb, "CreateEllipticRgnIndirect: %d,%d-%d,%d\n",
|
1993-09-04 10:09:32 +00:00
|
|
|
rect->left, rect->top, rect->right, rect->bottom );
|
|
|
|
|
|
|
|
/* Create region */
|
|
|
|
|
|
|
|
if (!(hrgn = GDI_AllocObject( sizeof(RGNOBJ), REGION_MAGIC ))) return 0;
|
1994-09-16 09:24:37 +00:00
|
|
|
if (!REGION_SetRect( hrgn, rect, FALSE ))
|
1993-09-04 10:09:32 +00:00
|
|
|
{
|
|
|
|
GDI_FreeObject( hrgn );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
rgnObj = (RGNOBJ *) GDI_HEAP_ADDR( hrgn );
|
|
|
|
|
|
|
|
/* Fill pixmap */
|
|
|
|
|
|
|
|
if (rgnObj->region.type != NULLREGION)
|
|
|
|
{
|
|
|
|
int width = rgnObj->region.box.right - rgnObj->region.box.left;
|
|
|
|
int height = rgnObj->region.box.bottom - rgnObj->region.box.top;
|
1994-09-16 09:24:37 +00:00
|
|
|
XSetFunction( display, regionGC, GXcopy );
|
|
|
|
XFillArc( display, rgnObj->region.pixmap, regionGC,
|
1993-09-04 10:09:32 +00:00
|
|
|
0, 0, width, height, 0, 360*64 );
|
|
|
|
}
|
|
|
|
|
|
|
|
return hrgn;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CreatePolygonRgn (GDI.63)
|
|
|
|
*/
|
|
|
|
HRGN CreatePolygonRgn( POINT * points, short count, short mode )
|
|
|
|
{
|
|
|
|
return CreatePolyPolygonRgn( points, &count, 1, mode );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CreatePolyPolygonRgn (GDI.451)
|
|
|
|
*/
|
|
|
|
HRGN CreatePolyPolygonRgn( POINT * points, short * count,
|
|
|
|
short nbpolygons, short mode )
|
|
|
|
{
|
|
|
|
RGNOBJ * rgnObj;
|
|
|
|
HRGN hrgn;
|
1994-09-16 09:24:37 +00:00
|
|
|
int i, j, maxPoints;
|
|
|
|
XPoint *xpoints, *pt;
|
|
|
|
XRectangle rect;
|
|
|
|
Region xrgn;
|
|
|
|
|
1994-10-17 18:12:41 +00:00
|
|
|
dprintf_region(stddeb, "CreatePolyPolygonRgn: %d polygons\n", nbpolygons );
|
1993-09-04 10:09:32 +00:00
|
|
|
|
1994-09-16 09:24:37 +00:00
|
|
|
/* Allocate points array */
|
1993-09-04 10:09:32 +00:00
|
|
|
|
1994-09-16 09:24:37 +00:00
|
|
|
if (!nbpolygons) return 0;
|
|
|
|
for (i = maxPoints = 0; i < nbpolygons; i++)
|
|
|
|
if (maxPoints < count[i]) maxPoints = count[i];
|
|
|
|
if (!maxPoints) return 0;
|
|
|
|
if (!(xpoints = (XPoint *) malloc( sizeof(XPoint) * maxPoints )))
|
|
|
|
return 0;
|
1993-09-04 10:09:32 +00:00
|
|
|
|
1994-09-16 09:24:37 +00:00
|
|
|
/* Allocate region */
|
1993-09-04 10:09:32 +00:00
|
|
|
|
1994-09-16 09:24:37 +00:00
|
|
|
if (!(hrgn = GDI_AllocObject( sizeof(RGNOBJ), REGION_MAGIC )))
|
1993-09-04 10:09:32 +00:00
|
|
|
{
|
|
|
|
free( xpoints );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
rgnObj = (RGNOBJ *) GDI_HEAP_ADDR( hrgn );
|
1994-09-16 09:24:37 +00:00
|
|
|
rgnObj->region.type = SIMPLEREGION;
|
1995-01-09 18:21:16 +00:00
|
|
|
rgnObj->region.xrgn = 0;
|
1994-09-16 09:24:37 +00:00
|
|
|
rgnObj->region.pixmap = 0;
|
1993-09-04 10:09:32 +00:00
|
|
|
|
1994-09-16 09:24:37 +00:00
|
|
|
/* Create X region */
|
1993-09-04 10:09:32 +00:00
|
|
|
|
1994-09-16 09:24:37 +00:00
|
|
|
for (i = 0; i < nbpolygons; i++, count++)
|
1993-09-04 10:09:32 +00:00
|
|
|
{
|
1994-09-16 09:24:37 +00:00
|
|
|
for (j = *count, pt = xpoints; j > 0; j--, points++, pt++)
|
|
|
|
{
|
|
|
|
pt->x = points->x;
|
|
|
|
pt->y = points->y;
|
|
|
|
}
|
|
|
|
xrgn = XPolygonRegion( xpoints, *count,
|
|
|
|
(mode == WINDING) ? WindingRule : EvenOddRule );
|
1995-01-09 18:21:16 +00:00
|
|
|
if (!xrgn)
|
|
|
|
{
|
|
|
|
if (rgnObj->region.xrgn) XDestroyRegion( rgnObj->region.xrgn );
|
|
|
|
free( xpoints );
|
|
|
|
GDI_FreeObject( hrgn );
|
|
|
|
return 0;
|
|
|
|
}
|
1994-09-16 09:24:37 +00:00
|
|
|
if (i > 0)
|
1993-09-04 10:09:32 +00:00
|
|
|
{
|
1994-09-16 09:24:37 +00:00
|
|
|
Region tmprgn = XCreateRegion();
|
|
|
|
if (mode == WINDING) XUnionRegion(xrgn,rgnObj->region.xrgn,tmprgn);
|
|
|
|
else XXorRegion( xrgn, rgnObj->region.xrgn, tmprgn );
|
|
|
|
XDestroyRegion( rgnObj->region.xrgn );
|
|
|
|
rgnObj->region.xrgn = tmprgn;
|
1993-09-04 10:09:32 +00:00
|
|
|
}
|
1994-09-16 09:24:37 +00:00
|
|
|
else rgnObj->region.xrgn = xrgn;
|
1993-09-04 10:09:32 +00:00
|
|
|
}
|
1994-09-16 09:24:37 +00:00
|
|
|
|
1993-09-04 10:09:32 +00:00
|
|
|
free( xpoints );
|
1994-09-16 09:24:37 +00:00
|
|
|
XClipBox( rgnObj->region.xrgn, &rect );
|
|
|
|
SetRect( &rgnObj->region.box, rect.x, rect.y,
|
|
|
|
rect.x + rect.width, rect.y + rect.height);
|
1993-09-04 10:09:32 +00:00
|
|
|
return hrgn;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* PtInRegion (GDI.161)
|
|
|
|
*/
|
|
|
|
BOOL PtInRegion( HRGN hrgn, short x, short y )
|
|
|
|
{
|
|
|
|
BOOL res;
|
|
|
|
RGNOBJ * obj;
|
|
|
|
POINT pt = { x, y };
|
|
|
|
|
|
|
|
if (!(obj = (RGNOBJ *) GDI_GetObjPtr( hrgn, REGION_MAGIC ))) return FALSE;
|
|
|
|
if (!PtInRect( &obj->region.box, pt )) return FALSE;
|
1994-09-16 09:24:37 +00:00
|
|
|
if (obj->region.xrgn)
|
|
|
|
{
|
|
|
|
return XPointInRegion( obj->region.xrgn, x, y );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
XImage *image = XGetImage( display, obj->region.pixmap,
|
|
|
|
x - obj->region.box.left, y - obj->region.box.top,
|
|
|
|
1, 1, AllPlanes, ZPixmap );
|
|
|
|
if (!image) return FALSE;
|
|
|
|
res = (XGetPixel( image, 0, 0 ) != 0);
|
|
|
|
XDestroyImage( image );
|
|
|
|
}
|
1993-09-04 10:09:32 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* RectInRegion (GDI.181)
|
|
|
|
*/
|
|
|
|
BOOL RectInRegion( HRGN hrgn, LPRECT rect )
|
|
|
|
{
|
|
|
|
XImage * image;
|
|
|
|
RGNOBJ * obj;
|
|
|
|
RECT intersect;
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
if (!(obj = (RGNOBJ *) GDI_GetObjPtr( hrgn, REGION_MAGIC ))) return FALSE;
|
1994-09-16 09:24:37 +00:00
|
|
|
if (obj->region.xrgn)
|
|
|
|
{
|
|
|
|
return (XRectInRegion( obj->region.xrgn, rect->left, rect->top,
|
|
|
|
rect->right-rect->left,
|
|
|
|
rect->bottom-rect->top ) != RectangleOut);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!IntersectRect( &intersect, &obj->region.box, rect )) return FALSE;
|
1993-09-04 10:09:32 +00:00
|
|
|
|
1994-09-16 09:24:37 +00:00
|
|
|
image = XGetImage( display, obj->region.pixmap,
|
|
|
|
intersect.left - obj->region.box.left,
|
|
|
|
intersect.top - obj->region.box.top,
|
|
|
|
intersect.right - intersect.left,
|
|
|
|
intersect.bottom - intersect.top,
|
|
|
|
AllPlanes, ZPixmap );
|
|
|
|
if (!image) return FALSE;
|
|
|
|
for (y = 0; y < image->height; y++)
|
|
|
|
for (x = 0; x < image->width; x++)
|
|
|
|
if (XGetPixel( image, x, y ) != 0)
|
|
|
|
{
|
|
|
|
XDestroyImage( image );
|
|
|
|
return TRUE;
|
|
|
|
}
|
1993-09-04 10:09:32 +00:00
|
|
|
|
1994-09-16 09:24:37 +00:00
|
|
|
XDestroyImage( image );
|
|
|
|
}
|
1993-09-04 10:09:32 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* EqualRgn (GDI.72)
|
|
|
|
*/
|
|
|
|
BOOL EqualRgn( HRGN rgn1, HRGN rgn2 )
|
|
|
|
{
|
|
|
|
RGNOBJ *obj1, *obj2;
|
|
|
|
XImage *image1, *image2;
|
1994-09-16 09:24:37 +00:00
|
|
|
Pixmap pixmap1, pixmap2;
|
1993-09-04 10:09:32 +00:00
|
|
|
int width, height, x, y;
|
|
|
|
|
|
|
|
/* Compare bounding boxes */
|
|
|
|
|
|
|
|
if (!(obj1 = (RGNOBJ *) GDI_GetObjPtr( rgn1, REGION_MAGIC ))) return FALSE;
|
|
|
|
if (!(obj2 = (RGNOBJ *) GDI_GetObjPtr( rgn2, REGION_MAGIC ))) return FALSE;
|
|
|
|
if (obj1->region.type == NULLREGION)
|
|
|
|
return (obj2->region.type == NULLREGION);
|
|
|
|
else if (obj2->region.type == NULLREGION) return FALSE;
|
|
|
|
if (!EqualRect( &obj1->region.box, &obj2->region.box )) return FALSE;
|
1994-09-16 09:24:37 +00:00
|
|
|
if (obj1->region.xrgn && obj2->region.xrgn)
|
|
|
|
{
|
|
|
|
return XEqualRegion( obj1->region.xrgn, obj2->region.xrgn );
|
|
|
|
}
|
|
|
|
|
1993-09-04 10:09:32 +00:00
|
|
|
/* Get pixmap contents */
|
|
|
|
|
1994-09-16 09:24:37 +00:00
|
|
|
if (!(pixmap1 = obj1->region.pixmap) &&
|
|
|
|
!REGION_MakePixmap( &obj1->region )) return FALSE;
|
|
|
|
if (!(pixmap2 = obj2->region.pixmap) &&
|
|
|
|
!REGION_MakePixmap( &obj2->region )) return FALSE;
|
1993-09-04 10:09:32 +00:00
|
|
|
width = obj1->region.box.right - obj1->region.box.left;
|
|
|
|
height = obj1->region.box.bottom - obj1->region.box.top;
|
1994-09-16 09:24:37 +00:00
|
|
|
image1 = XGetImage( display, obj1->region.pixmap,
|
|
|
|
0, 0, width, height, AllPlanes, ZPixmap );
|
|
|
|
image2 = XGetImage( display, obj2->region.pixmap,
|
1993-09-04 10:09:32 +00:00
|
|
|
0, 0, width, height, AllPlanes, ZPixmap );
|
1994-09-16 09:24:37 +00:00
|
|
|
if (!image1 || !image2)
|
1993-09-04 10:09:32 +00:00
|
|
|
{
|
1994-09-16 09:24:37 +00:00
|
|
|
if (image1) XDestroyImage( image1 );
|
|
|
|
if (image2) XDestroyImage( image2 );
|
1993-09-04 10:09:32 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Compare pixmaps */
|
|
|
|
for (y = 0; y < height; y++)
|
|
|
|
for (x = 0; x < width; x++)
|
|
|
|
if (XGetPixel( image1, x, y ) != XGetPixel( image2, x, y))
|
|
|
|
{
|
|
|
|
XDestroyImage( image1 );
|
|
|
|
XDestroyImage( image2 );
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
XDestroyImage( image1 );
|
|
|
|
XDestroyImage( image2 );
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* REGION_CopyIntersection
|
|
|
|
*
|
|
|
|
* Copy to dest->pixmap the area of src->pixmap delimited by
|
|
|
|
* the intersection of dest and src regions, using the current GC function.
|
|
|
|
*/
|
|
|
|
void REGION_CopyIntersection( REGION * dest, REGION * src )
|
|
|
|
{
|
|
|
|
RECT inter;
|
|
|
|
if (!IntersectRect( &inter, &dest->box, &src->box )) return;
|
1994-09-16 09:24:37 +00:00
|
|
|
XCopyArea( display, src->pixmap, dest->pixmap, regionGC,
|
1993-09-04 10:09:32 +00:00
|
|
|
inter.left - src->box.left, inter.top - src->box.top,
|
|
|
|
inter.right - inter.left, inter.bottom - inter.top,
|
|
|
|
inter.left - dest->box.left, inter.top - dest->box.top );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1994-10-17 18:12:41 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* REGION_CopyRegion
|
|
|
|
*
|
|
|
|
* Copy region src into dest.
|
|
|
|
*/
|
|
|
|
static int REGION_CopyRegion( RGNOBJ *src, RGNOBJ *dest )
|
|
|
|
{
|
|
|
|
if (dest->region.pixmap) XFreePixmap( display, dest->region.pixmap );
|
|
|
|
dest->region.type = src->region.type;
|
|
|
|
dest->region.box = src->region.box;
|
|
|
|
dest->region.pixmap = 0;
|
|
|
|
if (src->region.xrgn) /* Copy only the X region */
|
|
|
|
{
|
|
|
|
Region tmprgn = XCreateRegion();
|
|
|
|
if (!dest->region.xrgn) dest->region.xrgn = XCreateRegion();
|
|
|
|
XUnionRegion( tmprgn, src->region.xrgn, dest->region.xrgn );
|
|
|
|
XDestroyRegion( tmprgn );
|
|
|
|
}
|
|
|
|
else /* Copy the pixmap (if any) */
|
|
|
|
{
|
|
|
|
if (dest->region.xrgn)
|
|
|
|
{
|
|
|
|
XDestroyRegion( dest->region.xrgn );
|
|
|
|
dest->region.xrgn = 0;
|
|
|
|
}
|
|
|
|
if (src->region.pixmap)
|
|
|
|
{
|
|
|
|
int width = src->region.box.right - src->region.box.left;
|
|
|
|
int height = src->region.box.bottom - src->region.box.top;
|
|
|
|
|
|
|
|
dest->region.pixmap = XCreatePixmap( display, rootWindow,
|
|
|
|
width, height, 1 );
|
|
|
|
XSetFunction( display, regionGC, GXcopy );
|
|
|
|
XCopyArea( display, src->region.pixmap, dest->region.pixmap,
|
|
|
|
regionGC, 0, 0, width, height, 0, 0 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return dest->region.type;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-09-04 10:09:32 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* CombineRgn (GDI.451)
|
|
|
|
*/
|
|
|
|
int CombineRgn( HRGN hDest, HRGN hSrc1, HRGN hSrc2, short mode )
|
|
|
|
{
|
|
|
|
RGNOBJ *destObj, *src1Obj, *src2Obj;
|
|
|
|
REGION * region;
|
|
|
|
int width, height;
|
|
|
|
BOOL res;
|
|
|
|
|
1994-10-17 18:12:41 +00:00
|
|
|
dprintf_region(stddeb, "CombineRgn: %d %d %d %d\n",
|
|
|
|
hDest, hSrc1, hSrc2, mode );
|
1993-09-04 10:09:32 +00:00
|
|
|
|
|
|
|
if (!(destObj = (RGNOBJ *) GDI_GetObjPtr( hDest, REGION_MAGIC )))
|
|
|
|
return ERROR;
|
|
|
|
if (!(src1Obj = (RGNOBJ *) GDI_GetObjPtr( hSrc1, REGION_MAGIC )))
|
|
|
|
return ERROR;
|
1994-10-17 18:12:41 +00:00
|
|
|
if (mode == RGN_COPY) return REGION_CopyRegion( src1Obj, destObj );
|
|
|
|
|
|
|
|
if (!(src2Obj = (RGNOBJ *) GDI_GetObjPtr( hSrc2, REGION_MAGIC )))
|
|
|
|
return ERROR;
|
1993-09-04 10:09:32 +00:00
|
|
|
region = &destObj->region;
|
|
|
|
|
1994-12-27 14:11:53 +00:00
|
|
|
/* Some optimizations for null regions */
|
|
|
|
|
|
|
|
if (src1Obj->region.type == NULLREGION)
|
|
|
|
{
|
|
|
|
switch(mode)
|
|
|
|
{
|
|
|
|
case RGN_AND:
|
|
|
|
case RGN_DIFF:
|
|
|
|
if (region->xrgn) XDestroyRegion( region->xrgn );
|
|
|
|
if (region->pixmap) XFreePixmap( display, region->pixmap );
|
|
|
|
region->type = NULLREGION;
|
|
|
|
region->xrgn = 0;
|
|
|
|
return NULLREGION;
|
|
|
|
case RGN_OR:
|
|
|
|
case RGN_XOR:
|
|
|
|
return REGION_CopyRegion( src2Obj, destObj );
|
|
|
|
default:
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (src2Obj->region.type == NULLREGION)
|
|
|
|
{
|
|
|
|
switch(mode)
|
|
|
|
{
|
|
|
|
case RGN_AND:
|
|
|
|
if (region->xrgn) XDestroyRegion( region->xrgn );
|
|
|
|
if (region->pixmap) XFreePixmap( display, region->pixmap );
|
|
|
|
region->type = NULLREGION;
|
|
|
|
region->xrgn = 0;
|
|
|
|
return NULLREGION;
|
|
|
|
case RGN_OR:
|
|
|
|
case RGN_XOR:
|
|
|
|
case RGN_DIFF:
|
|
|
|
return REGION_CopyRegion( src1Obj, destObj );
|
|
|
|
default:
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-10-17 18:12:41 +00:00
|
|
|
if (src1Obj->region.xrgn && src2Obj->region.xrgn)
|
1994-09-16 09:24:37 +00:00
|
|
|
{
|
|
|
|
/* Perform the operation with X regions */
|
|
|
|
|
|
|
|
if (region->pixmap) XFreePixmap( display, region->pixmap );
|
|
|
|
region->pixmap = 0;
|
|
|
|
if (!region->xrgn) region->xrgn = XCreateRegion();
|
|
|
|
switch(mode)
|
|
|
|
{
|
|
|
|
case RGN_AND:
|
|
|
|
XIntersectRegion( src1Obj->region.xrgn, src2Obj->region.xrgn,
|
|
|
|
region->xrgn );
|
|
|
|
break;
|
|
|
|
case RGN_OR:
|
|
|
|
XUnionRegion( src1Obj->region.xrgn, src2Obj->region.xrgn,
|
|
|
|
region->xrgn );
|
|
|
|
break;
|
|
|
|
case RGN_XOR:
|
|
|
|
XXorRegion( src1Obj->region.xrgn, src2Obj->region.xrgn,
|
|
|
|
region->xrgn );
|
|
|
|
break;
|
|
|
|
case RGN_DIFF:
|
|
|
|
XSubtractRegion( src1Obj->region.xrgn, src2Obj->region.xrgn,
|
|
|
|
region->xrgn );
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
if (XEmptyRegion(region->xrgn))
|
|
|
|
{
|
1994-10-17 18:12:41 +00:00
|
|
|
XDestroyRegion( region->xrgn );
|
1994-09-16 09:24:37 +00:00
|
|
|
region->type = NULLREGION;
|
|
|
|
region->xrgn = 0;
|
|
|
|
return NULLREGION;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
XRectangle rect;
|
|
|
|
XClipBox( region->xrgn, &rect );
|
|
|
|
region->type = COMPLEXREGION;
|
|
|
|
region->box.left = rect.x;
|
|
|
|
region->box.top = rect.y;
|
|
|
|
region->box.right = rect.x + rect.width;
|
|
|
|
region->box.bottom = rect.y + rect.height;
|
|
|
|
return COMPLEXREGION;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else /* Create pixmaps if needed */
|
|
|
|
{
|
|
|
|
if (!src1Obj->region.pixmap)
|
|
|
|
if (!REGION_MakePixmap( &src1Obj->region )) return ERROR;
|
1994-10-17 18:12:41 +00:00
|
|
|
if (!src2Obj->region.pixmap)
|
1994-09-16 09:24:37 +00:00
|
|
|
if (!REGION_MakePixmap( &src2Obj->region )) return ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-09-04 10:09:32 +00:00
|
|
|
switch(mode)
|
|
|
|
{
|
|
|
|
case RGN_AND:
|
|
|
|
res = IntersectRect( ®ion->box, &src1Obj->region.box,
|
|
|
|
&src2Obj->region.box );
|
1993-09-29 12:21:49 +00:00
|
|
|
region->type = COMPLEXREGION;
|
1993-09-04 10:09:32 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RGN_OR:
|
|
|
|
case RGN_XOR:
|
|
|
|
res = UnionRect( ®ion->box, &src1Obj->region.box,
|
|
|
|
&src2Obj->region.box );
|
1993-09-29 12:21:49 +00:00
|
|
|
region->type = COMPLEXREGION;
|
1993-09-04 10:09:32 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case RGN_DIFF:
|
|
|
|
res = SubtractRect( ®ion->box, &src1Obj->region.box,
|
|
|
|
&src2Obj->region.box );
|
1993-09-29 12:21:49 +00:00
|
|
|
region->type = COMPLEXREGION;
|
1993-09-04 10:09:32 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return ERROR;
|
|
|
|
}
|
|
|
|
|
1994-09-16 09:24:37 +00:00
|
|
|
if (region->pixmap) XFreePixmap( display, region->pixmap );
|
|
|
|
if (region->xrgn) XDestroyRegion( region->xrgn );
|
1993-09-04 10:09:32 +00:00
|
|
|
if (!res)
|
|
|
|
{
|
|
|
|
region->type = NULLREGION;
|
|
|
|
region->pixmap = 0;
|
1994-09-16 09:24:37 +00:00
|
|
|
region->xrgn = 0;
|
1993-09-04 10:09:32 +00:00
|
|
|
return NULLREGION;
|
|
|
|
}
|
|
|
|
|
|
|
|
width = region->box.right - region->box.left;
|
|
|
|
height = region->box.bottom - region->box.top;
|
Release 940405
Tue Apr 5 14:36:59 1994 Bob Amstadt (bob@pooh)
* [include/mdi.h] [windows/mdi.c]
Use WM_PARENTNOTIFY messages to activate children.
Generate WM_CHILDACTIVATE messages.
Beginnings handler for maxmized child window.
Clean up when children are destroyed.
* [windows/message.c] [windows/nonclient.c] [windows/winpos.c]
Removed code add 94/03/26.
Apr 4, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
* [control/menu.c]
Make mouse menu navigation working again. :-))
(be carefull, clicking outside menus (ie.: clientrect)
not resolved yet)
* [windows/nonclient.c] [controls/scroll.c]
Bugs fix in NCTrackScrollBars().
* [misc/dos_fs.c]
Bug fix in 'ToDos()' in conversion for '/',
(example: '/window/' was translated to 'WINDOWs').
* [miscemu/int21.c]
Function ChangeDir() extract possible drive before DOS_ChangeDir().
* [loader/library.c] [loader/wine.c]
Playing around moving function GetProcAddress() and put some code in.
Mon Apr 4 21:39:07 1994 Alexandre Julliard (julliard@lamisun.epfl.ch)
* [misc/main.c]
Better explanation of command-line options.
* [objects/dib.c]
Implemented SetDIBitsToDevice().
* [windows/dc.c]
Bug fix in SetDCState().
* [windows/event.c]
Removed WS_DISABLED handling (now done in message.c).
* [windows/message.c]
Added sending a WM_PARENTNOTIFY message in MSG_TranslateMouseMsg().
Use WindowFromPoint() to find the window for mouse events, taking
into account disabled windows.
* [windows/painting.c]
Bug fix in BeginPaint() to allow calling it at other times than
on WM_PAINT (Solitaire needs it...)
* [windows/win.c]
Implemented FindWindow().
Rewritten EnableWindow() to behave more like Windows.
* [windows/winpos.c]
Rewritten WindowFromPoint() to also search child windows.
Mon Apr 4 17:36:32 1994 Erik Bos (erik@trashcan.hacktic.nl)
* [include/int21.h] -> [msdos.h]
renamed.
* [miscemu/int10.h] [miscemu/int25.h] [miscemu/int26.h]
new, added for int 10, 25 and 26.
* [miscemu/ioports.c]
new, added to allow win apps to use ioports.
* [loader/signal.c]
Added support for in, inb, out, outb instructions.
Sun Mar 27 13:40:25 1994 Bob Amstadt (bob@pooh)
* controls/menu.c (InsertMenu): Changed to use FindMenuItem().
Sat Mar 26 21:23:55 1994 Bob Amstadt (bob@pooh)
* [windows/mdi.c]
Window list properly updated.
* [windows/message.c]
Call WINPOS_ChildActivate() when mouse pressed.
* [windows/nonclient.c]
Use WINPOS_IsAnActiveWindow() instead of GetActiveWindow() in
NC_HandleNCPaint().
* [windows/winpos.c]
Created functions WINPOS_IsAnActiveWindow() and WINPOS_ActivateChild()
Thu Mar 24 14:49:17 1994 Bob Amstadt (bob@pooh)
* controls/menu.c (DeleteMenu): Changed to use FindMenuItem
(DeleteMenu): Many bug fixes.
* [controls/menu.c]
Created function FindMenuItem().
Thu Mar 24 14:17:24 1994 Bob Amstadt (bob@pooh)
* [windows/win.c]
Removed incorrect MDI handling code from CreateWindowEx().
* [controls/menu.c]
MF_STRING items needed to allocate a private copy of string.
* [controls/menu.c]
Fixed buggy calls to GlobalFree().
* [memory/global.c]
Eliminated some redundant code with function call.
Wed Mar 23 1994 Pentti Moilanen (pentti.moilanen@ntc.nokia.com)
* [windows/timer.c]
timer list pointers looped in InsertTimer
Tue Mar 29 13:32:08 MET DST 1994 julliard@di.epfl.ch (Alexandre Julliard)
* [misc/cursor.c]
A few changes for desktop window support.
* [misc/main.c]
Added -depth option.
* [misc/rect.c]
Yet another bug fix in SubtractRect().
* [objects/bitmap.c]
Changes to use only one depth (specified with -depth)
for color bitmaps.
* [objects/brush.c]
Added support for dithered solid brushes.
* [objects/color.c]
Use the same 20 system colors as in Windows.
System palette initialisation now done in COLOR_InitPalette().
Added support for a color mapping table to map logical color
indexes to X colormap entries.
Implemented GetNearestColor() and RealizeDefaultPalette().
* [objects/dib.c]
Added support for color mapping table.
* [objects/dither.c] (New file)
Implemented solid color dithering.
* [objects/palette.c]
Implemented GetSystemPaletteEntries() and SelectPalette().
* [windows/class.c]
Make a copy of the menu name in RegisterClass().
* [windows/dc.c]
Fixed device caps when using a desktop window.
Added support for the color mapping table in DCs.
* [windows/event.c]
Added ConfigureNotify handler on desktop window.
* [windows/message.c]
Removed call to XTranslateCoordinates() on every mouse motion
New function MSG_Synchronize() to synchronize with the X server.
* [windows/syscolor.c]
Rewritten SYSCOLOR_Init() to read the system colors from WIN.INI.
* [windows/winpos.c]
Added synchronization on window mapping. Solves the double redraw
problem when starting Solitaire.
Mar 27, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
* [control/menu.c] * [windows/defwnd.c]
Make keyboard navigation working with menubar,
but temporarely inserted a bug in menubar mouse handling ... :-((
(it will be fix next week !)
* [windows/defwnd.c]
Connect VK_MENU to menubar navigation.
* [loader/library.c]
GetModuleHandle() return 'fictive 0xF000+ handles' for built-in DLLs.
Sun Mar 20 22:32:13 1994 Erik Bos (erik@trashcan.hacktic.nl)
* [misc/main.c]
Added Copy(). Added a check for `-h' to show usage.
* [misc/dos_fs.c]
Fixed bug in FindFile(), to load directories as dlls.
* [misc/dos_fs.c]
Fixed ToUnix() and ToDos() again, as my previous patch
didn't make it.
* [misc/dos_fs.c] [miscemu/int21.c]
Bug fixes, should be able to handle all winfile and progman int21
requests now except for a few small things.
Tue Mar 29 06:25:54 1994 crw@harris.mlb.semi.harris.com (Carl Williams)
* [memory/heap.c]
Implemented GetFreeSystemResources().
Mon Mar 21 17:32:25 1994 Bob Amstadt (bob@pooh)
* controls/menu.c (GetSubMenu): Function did not return correct value
* [windows/mdi.c]
Beginnings of menu handling.
Thu Mar 10 11:32:06 1994 Stefan (SAM) Muenzel (muenzel@tat.physik.uni-tuebingen.de)
* [objects/font.c]
if font.width equals zero use asterix instead.
Mon Mar 21 17:23:37 MET 1994 julliard@di.epfl.ch (Alexandre Julliard)
* [objects/bitmap.c]
Rewritten bitmap code to use exclusively X pixmaps; *much* faster.
* [objects/brush.c]
Some changes with pattern brushes because of the new bitmap code.
* [objects/color.c]
Added function COLOR_ToPhysical for better color mapping.
* [objects/dib.c]
Heavily optimized SetDIBits().
* [windows/dc.c]
Opimized SetDCState() and DC_SetupGC*() functions.
Added stub for CreateIC().
Mar 20, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
* [misc/message.c]
Call SetFocus() after closing box to give back focus to previous owner.
* [misc/files.c]
Small bug fix in GetTempFilename() : replace a '\' to '\\'.
* [control/scroll.c]
Calls to BitBlt() replace by StretchBlt().
* [control/menu.c]
Call SetFocus() to previous owner after closing Popups.
Fill stub DeleteMenu().
* [control/listbox.c]
* [control/combo.c]
Use SetFocus() in WM_LBUTTONDOWN.
Close ComboBox List upon WM_KILLFOCUS.
Early development of WM_MEASUREITEM mecanism.
* [windows/defwnd.c]
Early development of WM_MEASUREITEM mecanism.
Tue Mar 22 10:44:57 1994 Miguel de Icaza (miguel@xochitl)
* [misc/atom.c]
Fixed sintaxis problem when building the library.
Tue Mar 15 13:11:56 1994 Bob Amstadt (bob@pooh)
* [include/windows.h]
Added message types and structures for MDI
* [include/mdi.h]
Created internal structures for handling MDI
* [windows/mdi.c]
Began creating MDI support
Thu Mar 10 16:51:46 1994 Bob Amstadt (bob@pooh)
* [loader/wine.c] [include/wine.h]
Added new field to "struct w_files" to hold the "name table"
resource for Windows 3.0 programs
* [loader/resource.c]
Added code to handle programs with a "name table" resource.
LoadResourceByName() modified to check for the existence of
this resource.
Mon Mar 14 22:31:42 MET 1994 julliard@di.epfl.ch (Alexandre Julliard)
* [objects/color.c]
Added installing the private colormap on the desktop window.
* [windows/event.c]
Cleaned up focus event handling (see focus.c).
Use GetFocus() to direct key events to the correct window.
* [windows/focus.c]
Rewritten SetFocus() to:
- only set X focus on top-level windows
- send WM_SETFOCUS and WM_KILLFOCUS messages (was done in event.c)
- prevent setting focus to disabled windows
- install private colormap so -privatemap option works again
* [windows/message.c] [windows/timer.c]
Changed timer management to no longer use PostMessage(), but
to generate timer messages on the fly. Also fixed a related bug
in GetMessage() which could cause busy-waiting.
* [windows/win.c]
Only select focus events on top-level windows.
* [windows/winpos.c]
Added some sanity checks for desktop window.
Fri Mar 4 20:42:01 1994 Erik Bos (erik@trashcan.hacktic.nl)
* [misc/dos_fs.c]
bug fixes in ToUnix(), WinIniFileName(), GetUnixFileName().
Support for tilde symbol added for rootdirectories in [drives]
section of wine's configfile.
* [misc/file.c]
hread(), hwrite() added.
* [misc/main.c]
hmemcpy() added.
* [if1632/stress.spec] [include/stress.h] [misc/stress.c]
Added STRESS.DLL, an useless dll used to stress a windows system.
* [*/*]
Added missing #includes, fixed prototypes for prototype checking.
* [include/prototypes.h]
Added prototypes for loader/*c, if1632/*c.
Tue Mar 8 09:54:34 1994 Bob Amstadt (bob@pooh)
* [Configure]
Added reminder to set WINEPATH, if it is not set.
* [Imakefile]
Removed #elif's
* [controls/button.c]
Added BN_CLICKED notification for owner-draw buttons.
* [if1632/kernel.spec] [memory/heap.c]
Changed Local* functions to WIN16_Local* to prevent unconcious use
of these functions.
* [if1632/relay.c]
Push old Stack16Frame on stack before setting.
* [include/atom.h] [misc/atom.c] [include/heap.h] [memory/local.c]
Added multiple local heap handling in Atom* functions.
* [include/regfunc.h] [miscemu/int21.c]
Rewrote DOS3Call() use context frame that is already on the stack.
* [misc/profile.c]
Fixed to allow leading ";" to mark comments.
* [misc/spy.c]
Fixed bugs and added support for "include" and "exclude" filters.
* [misc/user.c]
Rearranged calls in InitApp().
* [misc/font.c]
Fixed font handling to create system fonts, if they are used.
* [windows/dc.c]
If text drawn on window with no font specified, then default the
font to the system font.
Mon Mar 7 20:32:09 MET 1994 julliard@di.epfl.ch (Alexandre Julliard)
* [controls/desktop.c]
Added handling of WM_NCCREATE and WM_ERASEBKGND functions.
Implemented SetDeskPattern().
* [misc/main.c]
Added -desktop option to get a large desktop window with
everything inside it.
Added -name option.
* [misc/rect.c]
Bug fix in SubtractRect().
* [objects/*.c]
Replaced the DefaultRootWindow() macro by the rootWindow variable.
* [windows/event.c] [windows/message.c]
[windows/nonclient.c] [windows/win.c]
A few changes to accomodate the new desktop window.
Tue Mar 8 11:13:03 1994 Miguel de Icaza (miguel@xochitl.nuclecu.unam.mx)
* [toolkit/arch.c] --New file--
Routines for converting little endian data structures to
big-endian data structures, currently only BITMAP structures are
converted.
* [misc/atom.c]
When used as part of the WineLib, the code is much simpler.
Doesn't depend on alignement.
* [loader/wine.c]
Ifdefed Emulator dependent code if compiling WineLib.
* [loader/resource.c]
Moved misc/resource.c to loader/resource.c.
* [loader/dump.c,ldt.c,ldtlib.c,library,c,selector.c,signal.c]
Ifdefed whole code if compiling WINELIB.
* [include/winsock.h]
Added compilation define to allow compilation on SunOS.
* [include/wine.h]
Removed load_typeinfo and load_nameinfo prototypes, they belong
to neexe.h
* [include/neexe.h]
Added load_typeinfo and load_nameinfo prototypes.
* [include/arch.h]
Fixed some bugs in the conversion routines.
Added macros for Bitmap loading.
Tue Mar 8 12:52:05 1994 crw@maniac.mlb.semi.harris.com (Carl Williams)
* [if1632/kernel.spec] [memory/global.c]
Implemented GetFreeSpace()
* [if1632/user.spec] [loader/resource.c]
Implemented CreateIcon()
1994-04-05 21:42:43 +00:00
|
|
|
if (!width || !height)
|
|
|
|
{
|
1994-10-17 18:12:41 +00:00
|
|
|
fprintf(stderr, "CombineRgn: width or height is 0. Please report this.\n" );
|
|
|
|
fprintf(stderr, "src1=%d,%d-%d,%d src2=%d,%d-%d,%d dst=%d,%d-%d,%d op=%d\n",
|
Release 940405
Tue Apr 5 14:36:59 1994 Bob Amstadt (bob@pooh)
* [include/mdi.h] [windows/mdi.c]
Use WM_PARENTNOTIFY messages to activate children.
Generate WM_CHILDACTIVATE messages.
Beginnings handler for maxmized child window.
Clean up when children are destroyed.
* [windows/message.c] [windows/nonclient.c] [windows/winpos.c]
Removed code add 94/03/26.
Apr 4, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
* [control/menu.c]
Make mouse menu navigation working again. :-))
(be carefull, clicking outside menus (ie.: clientrect)
not resolved yet)
* [windows/nonclient.c] [controls/scroll.c]
Bugs fix in NCTrackScrollBars().
* [misc/dos_fs.c]
Bug fix in 'ToDos()' in conversion for '/',
(example: '/window/' was translated to 'WINDOWs').
* [miscemu/int21.c]
Function ChangeDir() extract possible drive before DOS_ChangeDir().
* [loader/library.c] [loader/wine.c]
Playing around moving function GetProcAddress() and put some code in.
Mon Apr 4 21:39:07 1994 Alexandre Julliard (julliard@lamisun.epfl.ch)
* [misc/main.c]
Better explanation of command-line options.
* [objects/dib.c]
Implemented SetDIBitsToDevice().
* [windows/dc.c]
Bug fix in SetDCState().
* [windows/event.c]
Removed WS_DISABLED handling (now done in message.c).
* [windows/message.c]
Added sending a WM_PARENTNOTIFY message in MSG_TranslateMouseMsg().
Use WindowFromPoint() to find the window for mouse events, taking
into account disabled windows.
* [windows/painting.c]
Bug fix in BeginPaint() to allow calling it at other times than
on WM_PAINT (Solitaire needs it...)
* [windows/win.c]
Implemented FindWindow().
Rewritten EnableWindow() to behave more like Windows.
* [windows/winpos.c]
Rewritten WindowFromPoint() to also search child windows.
Mon Apr 4 17:36:32 1994 Erik Bos (erik@trashcan.hacktic.nl)
* [include/int21.h] -> [msdos.h]
renamed.
* [miscemu/int10.h] [miscemu/int25.h] [miscemu/int26.h]
new, added for int 10, 25 and 26.
* [miscemu/ioports.c]
new, added to allow win apps to use ioports.
* [loader/signal.c]
Added support for in, inb, out, outb instructions.
Sun Mar 27 13:40:25 1994 Bob Amstadt (bob@pooh)
* controls/menu.c (InsertMenu): Changed to use FindMenuItem().
Sat Mar 26 21:23:55 1994 Bob Amstadt (bob@pooh)
* [windows/mdi.c]
Window list properly updated.
* [windows/message.c]
Call WINPOS_ChildActivate() when mouse pressed.
* [windows/nonclient.c]
Use WINPOS_IsAnActiveWindow() instead of GetActiveWindow() in
NC_HandleNCPaint().
* [windows/winpos.c]
Created functions WINPOS_IsAnActiveWindow() and WINPOS_ActivateChild()
Thu Mar 24 14:49:17 1994 Bob Amstadt (bob@pooh)
* controls/menu.c (DeleteMenu): Changed to use FindMenuItem
(DeleteMenu): Many bug fixes.
* [controls/menu.c]
Created function FindMenuItem().
Thu Mar 24 14:17:24 1994 Bob Amstadt (bob@pooh)
* [windows/win.c]
Removed incorrect MDI handling code from CreateWindowEx().
* [controls/menu.c]
MF_STRING items needed to allocate a private copy of string.
* [controls/menu.c]
Fixed buggy calls to GlobalFree().
* [memory/global.c]
Eliminated some redundant code with function call.
Wed Mar 23 1994 Pentti Moilanen (pentti.moilanen@ntc.nokia.com)
* [windows/timer.c]
timer list pointers looped in InsertTimer
Tue Mar 29 13:32:08 MET DST 1994 julliard@di.epfl.ch (Alexandre Julliard)
* [misc/cursor.c]
A few changes for desktop window support.
* [misc/main.c]
Added -depth option.
* [misc/rect.c]
Yet another bug fix in SubtractRect().
* [objects/bitmap.c]
Changes to use only one depth (specified with -depth)
for color bitmaps.
* [objects/brush.c]
Added support for dithered solid brushes.
* [objects/color.c]
Use the same 20 system colors as in Windows.
System palette initialisation now done in COLOR_InitPalette().
Added support for a color mapping table to map logical color
indexes to X colormap entries.
Implemented GetNearestColor() and RealizeDefaultPalette().
* [objects/dib.c]
Added support for color mapping table.
* [objects/dither.c] (New file)
Implemented solid color dithering.
* [objects/palette.c]
Implemented GetSystemPaletteEntries() and SelectPalette().
* [windows/class.c]
Make a copy of the menu name in RegisterClass().
* [windows/dc.c]
Fixed device caps when using a desktop window.
Added support for the color mapping table in DCs.
* [windows/event.c]
Added ConfigureNotify handler on desktop window.
* [windows/message.c]
Removed call to XTranslateCoordinates() on every mouse motion
New function MSG_Synchronize() to synchronize with the X server.
* [windows/syscolor.c]
Rewritten SYSCOLOR_Init() to read the system colors from WIN.INI.
* [windows/winpos.c]
Added synchronization on window mapping. Solves the double redraw
problem when starting Solitaire.
Mar 27, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
* [control/menu.c] * [windows/defwnd.c]
Make keyboard navigation working with menubar,
but temporarely inserted a bug in menubar mouse handling ... :-((
(it will be fix next week !)
* [windows/defwnd.c]
Connect VK_MENU to menubar navigation.
* [loader/library.c]
GetModuleHandle() return 'fictive 0xF000+ handles' for built-in DLLs.
Sun Mar 20 22:32:13 1994 Erik Bos (erik@trashcan.hacktic.nl)
* [misc/main.c]
Added Copy(). Added a check for `-h' to show usage.
* [misc/dos_fs.c]
Fixed bug in FindFile(), to load directories as dlls.
* [misc/dos_fs.c]
Fixed ToUnix() and ToDos() again, as my previous patch
didn't make it.
* [misc/dos_fs.c] [miscemu/int21.c]
Bug fixes, should be able to handle all winfile and progman int21
requests now except for a few small things.
Tue Mar 29 06:25:54 1994 crw@harris.mlb.semi.harris.com (Carl Williams)
* [memory/heap.c]
Implemented GetFreeSystemResources().
Mon Mar 21 17:32:25 1994 Bob Amstadt (bob@pooh)
* controls/menu.c (GetSubMenu): Function did not return correct value
* [windows/mdi.c]
Beginnings of menu handling.
Thu Mar 10 11:32:06 1994 Stefan (SAM) Muenzel (muenzel@tat.physik.uni-tuebingen.de)
* [objects/font.c]
if font.width equals zero use asterix instead.
Mon Mar 21 17:23:37 MET 1994 julliard@di.epfl.ch (Alexandre Julliard)
* [objects/bitmap.c]
Rewritten bitmap code to use exclusively X pixmaps; *much* faster.
* [objects/brush.c]
Some changes with pattern brushes because of the new bitmap code.
* [objects/color.c]
Added function COLOR_ToPhysical for better color mapping.
* [objects/dib.c]
Heavily optimized SetDIBits().
* [windows/dc.c]
Opimized SetDCState() and DC_SetupGC*() functions.
Added stub for CreateIC().
Mar 20, 94 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte)
* [misc/message.c]
Call SetFocus() after closing box to give back focus to previous owner.
* [misc/files.c]
Small bug fix in GetTempFilename() : replace a '\' to '\\'.
* [control/scroll.c]
Calls to BitBlt() replace by StretchBlt().
* [control/menu.c]
Call SetFocus() to previous owner after closing Popups.
Fill stub DeleteMenu().
* [control/listbox.c]
* [control/combo.c]
Use SetFocus() in WM_LBUTTONDOWN.
Close ComboBox List upon WM_KILLFOCUS.
Early development of WM_MEASUREITEM mecanism.
* [windows/defwnd.c]
Early development of WM_MEASUREITEM mecanism.
Tue Mar 22 10:44:57 1994 Miguel de Icaza (miguel@xochitl)
* [misc/atom.c]
Fixed sintaxis problem when building the library.
Tue Mar 15 13:11:56 1994 Bob Amstadt (bob@pooh)
* [include/windows.h]
Added message types and structures for MDI
* [include/mdi.h]
Created internal structures for handling MDI
* [windows/mdi.c]
Began creating MDI support
Thu Mar 10 16:51:46 1994 Bob Amstadt (bob@pooh)
* [loader/wine.c] [include/wine.h]
Added new field to "struct w_files" to hold the "name table"
resource for Windows 3.0 programs
* [loader/resource.c]
Added code to handle programs with a "name table" resource.
LoadResourceByName() modified to check for the existence of
this resource.
Mon Mar 14 22:31:42 MET 1994 julliard@di.epfl.ch (Alexandre Julliard)
* [objects/color.c]
Added installing the private colormap on the desktop window.
* [windows/event.c]
Cleaned up focus event handling (see focus.c).
Use GetFocus() to direct key events to the correct window.
* [windows/focus.c]
Rewritten SetFocus() to:
- only set X focus on top-level windows
- send WM_SETFOCUS and WM_KILLFOCUS messages (was done in event.c)
- prevent setting focus to disabled windows
- install private colormap so -privatemap option works again
* [windows/message.c] [windows/timer.c]
Changed timer management to no longer use PostMessage(), but
to generate timer messages on the fly. Also fixed a related bug
in GetMessage() which could cause busy-waiting.
* [windows/win.c]
Only select focus events on top-level windows.
* [windows/winpos.c]
Added some sanity checks for desktop window.
Fri Mar 4 20:42:01 1994 Erik Bos (erik@trashcan.hacktic.nl)
* [misc/dos_fs.c]
bug fixes in ToUnix(), WinIniFileName(), GetUnixFileName().
Support for tilde symbol added for rootdirectories in [drives]
section of wine's configfile.
* [misc/file.c]
hread(), hwrite() added.
* [misc/main.c]
hmemcpy() added.
* [if1632/stress.spec] [include/stress.h] [misc/stress.c]
Added STRESS.DLL, an useless dll used to stress a windows system.
* [*/*]
Added missing #includes, fixed prototypes for prototype checking.
* [include/prototypes.h]
Added prototypes for loader/*c, if1632/*c.
Tue Mar 8 09:54:34 1994 Bob Amstadt (bob@pooh)
* [Configure]
Added reminder to set WINEPATH, if it is not set.
* [Imakefile]
Removed #elif's
* [controls/button.c]
Added BN_CLICKED notification for owner-draw buttons.
* [if1632/kernel.spec] [memory/heap.c]
Changed Local* functions to WIN16_Local* to prevent unconcious use
of these functions.
* [if1632/relay.c]
Push old Stack16Frame on stack before setting.
* [include/atom.h] [misc/atom.c] [include/heap.h] [memory/local.c]
Added multiple local heap handling in Atom* functions.
* [include/regfunc.h] [miscemu/int21.c]
Rewrote DOS3Call() use context frame that is already on the stack.
* [misc/profile.c]
Fixed to allow leading ";" to mark comments.
* [misc/spy.c]
Fixed bugs and added support for "include" and "exclude" filters.
* [misc/user.c]
Rearranged calls in InitApp().
* [misc/font.c]
Fixed font handling to create system fonts, if they are used.
* [windows/dc.c]
If text drawn on window with no font specified, then default the
font to the system font.
Mon Mar 7 20:32:09 MET 1994 julliard@di.epfl.ch (Alexandre Julliard)
* [controls/desktop.c]
Added handling of WM_NCCREATE and WM_ERASEBKGND functions.
Implemented SetDeskPattern().
* [misc/main.c]
Added -desktop option to get a large desktop window with
everything inside it.
Added -name option.
* [misc/rect.c]
Bug fix in SubtractRect().
* [objects/*.c]
Replaced the DefaultRootWindow() macro by the rootWindow variable.
* [windows/event.c] [windows/message.c]
[windows/nonclient.c] [windows/win.c]
A few changes to accomodate the new desktop window.
Tue Mar 8 11:13:03 1994 Miguel de Icaza (miguel@xochitl.nuclecu.unam.mx)
* [toolkit/arch.c] --New file--
Routines for converting little endian data structures to
big-endian data structures, currently only BITMAP structures are
converted.
* [misc/atom.c]
When used as part of the WineLib, the code is much simpler.
Doesn't depend on alignement.
* [loader/wine.c]
Ifdefed Emulator dependent code if compiling WineLib.
* [loader/resource.c]
Moved misc/resource.c to loader/resource.c.
* [loader/dump.c,ldt.c,ldtlib.c,library,c,selector.c,signal.c]
Ifdefed whole code if compiling WINELIB.
* [include/winsock.h]
Added compilation define to allow compilation on SunOS.
* [include/wine.h]
Removed load_typeinfo and load_nameinfo prototypes, they belong
to neexe.h
* [include/neexe.h]
Added load_typeinfo and load_nameinfo prototypes.
* [include/arch.h]
Fixed some bugs in the conversion routines.
Added macros for Bitmap loading.
Tue Mar 8 12:52:05 1994 crw@maniac.mlb.semi.harris.com (Carl Williams)
* [if1632/kernel.spec] [memory/global.c]
Implemented GetFreeSpace()
* [if1632/user.spec] [loader/resource.c]
Implemented CreateIcon()
1994-04-05 21:42:43 +00:00
|
|
|
src1Obj->region.box.left, src1Obj->region.box.top,
|
|
|
|
src1Obj->region.box.right, src1Obj->region.box.bottom,
|
|
|
|
src2Obj->region.box.left, src2Obj->region.box.top,
|
|
|
|
src2Obj->region.box.right, src2Obj->region.box.bottom,
|
|
|
|
region->box.left, region->box.top,
|
|
|
|
region->box.right, region->box.bottom, mode );
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
region->pixmap = XCreatePixmap( display, rootWindow, width, height, 1 );
|
1994-09-16 09:24:37 +00:00
|
|
|
region->xrgn = 0;
|
1993-09-04 10:09:32 +00:00
|
|
|
|
|
|
|
switch(mode)
|
|
|
|
{
|
|
|
|
case RGN_AND:
|
1994-09-16 09:24:37 +00:00
|
|
|
XSetFunction( display, regionGC, GXcopy );
|
1993-09-04 10:09:32 +00:00
|
|
|
REGION_CopyIntersection( region, &src1Obj->region );
|
1994-09-16 09:24:37 +00:00
|
|
|
XSetFunction( display, regionGC, GXand );
|
1993-09-04 10:09:32 +00:00
|
|
|
REGION_CopyIntersection( region, &src2Obj->region );
|
1993-09-29 12:21:49 +00:00
|
|
|
break;
|
1993-09-04 10:09:32 +00:00
|
|
|
|
|
|
|
case RGN_OR:
|
|
|
|
case RGN_XOR:
|
1994-09-16 09:24:37 +00:00
|
|
|
XSetFunction( display, regionGC, GXclear );
|
|
|
|
XFillRectangle( display, region->pixmap, regionGC,
|
1993-09-04 10:09:32 +00:00
|
|
|
0, 0, width, height );
|
1994-09-16 09:24:37 +00:00
|
|
|
XSetFunction( display, regionGC, (mode == RGN_OR) ? GXor : GXxor);
|
1993-09-04 10:09:32 +00:00
|
|
|
REGION_CopyIntersection( region, &src1Obj->region );
|
|
|
|
REGION_CopyIntersection( region, &src2Obj->region );
|
1993-09-29 12:21:49 +00:00
|
|
|
break;
|
1993-09-04 10:09:32 +00:00
|
|
|
|
|
|
|
case RGN_DIFF:
|
1994-09-16 09:24:37 +00:00
|
|
|
XSetFunction( display, regionGC, GXclear );
|
|
|
|
XFillRectangle( display, region->pixmap, regionGC,
|
1993-09-04 10:09:32 +00:00
|
|
|
0, 0, width, height );
|
1994-09-16 09:24:37 +00:00
|
|
|
XSetFunction( display, regionGC, GXcopy );
|
1993-09-04 10:09:32 +00:00
|
|
|
REGION_CopyIntersection( region, &src1Obj->region );
|
1994-09-16 09:24:37 +00:00
|
|
|
XSetFunction( display, regionGC, GXandInverted );
|
1993-09-04 10:09:32 +00:00
|
|
|
REGION_CopyIntersection( region, &src2Obj->region );
|
1993-09-29 12:21:49 +00:00
|
|
|
break;
|
1993-09-04 10:09:32 +00:00
|
|
|
}
|
1993-09-29 12:21:49 +00:00
|
|
|
return region->type;
|
1993-09-04 10:09:32 +00:00
|
|
|
}
|