Location:
gulicon.h
Link against: egul.lib
class CGulIcon : public CBase;
Packages two bitmaps, one each for an icon image and its mask.
CBase
- Base class for all classes to be instantiated on the heap
CGulIcon
- Packages two bitmaps, one each for an icon image and its mask
Defined in CGulIcon
:
Bitmap()
, BitmapsOwnedExternally()
, Mask()
, NewL()
, NewL()
, NewLC()
, SetBitmap()
, SetBitmapsOwnedExternally()
, SetMask()
, ~CGulIcon()
Inherited from CBase
:
Delete()
,
Extension_()
,
operator new()
static IMPORT_C CGulIcon *NewLC();
Creates a new icon and leaves it on the cleanup stack.
|
static IMPORT_C CGulIcon *NewL();
Creates a new icon.
|
static IMPORT_C CGulIcon *NewL(CFbsBitmap *aBitmap, CFbsBitmap *aMask=0);
Creates a new icon using the bitmap and mask.
It takes ownership of the bitmap and mask and returns a pointer to the new object.
|
|
IMPORT_C void SetBitmap(CFbsBitmap *aBitmap);
Sets the icon image's bitmap.
Transfers ownership to this object unless bitmaps are set to be owned externally.
|
IMPORT_C void SetMask(CFbsBitmap *aMask);
Sets the icon image's mask.
Ownership is transferred to this object unless the bitmaps are owned externally.
The mask can be set to be identical to the bitmap if the bitmap is self-masking.
|
IMPORT_C CFbsBitmap *Bitmap() const;
Gets the icon image's bitmap.
Does not normally imply transfer of ownership. Ownership can be transferred if bitmaps are set to be owned externally.
|
IMPORT_C CFbsBitmap *Mask() const;
Gets the icon image's mask.
Transfers ownership to the caller if bitmaps are owned externally.
|
IMPORT_C void SetBitmapsOwnedExternally(TBool aOwnedExternally);
Sets the bitmap and mask to be owned externally.
|
IMPORT_C TBool BitmapsOwnedExternally() const;
Gets the icon bitmap ownership.
|