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
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");
43 /***********************************************************************
44 * WIN16DRV_SelectBrush
46 HBRUSH
WIN16DRV_SelectBrush( PHYSDEV dev
, HBRUSH hbrush
)
48 WIN16DRV_PDEVICE
*physDev
= (WIN16DRV_PDEVICE
*)dev
;
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
,
59 physDev
->BrushInfo
, 0);
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
);
73 /***********************************************************************
76 HPEN
WIN16DRV_SelectPen( PHYSDEV dev
, HPEN hpen
)
78 WIN16DRV_PDEVICE
*physDev
= (WIN16DRV_PDEVICE
*)dev
;
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
,
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);