sl@0: // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Header for writing animated DLL add ons sl@0: // sl@0: // sl@0: sl@0: #if !defined(__W32ADLL_H__) sl@0: #define __W32ADLL_H__ sl@0: sl@0: #if !defined(__W32STD_H__) sl@0: #include sl@0: #endif sl@0: sl@0: #if !defined(__BITSTD_H__) sl@0: #include sl@0: #endif sl@0: sl@0: /** sl@0: @publishedAll sl@0: @deprecated sl@0: */ sl@0: const TUint KWservAnimDllUidValue8=268435858; sl@0: sl@0: /** sl@0: @publishedAll sl@0: @deprecated sl@0: */ sl@0: const TUid KWservAnimDllUid8={KWservAnimDllUidValue8}; sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: const TUint KWservAnimDllUidValue16=268450594; sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: const TUid KWservAnimDllUid16={KWservAnimDllUidValue16}; sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: const TUint KWservAnimDllUidValue=KWservAnimDllUidValue16; sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: const TUid KWservAnimDllUid={KWservAnimDllUidValue}; sl@0: sl@0: // sl@0: // Contains functions callable from animated DLLs sl@0: // sl@0: sl@0: sl@0: class TWindowInfo sl@0: /** Animation window information. sl@0: sl@0: Stores the window position and display mode for the animation. sl@0: During a redraw of the animation window, the redraw regions sl@0: can be retrieved by calling GetRedrawRegionAndRedrawShadowRegion(). sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see TWindowInfo::GetRedrawRegionAndRedrawShadowRegion() */ sl@0: { sl@0: public: sl@0: /** The screen position. */ sl@0: TRect iScreenPos; sl@0: /** The display mode. sl@0: sl@0: This is the minimum display mode that the screen has to be in to display this window. */ sl@0: TDisplayMode iMode; sl@0: public: sl@0: /** Constructs an animation window information object. */ sl@0: inline TWindowInfo() : iRegionPair(NULL) {} sl@0: public: sl@0: /** Stores a pair of region pointers. */ sl@0: struct TRegionPair sl@0: { sl@0: const TRegion* iRegion1; sl@0: const TRegion* iRegion2; sl@0: }; sl@0: /** Returns the current redraw region and redraw shadow region. sl@0: This function must only be called from an override of CWindowAnim's pure virtual Redraw function. sl@0: The region pointers retrieved must not be used beyond the end of the Redraw override. sl@0: @param aRedrawRegion The redraw region in screen coordinates. sl@0: @param aRedrawShadowRegion The redraw shadow region in screen coordinates. */ sl@0: inline void GetRedrawRegionAndRedrawShadowRegion(const TRegion*& aRedrawRegion, const TRegion*& aRedrawShadowRegion) const sl@0: { sl@0: if (iRegionPair) sl@0: { sl@0: aRedrawRegion=iRegionPair->iRegion1; sl@0: aRedrawShadowRegion=iRegionPair->iRegion2; sl@0: iRegionPair=NULL; sl@0: } sl@0: else sl@0: { sl@0: aRedrawRegion=NULL; sl@0: aRedrawShadowRegion=NULL; sl@0: } sl@0: } sl@0: private: sl@0: mutable const TRegionPair* iRegionPair; sl@0: TAny *iFree2; sl@0: friend class CWsAnim; sl@0: }; sl@0: sl@0: sl@0: class MEventHandler sl@0: /** Event handler interface. sl@0: sl@0: The interface provides a function to handle raw events, e.g. key presses, sl@0: pen events, power buttons etc. Raw events are passed to the OfferRawEvent() sl@0: function when the MAnimGeneralFunctions::GetRawEvents() function has been sl@0: called. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: /** Handles raw events. sl@0: sl@0: If the incoming event can be handled, the function should sl@0: process it and then return true. If it cannot be processed the function should sl@0: return false, and the event will be passed to other event handling code. sl@0: sl@0: This function must be implemented in every animation DLL. If event sl@0: handling is not required, the function should simply return false. sl@0: sl@0: @param aRawEvent The raw event to be processed sl@0: @return ETrue if the raw event is handled by this function, EFalse if the function sl@0: chooses not to process it. */ sl@0: virtual TBool OfferRawEvent(const TRawEvent &aRawEvent)=0; sl@0: }; sl@0: sl@0: enum TAnimNotifications sl@0: /** Bit flags to be used by anims when registering for notifications */ sl@0: { sl@0: /** Notify when direct screen access begins or ends.*/ sl@0: EDirectScreenAccess = 0x0001, sl@0: /** Notify when the wserv heartbeat timer starts or stops. */ sl@0: EHeartbeatTimer = 0x0002, sl@0: /** Notify when screen device changes.*/ sl@0: EScreenDeviceChange = 0x0004 sl@0: }; sl@0: //Forward Declaration. sl@0: class MAnimGeneralFunctionsWindowExtension; sl@0: class MAnimGeneralFunctionsEventExtension ; sl@0: sl@0: class MAnimGeneralFunctions sl@0: /** General animation utility functions interface. sl@0: sl@0: The interface provides functions to set the animation timing, sl@0: event functions, and other general functions. sl@0: sl@0: You do not have to create an object of this type. The class is implemented sl@0: by the window server and provides utility functions to all CAnim-derived sl@0: classes via the CAnim::iFunctions pointer. sl@0: sl@0: It is not intended for user derivation. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: /** Animation synchronisation flags. sl@0: sl@0: The animation can be synchronised to any of these values; sl@0: the Animate() call will take place at the start of the new unit (day, hour, etc...). */ sl@0: enum TAnimSync sl@0: { sl@0: /** Not synchronised. Animate() is called after some number of flash cycles - sl@0: set by SetSync(). */ sl@0: ESyncNone, sl@0: /** Animate() every flash tick. This occurs twice a second, on the second and after sl@0: 7/12ths of a second, e.g. the function is called in a flash-on (7/12 seconds) - sl@0: flash-off (5/12 seconds) cycle. */ sl@0: ESyncFlash, sl@0: /** Animate() called as soon after every second as system activity allows. */ sl@0: ESyncSecond, sl@0: /** Animate() called as soon after every minute as system activity allows. */ sl@0: ESyncMinute, sl@0: /** Animate() called as soon after midnight every day as system activity allows. */ sl@0: ESyncDay, sl@0: }; sl@0: enum sl@0: { sl@0: ENumberOfExtendedInterfaces=0, sl@0: EWindowExtensionInterface, sl@0: EEventExtentionInterface, sl@0: EInterfaceCount, // Always keep at the end. sl@0: }; sl@0: //Timing functions sl@0: /** Calls the DLL's Animate() function then deactivates the graphics context. sl@0: sl@0: This allows users to do drawing from their own active object. sl@0: sl@0: Note: sl@0: sl@0: If the user calls the CAnim-derived classes' Animate() function directly, sl@0: or otherwise does drawing from their own active object, then this will not sl@0: deactivate the graphics context. This causes the window server to panic the sl@0: client. sl@0: sl@0: Alternatively, use CFreeTimerWindowAnim, which allows you to deactivate the sl@0: graphics context yourself. sl@0: sl@0: @param aDateTime The parameter passed into the animation DLL's Animate() sl@0: function. */ sl@0: virtual void Animate(TDateTime *aDateTime)=0; sl@0: /** Sets the synchronisation mode. sl@0: sl@0: This determines the time intervals between calls to the Animate() function. sl@0: sl@0: @param aSyncMode The synchronisation mode. */ sl@0: virtual void SetSync(TAnimSync aSyncMode)=0; sl@0: /** Sets the repeat interval. sl@0: sl@0: If the synchronisation mode is TAnimSync::ESyncNone, then the Animate() function sl@0: is called at intervals defined by some number of flash ticks. There are two sl@0: flash ticks a second, with a 7/12 second - 5/12 second cycle. If the function sl@0: is called when the synchronisation mode is not TAnimSync::ESyncNone, then sl@0: the window server panics the client. sl@0: sl@0: If the new interval is greater than the current countdown, then the call does sl@0: not affect the current countdown. For example, if the countdown has 10 flash sl@0: ticks remaining, and the interval is set to 20, the new interval does not sl@0: apply until the current countdown is complete. sl@0: sl@0: However if the new interval is less the current countdown, then the new interval sl@0: applies immediately i.e. the countdown is reset to the interval value. sl@0: sl@0: If the interval is set to zero the countdown stops, and the Animate() function sl@0: is no longer called. sl@0: sl@0: @param aInterval The number of flash ticks between calls to the Animate() sl@0: function. */ sl@0: virtual void SetInterval(TInt aInterval)=0; sl@0: /** Sets the next interval. sl@0: sl@0: This function immediately resets the current countdown to the specified number sl@0: of flash ticks, irrespective of its current value. After the countdown expires, sl@0: the interval returns to its usual rate. Note that this may be zero (i.e. sl@0: not at all). sl@0: sl@0: To call this function, the synchronisation mode must be TAnimSync::ESyncNone, sl@0: otherwise the window server panics the client. sl@0: sl@0: Note: there are two flash ticks a second, with a 7/12 second - 5/12 second cycle. sl@0: sl@0: @param aInterval The interval to the next Animate(). If the value is less sl@0: than 1, it automatically gets set to 1. sl@0: @see SetInterval() */ sl@0: virtual void SetNextInterval(TInt aInterval)=0; sl@0: /** Gets the system time as it was when Animate() was last called. sl@0: sl@0: @return The system time when Animate() was last called. */ sl@0: virtual TDateTime SystemTime() const=0; sl@0: /** Tests the flash cycle state. sl@0: sl@0: The flash cycle has 2 states: on (7/12 second) or off (5/12 second). sl@0: sl@0: @return ETrue if in the on part of the flash cycle, otherwise EFalse. */ sl@0: virtual TBool FlashStateOn() const=0; sl@0: /** Gets the current synchronisation mode. sl@0: sl@0: @return The current sync mode. */ sl@0: virtual TAnimSync Sync() const=0; sl@0: //Other functions generally useful sl@0: /** Gets a pointer to the screen device. sl@0: sl@0: For example, this might be used to gain access to twips to pixel conversion functions. sl@0: sl@0: @return A pointer to the screen device. */ sl@0: virtual const CFbsScreenDevice *ScreenDevice()=0; sl@0: /** Creates and duplicates a bitmap from a handle. sl@0: sl@0: This function might be used to duplicate client side bitmaps on the server side. sl@0: sl@0: @param aHandle A handle to the bitmap to be duplicated. sl@0: @return A pointer to the duplicate bitmap. */ sl@0: virtual CFbsBitmap *DuplicateBitmapL(TInt aHandle)=0; sl@0: /** Creates and duplicates a font from a handle. sl@0: sl@0: This function might be used to duplicate client side fonts on the server side. sl@0: sl@0: @param aHandle A handle to the font to be duplicated. sl@0: @return A pointer to the duplicate font. */ sl@0: virtual CFbsFont *DuplicateFontL(TInt aHandle)=0; sl@0: /** Closes a duplicate font. sl@0: sl@0: @param Pointer to the duplicate font. sl@0: @see DuplicateFontL() */ sl@0: virtual void CloseFont(CFbsFont *)=0; sl@0: /** Gets a reference to the calling client's thread. sl@0: sl@0: @return A reference to the calling client's thread. */ sl@0: virtual const RThread &Client()=0; sl@0: /** Send a reply to the client process in response to a request sl@0: from the client. sl@0: sl@0: @see RAnim::CommandReply() sl@0: sl@0: @param aDes The data to be sent back to the client sl@0: */ sl@0: virtual void ReplyBuf(const TDesC8 &aDes)=0; sl@0: /** Send a reply to the client process in response to a request sl@0: from the client. sl@0: sl@0: @see RAnim::CommandReply() sl@0: sl@0: @param aDes The data to be sent back to the client sl@0: */ sl@0: virtual void ReplyBuf(const TDesC16 &aDes)=0; sl@0: /** Panics the client. sl@0: sl@0: This will result in the client thread being destroyed. */ sl@0: virtual void Panic() const=0; sl@0: sl@0: //Event functions sl@0: sl@0: /** Switches animation raw event handling on and off. sl@0: sl@0: If raw event handling is switched on, then raw events, e.g. pointer, key, or power events sl@0: are all offered to the animation event handling code's MEventHandler::OfferRawEvent(). sl@0: sl@0: If Animation works in a window for which advanced pointers have been enabled, sl@0: then after switching on raw event handling it will receive pointer events from all sl@0: detected pointers. Otherwise it will receive events only from one emulated pointer. sl@0: sl@0: @param aGetEvents If ETrue, raw events are passed to the animation sl@0: event handling code. If EFalse, events are not passed to the animation. sl@0: @see RWindowBase::EnableAdvancedPointers() */ sl@0: virtual void GetRawEvents(TBool aGetEvents) const=0; sl@0: /** Posts a raw event, just as if it had come from the kernel. sl@0: sl@0: If aRawEvent has pointer-related type (move, switch on, down, up or out of range), sl@0: then its Z coordinate and iPointerNumber fields will be validated and may be sl@0: overwritten by WSERV in order to guarantee correct behaviour depending on: sl@0: 1. Pointer Pressure and Proximity support on current platform. sl@0: 2. Multiple pointers support on current platform. sl@0: 3. Animation's awareness of these fields. If Animation works in a window sl@0: for which advanced pointers have been enabled, it is assumed that it has sl@0: initialized these fields. Otherwise WSERV will assume that these fields have sl@0: not been provided and may overwrite them with most appropriate values. sl@0: For more information about event validation, please refer to System Documentation. sl@0: sl@0: @param aRawEvent The raw event sl@0: @see RWindowBase::EnableAdvancedPointers() */ sl@0: virtual void PostRawEvent(const TRawEvent &aRawEvent) const=0; sl@0: /** Posts a key event. sl@0: sl@0: The function is similar to PostRawEvent() but should be sl@0: used for posting key events. sl@0: sl@0: @param aRawEvent The key event. */ sl@0: virtual void PostKeyEvent(const TKeyEvent &aRawEvent) const=0; sl@0: /** Get the address of an object which can retrieve information from and send sl@0: information to the client-side. sl@0: sl@0: @return A pointer to RMessagePtr2. Complete must be called on the returned object (or a sl@0: copy of it) if and only if Message is called from an override of CAnim's CommandReplyL which sl@0: has been caused by a client-side RAnim::AsyncCommandReply call. If Message is called outside sl@0: an override of CAnim's CommandReplyL or outside an override of CWindowAnim's ConstructL or sl@0: CSpriteAnim's ConstructL, the it returns NULL. sl@0: @see RMessagePtr2 */ sl@0: virtual const RMessagePtr2* Message()=0; // replaces Reserved1 sl@0: /**Returns an extension interface, maybe extended further in the future. sl@0: @param aInterfaceId The ID of the interface to return. sl@0: @return A pointer to the extension interface. sl@0: When aInterface=0 (ENumberOfExtendedInterfaces), the number of interfaces is returned (currently 2). sl@0: When aInterface=1 (EWindowExtensionInterface), a pointer to the Window Extension interface is returned. sl@0: When aInterface=2 (EEventExtentionInterface), a pointer to the Event Extension interface is returned. sl@0: */ sl@0: virtual TAny* ExtendedInterface(TInt aInterface)=0; // replaces Reserved2 sl@0: sl@0: /** Register to receive notifications. sl@0: @param aNotifications A bitset of TAnimNotifications values indicating which notifications are required sl@0: @return One of the system wide error codes sl@0: */ sl@0: virtual TInt RegisterForNotifications(TUint32 aNotifications)=0; sl@0: /* sl@0: Return number of ExtendedInterfaces. */ sl@0: inline TInt NumberOfExtendedInterfaces() sl@0: { sl@0: return reinterpret_cast(ExtendedInterface(ENumberOfExtendedInterfaces)); sl@0: } sl@0: /** Gets access to Window Extension utility functions. sl@0: @return A pointer to a class containing functions for working with Window. */ sl@0: inline MAnimGeneralFunctionsWindowExtension* WindowExtension() sl@0: { sl@0: return static_cast(ExtendedInterface(EWindowExtensionInterface)); sl@0: } sl@0: /** Gets access to EventExtension utility functions. sl@0: @return A pointer to a class containing functions for working with Event. */ sl@0: inline MAnimGeneralFunctionsEventExtension* EventExtension() sl@0: { sl@0: return static_cast(ExtendedInterface(EEventExtentionInterface)); sl@0: } sl@0: private: sl@0: virtual void Reserved1() const; sl@0: virtual void Reserved2() const; sl@0: virtual void Reserved3() const; sl@0: }; sl@0: sl@0: /* Structure for passing window configuration information. Currently transparancey sl@0: related configuration information is supported, though this may be added to, as sl@0: apprioriate. sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: class TWindowConfig sl@0: { sl@0: public: sl@0: /** Transparency flags. sl@0: sl@0: Used to represent transparency configuration of the window. */ sl@0: enum sl@0: { sl@0: /** Transparency is enabled on the window. */ sl@0: ETransparencyEnabled=0x0001, sl@0: /** Window transparency uses alpha blending channel. */ sl@0: EAlphaBlendedTransparency=0x0002, sl@0: }; sl@0: public: sl@0: /** Indicate configuration of window, using enumerations defined within this class. */ sl@0: TInt iFlags; sl@0: private: sl@0: TInt iReserved0; sl@0: TInt iReserved1; sl@0: TInt iReserved2; sl@0: }; sl@0: sl@0: class MAnimGeneralFunctionsWindowExtension sl@0: /** General Window utility functions interface. sl@0: sl@0: The member functions define the interface for querying and manipulating sl@0: the window and screen attributes. sl@0: sl@0: You obtain one by calling: iFunctions->ExtendedInterface(MAnimGeneralFunctions::EWindowExtensionInterface) sl@0: and casting the result. sl@0: sl@0: It is not intended for user derivation. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: /** Class contains the information pertaining to a window group: name, priority, sl@0: focusability. */ sl@0: class TWindowGroupInfo sl@0: { sl@0: public: sl@0: enum sl@0: { sl@0: /** Window is focusable flag. */ sl@0: EIsFocusable=0x0001, sl@0: }; sl@0: public: sl@0: /** Returns whether or not the window is focusable. sl@0: @return ETrue if focusable, else returns EFalse. */ sl@0: inline TBool IsFocusable() const {return iFlags&EIsFocusable;} sl@0: public: sl@0: /* Window group attributes. */ sl@0: TInt iId; sl@0: TUint32 iFlags; sl@0: TInt iOrdinalPriority; sl@0: TInt iNameLength; sl@0: TInt iParentId; sl@0: }; sl@0: public: sl@0: /** Returns the total number of screens. sl@0: @return The total number of screens. */ sl@0: virtual TInt Screens() const=0; sl@0: sl@0: /** Returns the number of the screen which is currently in focus. sl@0: @return The number of the screen which is currently in focus.*/ sl@0: virtual TInt FocusScreens() const=0; sl@0: sl@0: /** Changes the focused screen. sl@0: @param aScreenNo New screen number. */ sl@0: virtual void SetFocusScreen(TInt aScreenNo)=0; sl@0: sl@0: /** Returns the number of window groups available for the specified screen. sl@0: sl@0: @param aScreen The screen number. sl@0: @return The number of window groups. */ sl@0: virtual TInt WindowGroups(TInt aScreen) const=0; sl@0: sl@0: /** Takes a screen number and an ordinal position and returns the complete window sl@0: group information of the specified window. If the window group does not exist, the sl@0: function returns EFalse. sl@0: sl@0: Note: the ordinal position specified should be the total or full ordinal position sl@0: of all group windows of all priorities on that screen. sl@0: sl@0: @param aInfo on return, complete window information. sl@0: @param aScreen Screen number. sl@0: @param aFullOrdinalPosition Ordinal position of the window. sl@0: @return ETrue if window group information exists, EFalse otherwise. */ sl@0: virtual TBool WindowGroupInfo(TWindowGroupInfo& aInfo,TInt aScreen,TInt aFullOrdinalPosition) const=0; sl@0: sl@0: /** Takes a screen number and an ordinal position and returns the window group name. sl@0: If the window group does not exist, the function returns false. sl@0: sl@0: Note: the ordinal position specified should be the total or full ordinal position of sl@0: all group windows of all priorities on that screen. sl@0: sl@0: Note: if the name does not fit into the descriptor provided then it will be truncated. sl@0: sl@0: @param aWindowName On return, the window group name. sl@0: @param aScreen The screen number. sl@0: @param aFullOrdinalPosition The ordinal position of the window. sl@0: @return ETrue if the window group name exists, EFalse otherwise. */ sl@0: virtual TBool WindowGroupName(TPtrC& aWindowName,TInt aScreen,TInt aFullOrdinalPosition) const=0; sl@0: sl@0: /** Changes the ordinal position and priority of the window group with the specified ID. sl@0: sl@0: @param aWindowGroupId The window group ID. sl@0: @param aPos The ordinal position to move the window to. sl@0: @param aOrdinalPriority The new ordinal priority of the window. sl@0: @return KErrNotFound if there is no window group with the specified ID, KErrNone otherwise. */ sl@0: virtual TInt SetOrdinalPosition(TInt aWindowGroupId,TInt aPos,TInt aOrdinalPriority)=0; sl@0: sl@0: /** Accessor for window configuration. sl@0: sl@0: @param aWindowConfig Gets filled in with window configuration details. */ sl@0: virtual void WindowConfig(TWindowConfig& aWindowConfig) const=0; sl@0: private: sl@0: virtual void Reserved1() const; sl@0: virtual void Reserved2() const; sl@0: virtual void Reserved3() const; sl@0: }; sl@0: sl@0: class MAnimGeneralFunctionsEventExtension sl@0: /** Event utility functions interface. sl@0: sl@0: The member functions define the interface for generate repeated key events . sl@0: sl@0: It is not intended for user derivation. sl@0: */ sl@0: { sl@0: public: sl@0: /** Posts a key event. sl@0: sl@0: The function is similar to PostKeyEvent() but should be sl@0: used for posting repeated key events. sl@0: sl@0: @param aRawEvent The key event. sl@0: @param aRepeats value */ sl@0: virtual void PostKeyEvent(const TKeyEvent& aRawEvent, TInt aRepeats) const=0; sl@0: sl@0: private: sl@0: virtual void Reserved1() const; sl@0: virtual void Reserved2() const; sl@0: }; sl@0: sl@0: class MAnimWindowFunctions sl@0: /** Window utility functions interface. sl@0: sl@0: The member functions define the interface for querying and manipulating sl@0: the window in which the animation takes place. sl@0: sl@0: You do not have to create an object of this type. The class is implemented sl@0: by the window server, and provides these utility functions to all CWindowAnim sl@0: and CFreeTimerWindowAnim derived classes via the iWindowFunctions pointer. sl@0: sl@0: It is not intended for user derivation. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: /** Activates the graphics context. sl@0: sl@0: This function should be called to enable drawing in the CAnim-derived classes' sl@0: Command(), CommandReplyL(), Animate(), or FocusChanged() functions. sl@0: sl@0: Note: this function is called automatically by the animation DLL framework in the sl@0: Redraw() function. */ sl@0: virtual void ActivateGc()=0; sl@0: /** Sets the rectangle that this animation will draw to. sl@0: sl@0: This function must be called as part of the initialisation/construction of sl@0: the CAnim-derived object, i.e. in CAnim::ConstructL(). This is so that the sl@0: window server knows which area the animation is operating in. Anything that sl@0: is drawn by the animation outside this rectangle may not be redrawn correctly sl@0: as the window server uses this rectangle to decide when the animation should sl@0: be redrawn. sl@0: sl@0: @param aRect The rectangle to be drawn to. */ sl@0: virtual void SetRect(const TRect &aRect)=0; sl@0: /** Gets the window size. sl@0: sl@0: @return The window size, in pixels. */ sl@0: virtual TSize WindowSize() const=0; sl@0: /** Tests whether to draw the animation. sl@0: sl@0: If the window is completely hidden, there is normally no need to draw sl@0: the animation. However in some conditions the animation should be drawn even sl@0: if it is obscured. The window server is aware of these cases, and returns sl@0: ETrue if it is not safe to draw the animation. sl@0: sl@0: @return True if the window is completely hidden and there is no requirement sl@0: to continue drawing the animation, otherwise false. */ sl@0: virtual TBool IsHidden()=0; sl@0: /** Sets the visibility of the window the animation is drawing to. sl@0: sl@0: This does the same as RWindowBase::SetVisible(). sl@0: sl@0: @param aState True for visible, false otherwise. */ sl@0: virtual void SetVisible(TBool aState)=0; sl@0: /** Forces a redraw of a rectangular part of the window. sl@0: sl@0: The function causes a redraw message on the part of the window specified, sl@0: which provides a non-immediate way to do drawing. sl@0: sl@0: It can be used to redraw the whole of the window, not just the part used by sl@0: the animation. sl@0: sl@0: @param aRect The rectangle to be redrawn. These co-ordinates are relative sl@0: to the origin of the window. */ sl@0: virtual void Invalidate(const TRect &aRect)=0; sl@0: /** Gets window information. sl@0: sl@0: @param aData The window information. */ sl@0: virtual void Parameters(TWindowInfo &aData)=0; sl@0: /** Gets the visible region. sl@0: sl@0: This region is the area of the visible window which sl@0: is currently unshadowed. If there is not enough memory to calculate this region sl@0: then aRegion's error flag is set. sl@0: sl@0: @param aRegion The visible region. */ sl@0: virtual void VisibleRegion(TRegion& aRegion)=0; sl@0: //virtual void CopyScreen(CFbsBitGc *aBitmapGc,TRect aRect)=0; sl@0: private: sl@0: virtual void Reserved() const; sl@0: virtual void Reserved1() const; sl@0: virtual void Reserved2() const; sl@0: virtual void Reserved3() const; sl@0: }; sl@0: sl@0: sl@0: class MAnimFreeTimerWindowFunctions : public MAnimWindowFunctions sl@0: /** Free timer animation utility functions interface. sl@0: sl@0: The class inherits functions from MAnimWindowFunctions, and defines the additional sl@0: interface required for window operations which support animations with their sl@0: own timers. sl@0: sl@0: You do NOT have to create an object of this type. The class is implemented sl@0: by the window server, and provides utility functions to all CFreeTimerWindowAnim sl@0: derived classes via the WindowFunctions() member. sl@0: sl@0: It is not intended for user derivation. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: /** Deactivates the graphics context. sl@0: sl@0: This function is used in the context of a CFreeTimerWindowAnim derived class sl@0: when writing animation DLLs with their own timer. Within the timer's RunL(), sl@0: the ActivateGc() function should be called prior to drawing to the window. sl@0: DeactivateGc() should be called after drawing is finished. */ sl@0: virtual void DeactivateGc()=0; sl@0: /** Forces the screen to update. */ sl@0: virtual void Update()=0; sl@0: private: sl@0: virtual void Reserved3() const; sl@0: }; sl@0: sl@0: class MAnimSpriteFunctions sl@0: /** Sprite animation utility functions interface. sl@0: sl@0: The interface includes functions for querying and manipulating a sprite. sl@0: sl@0: You do NOT have to create an object of this type. The class is implemented sl@0: by the window server, and provides utility functions to all CSpriteAnim derived sl@0: classes via the CSpriteAnim::iSpriteFunctions pointer. sl@0: sl@0: It is not intended for user derivation. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: /** Gets sprite member data. sl@0: sl@0: Each member of the sprite is effectively a bitmap, which is displayed for a sl@0: different amount of time. sl@0: sl@0: @param aMember The index of the sprite member for which information is required. sl@0: @return A pointer to the sprite member. */ sl@0: virtual TSpriteMember *GetSpriteMember(TInt aMember) const=0; sl@0: /** Redraws part of a sprite. sl@0: Updates a sprite on the screen, possibly after the bitmap for a particular sl@0: sprite member has been changed. sl@0: sl@0: Use the aRect parameter to specify the (small) part of the sprite which has been changed, sl@0: then any flicker will only occur in this rectangle. sl@0: sl@0: A full update used to be required if you had removed pixels from the mask, i.e. made sl@0: pixels in the sprite transparent when they were not before. If drawing is sl@0: additive, e.g. you are using a mask or the draw mode is EDrawModePEN, a partial sl@0: update used to be possible. But current versions of the window-server always do full back to front rendering. sl@0: sl@0: Note: if the sprite member aMember is not visible then there is no need for a change sl@0: to the display, so the aRect and aFullUpdate parameters are ignored. sl@0: sl@0: @param aMember The index of the sprite member that is to be updated. sl@0: @param aRect The part of the sprite member which has changed. sl@0: @param aFullUpdate Not used. Wserv now always do full back to front rendering. */ sl@0: virtual void UpdateMember(TInt aMember,const TRect& aRect,TBool aFullUpdate)=0; sl@0: /** Turns a sprite on or off. sl@0: sl@0: In effect this makes the sprite bitmap visible. sl@0: sl@0: @param aActive ETrue to turn sprite on. EFalse to turn it off. */ sl@0: virtual void Activate(TBool aActive)=0; sl@0: /** Finishes constructing the sprite. sl@0: sl@0: It also sets the currently displayed sprite member to zero. sl@0: sl@0: This function must be called after members change size. */ sl@0: virtual void SizeChangedL()=0; sl@0: /** Set the sprite's position. sl@0: sl@0: @param aPos The new position of the sprite. */ sl@0: virtual void SetPosition(const TPoint &aPos)=0; sl@0: private: sl@0: virtual void Reserved() const; sl@0: public: sl@0: /** Returns the visibility of the sprite. sl@0: sl@0: A sprite can be seen if it is neither obscured by another window nor hidden. sl@0: sl@0: @return ETrue if the sprite can be seen, EFalse otherwise. */ sl@0: virtual TBool SpriteCanBeSeen() const = 0; sl@0: private: sl@0: virtual void Reserved2() const; sl@0: virtual void Reserved3() const; sl@0: virtual void Reserved4() const; sl@0: }; sl@0: sl@0: sl@0: class CAnimGc : public CBitmapContext sl@0: /** Animation graphics context. sl@0: sl@0: An object of this type is linked into CAnim by the window server, which allows sl@0: you to draw to the animation window. The object's functions allow you to set sl@0: and cancel the clipping region, and to draw to the visible window using sl@0: the inherited CBitmapContext functions. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: /** Sets the clipping region. sl@0: sl@0: Only the parts of the animation which are within the clipping region are drawn. sl@0: sl@0: @param aRegion The clipping region. */ sl@0: virtual TInt SetClippingRegion(const TRegion &aRegion)=0; sl@0: /** Cancels the clipping region. sl@0: sl@0: @see SetClippingRegion() */ sl@0: virtual void CancelClippingRegion()=0; sl@0: }; sl@0: sl@0: class CWsAnim; // Forward ref for friend declaration sl@0: sl@0: sl@0: class CAnim : public CBase , public MEventHandler sl@0: /** Server side animated object base interface. sl@0: sl@0: Animations implement this interface, which is called by the window server sl@0: to pass commands from clients, perform a step in the animation, or to pass sl@0: window server events (if required) so that the animation can handle them sl@0: before the application. sl@0: sl@0: The functions are all pure virtual, and must be implemented in sl@0: the derived class to provide server side behaviour. The functions will be sl@0: called by the window server with optional arguments passed in from the client sl@0: side animation class RAnim. sl@0: sl@0: You should derive from CWindowAnim, CFreeTimerWindowAnim or CSpriteAnim, sl@0: depending on whether the animation is to draw to a sprite or a window, sl@0: rather than directly from this class. sl@0: sl@0: The derived class is constructed in the DLL factory class CAnimDll::CreateInstanceL() sl@0: function. sl@0: sl@0: The operation to perform an animation step is called by the window server sl@0: on a timer. The timing properties are set through an MAnimGeneralFunctions sl@0: member, which also provides other utility functions. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: /** Implements client-side initiated commands, returning a value. sl@0: sl@0: The window server calls this function in response to application calls to sl@0: the client side command function RAnim::CommandReplyL(). The arguments passed sl@0: to the function by the window server are the same as were used on the client sl@0: side function call. sl@0: sl@0: This function returns values to the client side, and should be used to return sl@0: error codes for commands which might leave. sl@0: sl@0: @param aOpcode Opcode understood by the class. sl@0: @param aArgs Arguments packaged on the client side, for example as a struct sl@0: of a type determined by the aOpcode argument. These mirror the aArgs argument sl@0: passed in to RAnim::CommandReply(). sl@0: @return Value passed back to client side function when this function completes. sl@0: Typically this would be KErrNone or another of the system-wide error codes. sl@0: However any value may be returned to the client side. sl@0: @see RAnim */ sl@0: virtual TInt CommandReplyL(TInt aOpcode, TAny *aArgs)=0; sl@0: /** Implements client-side initiated commands. sl@0: sl@0: The window server calls this function in response to application calls to sl@0: the client side command function RAnim::Command(). The arguments passed to sl@0: the function by the window server are the same as were used on the client sl@0: side function call. sl@0: sl@0: Because this function does not return errors, it is not safe for commands sl@0: which might leave. sl@0: sl@0: @param aOpcode Opcode understood by the class sl@0: @param aArgs Arguments packaged on the client side, for example as a struct sl@0: of a type determined by the aOpcode argument. These mirror the aArgs argument sl@0: passed in to RAnim::Command(). sl@0: @see RAnim */ sl@0: virtual void Command(TInt aOpcode, TAny *aArgs)=0; sl@0: /** Main animation function, called by the window server. sl@0: sl@0: The drawing code which implements a given animation should be provided here. sl@0: sl@0: This function is called at a frequency determined by the SetSync() helper sl@0: function. Note that if sync is not set, then this function will never be sl@0: called. This effect can be exploited to use the animation framework, with sl@0: its server side speed, for what are strictly not animations, e.g. for streaming sl@0: video images. sl@0: sl@0: The aDateTime parameter will be null if the current time (as determined by sl@0: the window server) matches the time implied by the sync period, modulo normalisation, sl@0: otherwise it will contain a valid (non-normalised) time. sl@0: sl@0: Normalisation is to some specified granularity, for example if one minute sl@0: is specified as the animation frequency, then in effect the window server sl@0: will decide whether the implied time is correct to the minute, but not to sl@0: the second. sl@0: sl@0: Implied time is the time implied by the (normalised) actual time of the previous sl@0: animation call plus the sync interval. For example if the last call was at sl@0: time 't' and the sync interval is 1 second then if the time at this call sl@0: is t + 1 second, then actual time and implied time match and the value placed sl@0: into aDateTime will be NULL. sl@0: sl@0: Cases in which the two may not match include, for example, system time having sl@0: been reset between animation calls (perhaps British Summer Time or other daylight sl@0: saving time has just come into effect). The intention is that when system sl@0: time changes, a mechanism is provided to alert the animation code and allow sl@0: it to reset itself. The assumption is that somewhere in its initialisation sl@0: code, the animation will have performed a CAnimFunctions utility call to set sl@0: a base time, which is then implicitly tracked by incrementing by a suitable sl@0: interval; when aDateTime is non-NULL after a call to Animate(), base time sl@0: should be reset. sl@0: sl@0: @param aDateTime Null if the current time w.r.t. the window server matches sl@0: the time implied by the synch period. Otherwise a valid (non-normalised) time. */ sl@0: virtual void Animate(TDateTime *aDateTime)=0; sl@0: virtual void HandleNotification(const TWsEvent& /*aEvent*/) {}; sl@0: private: sl@0: inline CAnim() {} sl@0: virtual void Reserved1() const {}; sl@0: virtual void Reserved2() const {}; sl@0: virtual void Reserved3() const {}; sl@0: protected: sl@0: /** Pointer to a class containing functions implemented by the window server. sl@0: sl@0: These are available to any CAnim derived class. sl@0: sl@0: Note that this value is automatically set for you by the animation framework. sl@0: You do not need to assign a value to this pointer. sl@0: @publishedAll sl@0: @released */ sl@0: MAnimGeneralFunctions *iFunctions; sl@0: friend class CWsAnim; sl@0: friend class CWindowAnim; sl@0: friend class CSpriteAnim; sl@0: }; sl@0: sl@0: sl@0: class CWindowAnim : public CAnim sl@0: /** Window animation interface. sl@0: sl@0: This interface is provided to create animations other than sprites. A window sl@0: animation can be provided by deriving from this class. sl@0: sl@0: The interface inherits from CAnim and has access to its functions. It additionally sl@0: can access an interface for querying and manipulating the window in which sl@0: the animation takes place, using its iWindowFunctions member. sl@0: sl@0: The derived class is constructed in the DLL factory class CAnimDll::CreateInstanceL(). sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see CFreeTimerWindowAnim sl@0: @see CSpriteAnim */ sl@0: { sl@0: public: sl@0: /** Server side construction and initialisation of an animation class. sl@0: sl@0: Note: the aHasFocus argument allows the animation to start in a known focus state. sl@0: For example, an animation may or may not have focus, depending on how it was sl@0: started. Together with the FocusChanged() function, this allows an animation sl@0: to always know its focus state. sl@0: sl@0: @param aArgs Packaged arguments which may be required during construction. sl@0: These are transferred from the aParams argument of the client side constructor's sl@0: RAnim::Construct(). sl@0: @param aHasFocus Specifies whether or not the animation has window server focus. */ sl@0: virtual void ConstructL(TAny *aArgs, TBool aHasFocus)=0; sl@0: /** Redraws the objects. sl@0: sl@0: The function is called by the window server when it needs to redraw the object. sl@0: The object must provide all the low level drawing code. */ sl@0: virtual void Redraw()=0; sl@0: /** Notifies change of focus. sl@0: sl@0: The function is called by the window server to notify a change of focus, sl@0: allowing the animation code to track whether it does or does not have focus, sl@0: and to change its appearance accordingly. sl@0: sl@0: @param aState Indicates whether the focus has or has not changed. */ sl@0: virtual void FocusChanged(TBool aState)=0; sl@0: protected: sl@0: /** Protected constructor. sl@0: sl@0: Prevents objects of this class being directly constructed. */ sl@0: inline CWindowAnim() {} sl@0: private: sl@0: virtual void ReservedW1() const {}; sl@0: virtual void ReservedW2() const {}; sl@0: protected: sl@0: /** Pointer to a class containing functions implemented by the window server. sl@0: sl@0: These are available to any CWindowAnim-derived class. sl@0: sl@0: Note that this and the iGc pointer are automatically set for you by the sl@0: animation framework - you do not need to assign a value to them.*/ sl@0: MAnimWindowFunctions *iWindowFunctions; sl@0: /** Pointer to the graphics context. */ sl@0: CAnimGc *iGc; sl@0: friend class CWsAnim; sl@0: }; sl@0: sl@0: sl@0: class CFreeTimerWindowAnim : public CWindowAnim sl@0: /** Free timer animation interface. sl@0: sl@0: This interface allows animations to have their own timers or other active sl@0: objects, and to draw to the window when the timer completes. The implication sl@0: of this is that animations derived from this class can have an extremely short sl@0: user-defined time between calls to the Animate() function, unlike the sl@0: other animation classes, which are tied to the (approximately) half second sl@0: flash cycle. sl@0: sl@0: The interface inherits from CWindowAnim and has access to its functions. It sl@0: additionally can access functions declared in the MAnimFreeTimerWindowFunctions sl@0: interface, using WindowFunctions(). sl@0: sl@0: In order to draw to the window inside the RunL() of your own timer, you will sl@0: need call the ActivateGc() function before doing any drawing, and the DeactivateGc() sl@0: function after finishing the drawing. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see CSpriteAnim */ sl@0: { sl@0: protected: sl@0: inline MAnimFreeTimerWindowFunctions* WindowFunctions() sl@0: /** Gets the free timer utility functions. sl@0: sl@0: These functions include all the MAnimWindowFunctions, sl@0: and additional functions to deactivate the graphics context and to force the sl@0: screen to update. sl@0: sl@0: @return A pointer to the free timer utility functions. */ sl@0: {return STATIC_CAST(MAnimFreeTimerWindowFunctions*,iWindowFunctions);} sl@0: private: sl@0: virtual void ReservedF1() const {}; sl@0: }; sl@0: sl@0: sl@0: class CSpriteAnim : public CAnim sl@0: /** Sprite animation interface. sl@0: sl@0: Sprites are bitmaps that can overlay a window or the screen. A sprite animation sl@0: can be provided by deriving from this class. sl@0: sl@0: The interface inherits from CAnim and has access to its functions. It additionally sl@0: can access an interface for querying and manipulating a sprite, using its sl@0: iSpriteFunctions member. sl@0: sl@0: The derived class is constructed in the DLL factory class CAnimDll::CreateInstanceL() sl@0: function. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see CFreeTimerWindowAnim sl@0: @see CWindowAnim */ sl@0: { sl@0: public: sl@0: /** Server side construction and initialisation of an animation class. sl@0: sl@0: @param aArgs Packaged arguments which may be required during construction. sl@0: These are transferred from the aParams argument of the client side constructor's sl@0: RAnim::Construct(). */ sl@0: virtual void ConstructL(TAny *aArgs)=0; sl@0: protected: sl@0: inline CSpriteAnim() sl@0: /** Protected constructor. sl@0: sl@0: Ensures that only derived classes can be constructed. */ sl@0: {} sl@0: private: sl@0: virtual void ReservedS1() const {}; sl@0: virtual void ReservedS2() const {}; sl@0: protected: sl@0: /** Pointer to a class containing functions implemented by the window server. sl@0: sl@0: These are available to any CSpriteAnim-derived class. sl@0: sl@0: Note that this value is automatically set for you by the animation framework. sl@0: You do not need to assign a value to this pointer. */ sl@0: MAnimSpriteFunctions *iSpriteFunctions; sl@0: friend class CWsAnim; sl@0: }; sl@0: sl@0: sl@0: class CAnimDll : public CBase sl@0: /** Animation DLL factory interface. sl@0: sl@0: An animation DLL class must be a derived class of CAnimDll, and can be thought sl@0: of as a server side factory class. CAnimDll consists of a single pure virtual sl@0: factory function, CreateInstanceL(TInt aType), which is used to create new sl@0: instances of animation objects of type CAnim contained in the DLL. Animation sl@0: DLL objects are created by the CreateCAnimDllL() function, which is called sl@0: by the window server at the request of the client. sl@0: sl@0: For efficiency reasons, it makes sense to collect multiple animation classes sl@0: into a single DLL, even if they are otherwise logically quite separate classes. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: /** Factory function for animation DLLs. sl@0: sl@0: It must be provided in the derived class. sl@0: sl@0: The parameter can be used to differentiate between multiple animation sl@0: classes contained in the same animation DLL. sl@0: sl@0: @param aType Identifies an animation class to be constructed. This is the sl@0: same value as the aType argument of the client side animation constructor sl@0: RAnim::Construct(). It is passed from the client side by the animation framework. sl@0: @return Pointer to a CAnim-derived animation class object. */ sl@0: virtual CAnim *CreateInstanceL(TInt aType)=0; sl@0: }; sl@0: sl@0: #endif