#include <w32adll.h>
class CWindowAnim : public CAnim |
Protected Attributes | |
---|---|
CAnimGc * | iGc |
MAnimWindowFunctions * | iWindowFunctions |
Public Member Functions | |
---|---|
pure virtual void | ConstructL(TAny *, TBool) |
pure virtual void | FocusChanged(TBool) |
pure virtual void | Redraw() |
Protected Member Functions | |
---|---|
CWindowAnim() |
Inherited Attributes | |
---|---|
CAnim::iFunctions |
Window animation interface.
This interface is provided to create animations other than sprites. A window animation can be provided by deriving from this class.
The interface inherits from CAnim and has access to its functions. It additionally can access an interface for querying and manipulating the window in which the animation takes place, using its iWindowFunctions member.
The derived class is constructed in the DLL factory class CAnimDll::CreateInstanceL().
See also: CFreeTimerWindowAnim CSpriteAnim
MAnimWindowFunctions * | iWindowFunctions | [protected] |
Pointer to a class containing functions implemented by the window server.
These are available to any CWindowAnim-derived class.
Note that this and the iGc pointer are automatically set for you by the animation framework - you do not need to assign a value to them.
CWindowAnim | ( | ) | [protected, inline] |
Protected constructor.
Prevents objects of this class being directly constructed.
Server side construction and initialisation of an animation class.
Note: the aHasFocus argument allows the animation to start in a known focus state. For example, an animation may or may not have focus, depending on how it was started. Together with the FocusChanged() function, this allows an animation to always know its focus state.
Parameters | |
---|---|
aArgs | Packaged arguments which may be required during construction. These are transferred from the aParams argument of the client side constructor's RAnim::Construct(). |
aHasFocus | Specifies whether or not the animation has window server focus. |
void | FocusChanged | ( | TBool | aState | ) | [pure virtual] |
Notifies change of focus.
The function is called by the window server to notify a change of focus, allowing the animation code to track whether it does or does not have focus, and to change its appearance accordingly.
Parameters | |
---|---|
aState | Indicates whether the focus has or has not changed. |