Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <bmpancli.h>
Link against: bmpanim.lib

Class RBitmapAnim

class RBitmapAnim : public RAnim;

Description

Enables a client to package animation data, and send it to the window server for display.

Before using RBitmapAnim, a client must instantiate an RAnimDll. This provides a reference to the window server DLL that runs the animation specified through the RBitmapAnim::RBitmapAnim(RAnimDll &) object. To complete construction, call RBitmapAnim::ConstructL(const RWindowBase &).

Derivation

Members

Defined in RBitmapAnim:

Inherited from RAnim:


Construction and destruction


RBitmapAnim(RAnimDll &)

IMPORT_C RBitmapAnim(RAnimDll &aAnimDll);

Description

Constructor.

Parameters

RAnimDll &aAnimDll

A reference to the DLL that runs the animation


ConstructL(const RWindowBase &)

IMPORT_C void ConstructL(const RWindowBase &aWindow);

Description

Completes construction of an animation object.

This must be done after calling RBitmapAnim::RBitmapAnim(RAnimDll &), and before an application attempts any other communication with the server.

Parameters

const RWindowBase &aWindow

A reference to the container control window that will hold the animation.

[Top]


Member functions


DisplayFrameL(TInt)

IMPORT_C void DisplayFrameL(TInt aIndex);

Description

Sets the animation frame to display.

How it appears depends on whether the animation is already running. If the animation is running, the animation jumps to the specified frame, then continues playing. If the animation is not running, the animation is played, starting with the specified frame

Parameters

TInt aIndex

The frame to display.


SetBitmapAnimDataL(const CBitmapAnimClientData &)

IMPORT_C void SetBitmapAnimDataL(const CBitmapAnimClientData &aBitmapAnimData);

Description

Specifies the animation object to play and sends it to the animation server.

To start the animation, you must subsequently call RBitmapAnim::StartL(). Calling this method while an animation is running will stop the animation.

Parameters

const CBitmapAnimClientData &aBitmapAnimData

The animation object to play


SetFlashL(TBool)

IMPORT_C void SetFlashL(TBool aFlash);

Description

Sets or unsets the animation to be drawn flashing.

Parameters

TBool aFlash

ETrue to draw the animation flashing, otherwise EFalse.


SetFrameIntervalL(TInt)

IMPORT_C void SetFrameIntervalL(TInt aFrameIntervalInMilliSeconds);

Description

Specifies the number of milliseconds for which each frame in the animation is displayed.

This is not used for any frames in the animation that specify their own interval.

Parameters

TInt aFrameIntervalInMilliSeconds

The number of milliseconds for which each frame in the animation is displayed


SetPlayModeL(CBitmapAnimClientData::TPlayMode)

IMPORT_C void SetPlayModeL(CBitmapAnimClientData::TPlayMode aPlayMode);

Description

Sets the current animation's play mode.

Parameters

CBitmapAnimClientData::TPlayMode aPlayMode

The animation's play mode.


StartL()

IMPORT_C void StartL();

Description

Starts the animation.

You must first specify an animation with RBitmapAnim::SetBitmapAnimDataL(const CBitmapAnimClientData &).

If you have specified CBitmapAnimClientData::ECycle or CBitmapAnimClientData::EBounce as the animation's play mode, but have not specified the number of cycles using RBitmapAnim::SetNumberOfCyclesL(TInt), you must call RBitmapAnim::StopL() to stop the animation.


StopL()

IMPORT_C void StopL();

Description

Stops the animation.


SetNumberOfCyclesL(TInt)

IMPORT_C void SetNumberOfCyclesL(TInt aNumberOfCycles);

Description

Sets how many times the animation is played.

If the play mode is CBitmapAnimClientData::EBounce, the number of cycles must be at least two to ensure a complete animation routine is played.

Parameters

TInt aNumberOfCycles

The number of times to play the animation.


SetPositionL(TPoint)

IMPORT_C void SetPositionL(TPoint aPosition);

Description

Sets the animation's position relative to the animation window.

Parameters

TPoint aPosition

The animation's position relative to the animation window