Moved a large number of 16-bit functions to a separate gdi16.c file.
[wine/hacks.git] / dlls / gdi / win16drv / objects.c
blobcf951406130afc001990e74ede2099b4271221d7
1 /*
2 * GDI objects
4 * Copyright 1993 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "config.h"
23 #include <stdlib.h>
24 #include <stdio.h>
26 #include "win16drv/win16drv.h"
28 #include "wine/debug.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(gdi);
33 /***********************************************************************
34 * WIN16DRV_SelectBitmap
36 HBITMAP WIN16DRV_SelectBitmap( PHYSDEV dev, HBITMAP bitmap )
38 FIXME("BITMAP not implemented\n");
39 return (HBITMAP)1;
43 /***********************************************************************
44 * WIN16DRV_SelectBrush
46 HBRUSH WIN16DRV_SelectBrush( PHYSDEV dev, HBRUSH hbrush )
48 WIN16DRV_PDEVICE *physDev = (WIN16DRV_PDEVICE *)dev;
49 int nSize;
50 LOGBRUSH16 lBrush16;
52 if (!GetObject16( hbrush, sizeof(lBrush16), &lBrush16 )) return 0;
54 if ( physDev->BrushInfo )
56 TRACE("UnRealizing BrushInfo\n");
57 nSize = PRTDRV_RealizeObject (physDev->segptrPDEVICE, -DRVOBJ_BRUSH,
58 physDev->BrushInfo,
59 physDev->BrushInfo, 0);
61 else
63 nSize = PRTDRV_RealizeObject (physDev->segptrPDEVICE, DRVOBJ_BRUSH, &lBrush16, 0, 0);
64 physDev->BrushInfo = HeapAlloc( GetProcessHeap(), 0, nSize );
67 nSize = PRTDRV_RealizeObject(physDev->segptrPDEVICE, DRVOBJ_BRUSH,
68 &lBrush16, physDev->BrushInfo, win16drv_SegPtr_TextXForm);
69 return hbrush;
73 /***********************************************************************
74 * WIN16DRV_SelectPen
76 HPEN WIN16DRV_SelectPen( PHYSDEV dev, HPEN hpen )
78 WIN16DRV_PDEVICE *physDev = (WIN16DRV_PDEVICE *)dev;
79 int nSize;
80 LOGPEN16 lPen16;
82 if (!GetObject16( hpen, sizeof(lPen16), &lPen16 )) return 0;
84 if ( physDev->PenInfo )
86 TRACE("UnRealizing PenInfo\n");
87 nSize = PRTDRV_RealizeObject (physDev->segptrPDEVICE, -DRVOBJ_PEN,
88 physDev->PenInfo,
89 physDev->PenInfo, 0);
91 else
93 nSize = PRTDRV_RealizeObject (physDev->segptrPDEVICE, DRVOBJ_PEN, &lPen16, 0, 0);
94 physDev->PenInfo = HeapAlloc( GetProcessHeap(), 0, nSize );
97 nSize = PRTDRV_RealizeObject(physDev->segptrPDEVICE, DRVOBJ_PEN,
98 &lPen16, physDev->PenInfo, 0);
99 return hpen;