Location:
bitmapmethods.h
Link against:
bitgdi.lib
NNBitmapMethods
Supported from 5.0
A set of functions to make bitmap manipulation easier.
Defined in NBitmapMethods
:
CreateGraphicsContextLC()
,
CreateGraphicsContextL()
,
CreateBitmapDeviceLC()
,
CreateBitmapDeviceL()
,
CreateBitmapLC()
,
CreateBitmapL()
,
BitBltMaskedEntireBitmap()
,
PartialReset()
CFbsBitGc* CreateGraphicsContextLC(CFbsBitmapDevice& aBitmapDevice);
Create a graphics context and leave it on the cleanup stack.
|
CFbsBitGc* CreateGraphicsContextL(CFbsBitmapDevice& aBitmapDevice);
Create a graphics context.
|
CFbsBitmapDevice* CreateBitmapDeviceLC(CFbsBitmap& aBitmap);
Create a bitmap device and leave it on the cleanup stack.
|
CFbsBitmapDevice* CreateBitmapDeviceL(CFbsBitmap& aBitmap);
Create a bitmap device.
|
CFbsBitmap* CreateBitmapLC(TSize aSizeInPixels,TDisplayMode aDispMode);
CFbsBitmap* CreateBitmapLC(const TDesC& aFileName,TInt aId);
Create a bitmap and leave it on the cleanup stack. Create a bitmap from an mbm file and leave it on the cleanup stack.
|
CFbsBitmap* CreateBitmapL(TSize aSizeInPixels,TDisplayMode aDispMode);
CFbsBitmap* CreateBitmapLC(const TDesC& aFileName,TInt aId);
Create a bitmap. Create a bitmap from an mbm file.
|
void BitBltMaskedEntireBitmap(CFbsBitGc& aTargetGc,TPoint aTopLeft,const CFbsBitmap& aBitmap, const CFbsBitmap& aBitMask);
Blit the entire of a bitmap with a mask onto a gc.
|
void PartialReset(CFbsBitGc& aGc);
Reset a gc so that it is in a sensible state. Not all settings are reset, just some of the more useful ones.
|