CMdaImageBitmapToBitmapUtility Class Reference

class CMdaImageBitmapToBitmapUtility : public CMdaImageUtility

Implements bitmap to bitmap copying and colour depth conversion.

Replaced by Image Conversion library - use CImageEncoder::FileNewL()

Inherits from

Public Member Functions
~CMdaImageBitmapToBitmapUtility ()
IMPORT_C void CancelConvertL ()
IMPORT_C void ConvertL ( CFbsBitmap &, TInt )
IMPORT_C void ConvertL ( CFbsBitmap &, CFbsBitmap &, TInt )
void DoCancel ()
IMPORT_C CMdaImageBitmapToBitmapUtility * NewL ( MMdaImageUtilObserver &, CMdaServer *)
IMPORT_C void OpenL ( CFbsBitmap &)
void RunL ()
Protected Member Functions
void DoClose ()
Private Member Functions
CMdaImageBitmapToBitmapUtilityPriv * Properties ()
Inherited Functions
CActive::CActive(TInt)
CActive::Cancel()
CActive::Deque()
CActive::Extension_(TUint,TAny *&,TAny *)
CActive::IsActive()const
CActive::IsAdded()const
CActive::Priority()const
CActive::RunError(TInt)
CActive::SetActive()
CActive::SetPriority(TInt)
CActive::~CActive()
CBase::CBase()
CBase::Delete(CBase *)
CBase::operator new(TUint)
CBase::operator new(TUint,TAny *)
CBase::operator new(TUint,TLeave)
CBase::operator new(TUint,TLeave,TUint)
CBase::operator new(TUint,TUint)
CBase::~CBase()
CMdaImageUtility::CMdaImageUtility()
CMdaImageUtility::Close()
CMdaImageUtility::FrameCount()const
CMdaImageUtility::FrameInfo(TInt,TFrameInfo &)const
CMdaImageUtility::ImageUtil_Reserved1()
CMdaImageUtility::ImageUtil_Reserved2()
CMdaImageUtility::ImageUtil_Reserved3()
CMdaImageUtility::ImageUtil_Reserved4()
CMdaImageUtility::MoscoStateChangeEvent(CBase *,TInt,TInt,TInt)
CMdaImageUtility::SelfComplete(TInt)
CMdaImageUtility::~CMdaImageUtility()
Inherited Enumerations
CActive:TPriority
Inherited Attributes
CActive::iStatus
CMdaImageUtility::iProperties

Constructor & Destructor Documentation

~CMdaImageBitmapToBitmapUtility()

IMPORT_C ~CMdaImageBitmapToBitmapUtility ( )

Destructor.

Member Functions Documentation

CancelConvertL()

IMPORT_C void CancelConvertL ( ) [virtual]

Cancels any conversion in progress.

The callback function MMdaImageUtilObserver::MiuoConvertComplete() is not called.

ConvertL(CFbsBitmap &, TInt)

IMPORT_C void ConvertL ( CFbsBitmap & aBitmap,
TInt aFrameNumber = 0
) [virtual]

Converts a bitmap.

The operation is asynchronous. When the conversion operation is complete, successfully or otherwise, the callback function MMdaImageUtilObserver::MiuoConvertComplete() is called.

Parameters

CFbsBitmap & aBitmap The destination bitmap.
TInt aFrameNumber = 0 The frame number. This value is relative to zero.

ConvertL(CFbsBitmap &, CFbsBitmap &, TInt)

IMPORT_C void ConvertL ( CFbsBitmap & aBitmap,
CFbsBitmap & aMaskBitmap,
TInt aFrameNumber = 0
) [virtual]

Converts a bitmap with a mask. Not supported

Since
Not supported

Parameters

CFbsBitmap & aBitmap A reference to the bitmap which is the target of the conversion operation.
CFbsBitmap & aMaskBitmap The overloaded variant which takes this argument is not supported for bitmap to bitmap conversion. This variant leaves with KErrNotSupported.
TInt aFrameNumber = 0 The frame number. This value is relative to zero.

DoCancel()

void DoCancel ( ) [virtual]

Implements cancellation of an outstanding request.

DoClose()

void DoClose ( ) [protected, virtual]

NewL(MMdaImageUtilObserver &, CMdaServer *)

IMPORT_C CMdaImageBitmapToBitmapUtility * NewL ( MMdaImageUtilObserver & aObserver,
CMdaServer * aServer = NULL
) [static]

Constructs and initialises a new instance of the bitmap converter.

The function leaves if the bitmap converter object cannot be created.

Parameters

MMdaImageUtilObserver & aObserver The image utility observer interface.
CMdaServer * aServer = NULL A pointer to a server object. The default is NULL which means that one is automatically constructed and owned by this conversion utility object. If not NULL, the client must construct, and be responsible for, the server object. This option may be more efficient if a number of conversion utility objects are to be created.

OpenL(CFbsBitmap &)

IMPORT_C void OpenL ( CFbsBitmap & aBitmap )

Opens the bitmap converter utility.

The function is asynchronous. When the open operation is complete, successfully or otherwise, the callback function MMdaImageUtilObserver::MiuoOpenComplete() is called.

The source bitmap must be open before any conversion operation can start.

Parameters

CFbsBitmap & aBitmap The bitmap to be used as the source for subsequent conversions.

Properties()

CMdaImageBitmapToBitmapUtilityPriv * Properties ( ) const [private, inline]

RunL()

void RunL ( ) [virtual]

Handles an active object's request completion event.

A derived class must provide an implementation to handle the completed request. If appropriate, it may issue another request.

The function is called by the active scheduler when a request completion event occurs, i.e. after the active scheduler's WaitForAnyRequest() function completes.

Before calling this active object's RunL() function, the active scheduler has:

1. decided that this is the highest priority active object with a completed request

2. marked this active object's request as complete (i.e. the request is no longer outstanding)

RunL() runs under a trap harness in the active scheduler. If it leaves, then the active scheduler calls RunError() to handle the leave.

Note that once the active scheduler's Start() function has been called, all user code is run under one of the program's active object's RunL() or RunError() functions.

CActiveScheduler::Start CActiveScheduler::Error CActiveScheduler::WaitForAnyRequest TRAPD