sl@0: // Copyright (c) 2005-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: // WSGRAPHICDRAWERINTEFACE.H sl@0: // Server-side base-classes for graphic drawer plugins sl@0: // sl@0: // sl@0: sl@0: #ifndef __WSGRAPHICDRAWERINTEFACE_H__ sl@0: #define __WSGRAPHICDRAWERINTEFACE_H__ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: class CWsGraphicDrawer; sl@0: struct TGraphicDrawerId; sl@0: class MWsEventHandler; sl@0: class CWsGraphicMessageQueue; sl@0: class CWsClient; sl@0: class CWsWindow; sl@0: sl@0: #if !defined(SYMBIAN_GRAPHICS_GCE) sl@0: class MWsFlickerFreeBufferObserver; sl@0: #endif sl@0: sl@0: class MWsScreenRedrawObserver; sl@0: class MWsMemoryRelease; sl@0: class MEventHandler; sl@0: class MWsElement; sl@0: class MWsGraphicsContext; sl@0: class MWsAnimationScheduler; sl@0: sl@0: /** sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: enum TWinType sl@0: { sl@0: EWinTypeClient, sl@0: EWinTypeRoot, sl@0: EWinTypeGroup, sl@0: }; sl@0: sl@0: /** Declares an object type, ETypeId, for a class, in order to allow the WSERV object sl@0: provider mechanism to locate and provide objects from the class. sl@0: @publishedPartner sl@0: @released sl@0: @see MWsObjectProvider */ sl@0: #define DECLARE_WS_TYPE_ID(id) enum { EWsObjectInterfaceId = id }; sl@0: sl@0: class MWsObjectProvider sl@0: /** A class for dynamic extension of object instances sl@0: WSERV classes which wish to allow dynamic extension show derive those sl@0: extensions from MWsObjectProvider and use the DECLARE_WS_TYPE_ID macro sl@0: Similiar in principle and operation to CONE's MObjectProvider sl@0: @publishedPartner sl@0: @released sl@0: @see MObjectProvider sl@0: */ { sl@0: public: sl@0: template sl@0: T* ObjectInterface() sl@0: /** Gets an object of the type defined by the template parameter. sl@0: sl@0: @return A pointer to an object of the type required, or NULL if none can be sl@0: found. */ sl@0: { return (T*)ResolveObjectInterface(T::EWsObjectInterfaceId); } sl@0: /** Gets an object of the type defined by the template parameter. sl@0: @return A pointer to a const object of the type required, or NULL if none can be sl@0: found. */ sl@0: template sl@0: const T* ObjectInterface() const sl@0: { return (T*)const_cast(this)->ResolveObjectInterface(T::EWsObjectInterfaceId); } sl@0: /** Resolve an instance of an interface sl@0: should be overriden by implementations when they have custom interfaces to provide. */ sl@0: IMPORT_C virtual TAny* ResolveObjectInterface(TUint aTypeId); sl@0: }; sl@0: sl@0: class MWsScreen: public MWsObjectProvider sl@0: /** A destination for a drawing occasion of a CWsGraphicDrawer sl@0: Used by animation schedulers to update screens sl@0: @publishedPartner sl@0: @released sl@0: */ { sl@0: public: sl@0: using MWsObjectProvider::ResolveObjectInterface; sl@0: sl@0: private: sl@0: friend class MWsAnimationScheduler; sl@0: #if !defined(SYMBIAN_GRAPHICS_GCE) sl@0: /** Called by the MWsAnimationScheduler when scheduled animation is to be serviced sl@0: sl@0: WARNING: Function for internal use ONLY. Compatibility is not guaranteed in future releases. sl@0: sl@0: @released */ sl@0: virtual void OnAnimation() = 0; sl@0: #else sl@0: /** Called by the MWsAnimationScheduler when a scheduled animation is to be serviced. sl@0: @param aFinished If not NULL then this is signalled when the animation has sl@0: been processed and further animations may be submitted. An animation may be sl@0: submitted prior to signalling, but the render stage pipeline may not be ready sl@0: to process it. sl@0: sl@0: WARNING: Function for internal use ONLY. Compatibility is not guaranteed in future releases. sl@0: sl@0: @released */ sl@0: virtual void OnAnimation(TRequestStatus* aFinished) = 0; sl@0: #endif sl@0: /** Called by the MWsAnimationScheduler when the screen needs to be redrawn in its entirity sl@0: sl@0: WARNING: Function for internal use ONLY. Compatibility is not guaranteed in future releases. sl@0: sl@0: @released */ sl@0: virtual void Redraw() = 0; sl@0: /** Called by MWsAnimationScheduler when the any parts of the screen that potentially contain sl@0: commands to draw graphics in the list of IDs passed need to be redrawn sl@0: @param aInvalid the list of IDs that are invalid sl@0: @return whether the screen did any redrawing sl@0: sl@0: WARNING: Function for internal use ONLY. Compatibility is not guaranteed in future releases. sl@0: sl@0: @released */ sl@0: virtual TBool RedrawInvalid(const TArray& aInvalid) = 0; sl@0: }; sl@0: sl@0: /** sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class CWsMessageData : public CBase, public MWsObjectProvider sl@0: { sl@0: public: sl@0: virtual TPtrC8 Data() const = 0; sl@0: virtual void Release() = 0; sl@0: IMPORT_C TInt ClientHandle() const; sl@0: IMPORT_C TInt Id() const; sl@0: IMPORT_C const CWsGraphicDrawer* Drawer(); sl@0: IMPORT_C void SetClientHandle(TInt aClientHandle); sl@0: IMPORT_C void SetId( TInt aId); sl@0: IMPORT_C void SetDrawer(const CWsGraphicDrawer* aDrawer); sl@0: private: sl@0: friend class CWsGraphicMessageQueue; sl@0: friend class CWsClient; sl@0: CWsMessageData* iNext; sl@0: const CWsGraphicDrawer* iDrawer; sl@0: TInt iId; sl@0: TInt iClientHandle; sl@0: TInt iMWsMessageDataSpare[3]; sl@0: }; sl@0: sl@0: class MWsClient: public MWsObjectProvider sl@0: /*** Represents a client session sl@0: @publishedPartner sl@0: @released */ sl@0: { sl@0: public: sl@0: /** Determines if this client has the specified capability */ sl@0: virtual TBool HasCapability(TCapability aCapability) const = 0; sl@0: /** Retrieves the Secure ID of the client's process */ sl@0: virtual TSecureId SecureId() const = 0; sl@0: /** Retrieves the Vendor ID of the client's process */ sl@0: virtual TVendorId VendorId() const = 0; sl@0: private: sl@0: friend class CWsGraphicDrawer; sl@0: virtual TInt SendMessage(const CWsGraphicDrawer* aOnBehalfOf,const TDesC8& aData) = 0; sl@0: virtual TInt SendMessage(const CWsGraphicDrawer* aOnBehalfOf,CWsMessageData& aData) = 0; sl@0: }; sl@0: sl@0: class MWsGraphicDrawerEnvironment: public MWsObjectProvider sl@0: /** The environment for a graphic drawer sl@0: @publishedPartner sl@0: @released sl@0: */ { sl@0: public: sl@0: /** Locate a graphic by ID sl@0: @return the graphic with that ID, else NULL if no such graphic exists */ sl@0: virtual const CWsGraphicDrawer* ResolveGraphic(const TGraphicDrawerId& aId) const = 0; sl@0: /** The number of screens the device has; this is constant for a device */ sl@0: virtual TInt ScreenCount() const = 0; sl@0: /** Get a particular screen by ordinal sl@0: @return the screen, or NULL if aIndex is out of bounds */ sl@0: virtual MWsScreen* Screen(TInt aIndex) = 0; sl@0: /** Get a particular screen by ordinal sl@0: @return the screen, or NULL if aIndex is out of bounds */ sl@0: virtual const MWsScreen* Screen(TInt aIndex) const = 0; sl@0: /** Not supported sl@0: @return success of overriding the default scheduler */ sl@0: virtual TBool SetCustomAnimationScheduler(MWsAnimationScheduler* aScheduler) = 0; sl@0: /** Query whether a custom animation scheduler has been set sl@0: @return ETrue if the custom animation scheduler has been set */ sl@0: virtual TBool HasCustomAnimationScheduler() const = 0; sl@0: /** Clears a custom animation scheduler sl@0: @return success if the custom scheduler was set, and hence removed */ sl@0: virtual TBool ClearCustomAnimationScheduler(MWsAnimationScheduler* aCurrentScheduler) = 0; sl@0: protected: sl@0: friend class CWsGraphicDrawer; sl@0: /** Schedules all potentially affected parts of the screen to repaint sl@0: This is called automatically whenever a graphic is added, replaced or removed. sl@0: However, if a graphic which changes representation during runtime must call this sl@0: explicitly. sl@0: Note: this is not a suitable method for animating a graphic. For animation, sl@0: use MWsGc::Invalidate when the graphic is being drawn to schedule the next sl@0: animation frame instead. sl@0: @param aId the ID of the artwork; the artwork may not exist */ sl@0: virtual void Invalidate(const TGraphicDrawerId& aId) = 0; sl@0: public: sl@0: /** Register to be notified when some events occur. sl@0: @return KErrNone if successful */ sl@0: virtual TInt RegisterEventHandler(CWsGraphicDrawer* aDrawer, MWsEventHandler* aHandler, TUint32 aEventMask) = 0; sl@0: /** Unregister from events notification sl@0: @return KErrNone if successful */ sl@0: virtual TInt UnregisterEventHandler(CWsGraphicDrawer* aDrawer) = 0; sl@0: /** Register to be notified when some events occur. sl@0: @return KErrNone if successful sl@0: @prototype */ sl@0: virtual TInt RegisterWsEventHandler(MWsEventHandler* aHandler, TUint32 aEventMask) = 0; sl@0: /** Unregister from events notification sl@0: @return KErrNone if successful sl@0: @prototype */ sl@0: virtual TInt UnregisterWsEventHandler(MWsEventHandler* aHandler) = 0; sl@0: /** Logs a message to the wserv logger, if one is loaded sl@0: @param aPriority The priority of the message - low priority is 1, high is 9 sl@0: @param aFmt The string to log. This may contain a single %d, %x or equivalent sl@0: @param aParam An integer parameter corresponding to a %d, if present sl@0: @prototype */ sl@0: virtual void Log(TInt aPriority,const TDesC &aFmt,TInt aParam=0) = 0; sl@0: /** Registers an interface for releasing memory in low memory situations. sl@0: The release function may be called as a result of any Alloc or ReAlloc attempts in the window server sl@0: process. sl@0: @param aMemoryRelease a callback interface sl@0: @return KErrNone or a system wide error code sl@0: @prototype */ sl@0: virtual TInt RegisterMemoryRelease(MWsMemoryRelease * aMemoryRelease) = 0; sl@0: /** Removes a registration set by RegisterMemoryRelease sl@0: @param aMemoryRelease the registered release object to remove sl@0: @prototype */ sl@0: virtual void UnregisterMemoryRelease(MWsMemoryRelease * aMemoryRelease) = 0; sl@0: }; sl@0: sl@0: class MWsGc: public MWsObjectProvider sl@0: /** A destination for a drawing occasion of a CWsGraphicDrawer sl@0: Used to register invalidation schedules for animation sl@0: @publishedPartner sl@0: @released sl@0: */ { sl@0: public: sl@0: /** The Client requesting this drawing occasion sl@0: @return the client sl@0: @publishedPartner sl@0: @released */ sl@0: virtual MWsClient& Client() = 0; sl@0: /** The screen that is currently being drawn to sl@0: @return the screen sl@0: @publishedPartner sl@0: @released */ sl@0: virtual MWsScreen& Screen() = 0; sl@0: #if !defined(SYMBIAN_GRAPHICS_GCE) sl@0: /** The origin of the GC relative to the screen's origin sl@0: @return the origin sl@0: @publishedPartner sl@0: @released */ sl@0: virtual TPoint GcOrigin() const = 0; sl@0: /** The clipping region currently being used sl@0: @return the clipping region sl@0: @publishedPartner sl@0: @released */ sl@0: virtual const TRegion& ClippingRegion() = 0; sl@0: /** The BITGDI graphics context to draw to sl@0: @publishedPartner sl@0: @released */ sl@0: virtual CFbsBitGc& BitGc() = 0; sl@0: /** Saves the state of the GC to an internal buffer. Several GC states can be saved in a FILO. sl@0: Do not restore a GC (using PopBitGcSettings()) that wasn't properly saved! sl@0: @return KErrNone if successful, else one of the system-wide error codes. */ sl@0: virtual TInt PushBitGcSettings() = 0; sl@0: /** Restores the last GC state that was saved. */ sl@0: virtual void PopBitGcSettings() = 0; sl@0: #endif sl@0: /** The time for the current redraw sl@0: @publishedPartner sl@0: @released */ sl@0: virtual const TTime& Now() const = 0; sl@0: /** Schedule an animation of a rectangle in the future. sl@0: Scheduled animation doesn't work in low memory conditions or sl@0: if aRect values fall outside the window area of this animation. sl@0: @param aRect the rectangle to animate, in the GC's coordinates sl@0: @param aFromNow the time in microseconds from Now() that the rectangle will be invalid sl@0: @publishedPartner sl@0: @released */ sl@0: virtual void ScheduleAnimation(const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow) = 0; sl@0: /** Schedule an animation of a rectangle in the future sl@0: @param aRect the rectangle to animate, in the GC's coordinates sl@0: @param aFromNow the time in microseconds from Now() that the rectangle will be invalid sl@0: @param aFreq microseconds between frames that this rectangle will probably be invalid in the future (0 means no such hint is known) sl@0: @param aStop the duration in microseconds from Now() that the aFreq hint will be valid for (0 means indefinitely) sl@0: @publishedPartner sl@0: @released */ sl@0: virtual void ScheduleAnimation(const TRect& aRect,const TTimeIntervalMicroSeconds& aFromNow,const TTimeIntervalMicroSeconds& aFreq,const TTimeIntervalMicroSeconds& aStop) = 0; sl@0: /** Sets the origin of gc sl@0: @param aOrigin The new origin of the gc sl@0: @publishedPartner sl@0: @prototype */ sl@0: virtual void SetGcOrigin(const TPoint& aOrigin) = 0; sl@0: }; sl@0: sl@0: /** Interface Extension sl@0: */ sl@0: enum sl@0: { sl@0: KMWsScreenConfigInterfaceId = 1, sl@0: #if !defined(SYMBIAN_GRAPHICS_GCE) sl@0: KMWsBackBufferInterfaceId = 2, sl@0: KMWsFrontBufferInterfaceId = 3, sl@0: #endif sl@0: KMWsGraphicDrawerMessageAlloc = 4, sl@0: KMWsGraphicMessageAlloc = 5, sl@0: KWsGraphicHandleSynchronMessageId = 6, sl@0: KWsGraphicMessageCallbackInterfaceId = 7, sl@0: KWsActiveSchedulerDebug = 8, sl@0: #if !defined(SYMBIAN_GRAPHICS_GCE) sl@0: KWsFlickerFreeBufferObserver = 9, sl@0: #endif sl@0: KMWsWindow = 10, sl@0: KWsScreenRedraw = 11, sl@0: KWsScreenRedrawObserver = 12, sl@0: KCWsRenderStage = 13, sl@0: KMWsRenderStageFactory = 14, sl@0: KMWsMemoryRelease = 15, sl@0: #if !defined(SYMBIAN_GRAPHICS_GCE) sl@0: KMWsGcClipRect = 16, sl@0: #endif sl@0: KMWsFader = 17, sl@0: KMWsPluginManager = 18, sl@0: KMWsIniFile = 19, sl@0: KMWsRawEventServer = 20, sl@0: KMWsPlaceSurfaceId = 21, sl@0: #if defined(SYMBIAN_GRAPHICS_GCE) sl@0: KMWsTextCursor = 22, // CWsRenderStage Object Extension will yield an MWsTextCursor sl@0: #endif sl@0: KMWsGraphicsContext = 23, // CWsRenderStage Object Extension will yield an MWsGraphicsContext sl@0: KMWsCompositionContext = 24, // CWsRenderStage Object Extension will yield an MWsCompositionContext sl@0: // MWsCompositionContext::CreateLayer will yield a MWsLayer sl@0: KMWsEventHandler = 25, // CWsRenderStage Object Extension will yield an MWsEventHandler sl@0: KMWsScreenDevice = 26, // CWsRenderStage Object Extension will yield an MWsScreenDevice sl@0: KMWsPalette = 27, // CWsRenderStage Object Extension will optionally yield an MWsPalette sl@0: #if defined(SYMBIAN_GRAPHICS_GCE) sl@0: KMWsUiBufferInterfaceId = 28, // CWsRenderStage Object Extension will optionally yield an MWsUiBuffer sl@0: #endif sl@0: KMWsDebugBar = 29, // CWsRenderStage Object Extension will optionally yield an MWsDebugBar sl@0: KMWsDrawableSourceProvider = 30, // CWsRenderStage Object Extension will optionally yield an MWsDrawableSourceProvider sl@0: KMWsScreenConfigListInterfaceId = 31, //MWsScreen can return this list interface sl@0: KMWsWindowTreeObserver = 32, // CWsRenderStage Object Extension will optionally yield an MWsWindowTreeObserver sl@0: KMWsDrawAnnotationObserver = 33, // CWsRenderStage Object Extension will optionally yield an MWsDrawAnnotationObserver sl@0: KMWsWindowVisibilityNotifier = 34, // CWsRenderStage Object Extension will optionally yield an MWsWindowVisibilityNotifier sl@0: KMWsWindowTree = 35, // Object Extension to be used by render stages for recovery of MWsWindowTree sl@0: KMWsScene = 36, // CWsRenderStage Object Extension will yield an MWsScene sl@0: // MWsScene::CreateSceneElement will yield a MWsElement sl@0: KMWsContentReadyForComposition = 37,// CWsRenderStage Object Extension will optionally yield an MWsContentReadyForComposition sl@0: }; sl@0: sl@0: class TSurfaceConfiguration; sl@0: sl@0: sl@0: /** Extension to GC to allow surface placement. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: @deprecated sl@0: sl@0: NOTE: This interface is deprecated. Do not use! sl@0: */ sl@0: class MWsSurfacePlacement: public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsPlaceSurfaceId) sl@0: virtual TInt PlaceSurface(const TSurfaceConfiguration& aConfig)=0; sl@0: }; sl@0: sl@0: /** Current screen mode configuration.Values return from this interface shall not be cached as they sl@0: can change at anytime when wserv changes its screen mode. Plugin can listen to event EScreenSizeModeChanged sl@0: to be notified when it happens. sl@0: sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: class MWsScreenConfig: public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsScreenConfigInterfaceId) sl@0: sl@0: /** Get screen display mode */ sl@0: virtual TDisplayMode DisplayMode() const = 0; sl@0: /** Get physical screen size in pixels */ sl@0: virtual TSize SizeInPixels() const = 0; sl@0: /** Get screen size in pixels for current screen size mode as defined in wsini */ sl@0: virtual TSize ScreenModeSizeInPixels() const = 0; sl@0: /** Get frame buffer line pitch */ sl@0: virtual TInt Stride() const = 0; sl@0: /** Get screen orientation */ sl@0: virtual CFbsBitGc::TGraphicsOrientation Orientation() const = 0; sl@0: /** Get screen size mode */ sl@0: virtual TInt SizeMode() const = 0; sl@0: /** Get screen scaling factor */ sl@0: virtual TSize ScalingFactor() const = 0; sl@0: /** Get screen origin */ sl@0: virtual TPoint Origin() const = 0; sl@0: /** Get screen scaled origin */ sl@0: virtual TPoint ScaledOrigin() const = 0; sl@0: }; sl@0: sl@0: /** Available list of screen modes as specified during start-up. sl@0: * This interface can generally be enquired from the MWsScreen instance. sl@0: * Can be read by render stage to configure its Display Configuration policy. sl@0: * sl@0: * Note that mode list is not contiguous, so methods may leave if missing index is requested. sl@0: **/ sl@0: class MWsScreenConfigList: public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsScreenConfigListInterfaceId) sl@0: sl@0: enum TModeFlags sl@0: { sl@0: EDynamic= 0x00000001, //"-1,-1" sl@0: EHighRes= 0x00000002, //High-res policy mode sl@0: EDisconnected= 0x00000004, //Mode to use when disconnected sl@0: EHalDefault= 0x00000008, sl@0: ETwipsSpecified= 0x00000010, sl@0: EClientDefinedDigitiserArea= 0x00000020, sl@0: }; sl@0: sl@0: /** Get list of valid display modes - may be sparse **/ sl@0: virtual TInt GetScreenSizeModeList(RArray&aList) const =0; sl@0: /** Get screen display mode */ sl@0: virtual TDisplayMode DisplayModeL(TInt aIndex) const = 0; sl@0: /** Get screen size in pixels for current screen size mode as defined in wsini */ sl@0: virtual TSize ScreenModeSizeInPixelsL(TInt aIndex) const = 0; sl@0: /** Get screen size in twips for current screen size mode as defined in wsini */ sl@0: virtual TSize ScreenModeSizeInTwipsL(TInt aIndex) const = 0; sl@0: /** Get screen orientation */ sl@0: virtual CFbsBitGc::TGraphicsOrientation OrientationL(TInt aIndex) const = 0; sl@0: /** Get screen orientation */ sl@0: virtual TInt AvailableOrientationsL(TInt aIndex) const = 0; sl@0: /** Get screen scaling factor - note this is expected to stay at 1:1 */ sl@0: virtual TSize ScalingFactorL(TInt aIndex) const = 0; sl@0: /** Get screen origin */ sl@0: virtual TPoint OriginL(TInt aIndex) const = 0; sl@0: /** Get screen scaled origin - note this is expected to stay at 1:1 */ sl@0: virtual TPoint ScaledOriginL(TInt aIndex) const = 0; sl@0: /** Get the modeflags for specified mode */ sl@0: virtual TInt ModeFlagsL(TInt aIndex) const = 0; sl@0: sl@0: }; sl@0: sl@0: class MWsWindowTree : public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsWindowTree) sl@0: virtual void SendTree() const = 0; sl@0: }; sl@0: sl@0: #if !defined(SYMBIAN_GRAPHICS_GCE) sl@0: /** Wserv flickerfree buffer access sl@0: sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: class MWsBackBuffer: public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsBackBufferInterfaceId) sl@0: /** Get wserv flickerfree buffer bitmap sl@0: */ sl@0: virtual CFbsBitmap* GetBitmap() = 0; sl@0: /** Get default wserv flickerfree buffer drawing context. This will always return the original sl@0: context not the current context (e.g. not the redirecting context when it is redirected). sl@0: */ sl@0: virtual CFbsBitGc* GetBitGc() = 0; sl@0: /** Set wserv flickerfree buffer drawing context to redirect its drawing output. Drawing context must sl@0: have been activated on a device prior calling this function. sl@0: @param aBitGc The context where flickerfree buffer drawing output is redirected to. If it is NULL sl@0: the redirection will be cancelled and default drawing context will be restored. sl@0: @return KErrNone if successful, otherwise one of system-wide error codes. sl@0: */ sl@0: virtual TInt SetBitGc(CFbsBitGc* aBitGc) = 0; sl@0: /** Redirects drawing to another back buffer. Target back buffer must provide bitmap and drawing context sl@0: which has been activated on a bitmap device. sl@0: @param aTarget Target back buffer where drawing is redirected to. If it is NULL sl@0: the redirection will be terminated. sl@0: @return KErrNone if successful, otherwise one of system-wide error codes. sl@0: @prototype sl@0: */ sl@0: virtual TInt RedirectTo(MWsBackBuffer* aTarget) = 0; sl@0: sl@0: /** Sets the back buffers observer. The observer will be called just before and just after each sl@0: complete sequence of drawing to the back buffer. sl@0: @param aObserver The observer handling the callbacks sl@0: @prototype sl@0: */ sl@0: virtual void SetObserver(MWsFlickerFreeBufferObserver* aObserver) = 0; sl@0: sl@0: /** This returns the observer set by SetObserver. sl@0: @return The observer set by SetObserver, or NULL sl@0: @prototype sl@0: */ sl@0: virtual MWsFlickerFreeBufferObserver* Observer() = 0; sl@0: sl@0: /** Get current wserv flickerfree buffer drawing context. This will return the redirected context sl@0: when it is set. sl@0: @return The graphics context to use to draw to the flicker buffer directly. sl@0: @prototype sl@0: */ sl@0: virtual CFbsBitGc* GetBitGcCurrent() = 0; sl@0: }; sl@0: sl@0: /** Wserv screen buffer access sl@0: sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: class MWsFrontBuffer: public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsFrontBufferInterfaceId) sl@0: /** Get pointer to framebuffer sl@0: */ sl@0: virtual const TAny* GetBits() = 0; sl@0: /** Get default wserv screen drawing context. This will always return the original sl@0: context not the current context (e.g. not the redirecting context when it is redirected). sl@0: */ sl@0: virtual CFbsBitGc* GetBitGc() = 0; sl@0: /** Set wserv screen drawing context to redirect its drawing output. Drawing context must sl@0: have been activated on a device prior calling this function. sl@0: @param aBitGc The context where screen drawing output is redirected to. If it is NULL sl@0: the redirection will be cancelled and default drawing context will be restored. sl@0: @return KErrNone if successful, otherwise one of system-wide error codes. sl@0: */ sl@0: virtual TInt SetBitGc(CFbsBitGc* aBitGc) = 0; sl@0: /** Set wserv screen drawing context to redirect its drawing output and perform fullscreen sl@0: redraw if necessary. Drawing context must have been activated on a device prior calling this sl@0: function. sl@0: @param aBitGc The context where screen drawing output is redirected to. If it is NULL sl@0: the redirection will be cancelled and default drawing context will be restored. sl@0: @param aInvalidateScreen Flag to tell wserv to perform fullscreen redraw or not sl@0: @return KErrNone if successful, otherwise one of system-wide error codes. sl@0: @prototype sl@0: */ sl@0: virtual TInt SetBitGc(CFbsBitGc* aBitGc, TBool aInvalidateScreen) = 0; sl@0: sl@0: /** Get current wserv screen drawing context. This will return the redirected context sl@0: when it is set. sl@0: @prototype sl@0: */ sl@0: virtual CFbsBitGc* GetBitGcCurrent() = 0; sl@0: }; sl@0: #endif // !SYMBIAN_GRAPHICS_GCE sl@0: sl@0: /** Optional Memory Allocator for incoming messages sl@0: To be implemented by CRPs which want to control large incoming messages themselves sl@0: sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: class MWsGraphicDrawerMessageAlloc: public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsGraphicDrawerMessageAlloc) sl@0: virtual TAny* Alloc(TInt aSize) = 0; sl@0: virtual void Free(TAny* aCell) = 0; sl@0: }; sl@0: sl@0: /** Optional Memory Allocator for incoming messages sl@0: To be implemented by CWsGraphics which want to control large incoming messages themselves sl@0: sl@0: @publishedPartner sl@0: @released sl@0: */ sl@0: class MWsGraphicMessageAlloc: public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsGraphicMessageAlloc) sl@0: NONSHARABLE_CLASS(MBuffer): public MWsObjectProvider sl@0: { sl@0: public: sl@0: virtual TPtr8 Buffer() = 0; sl@0: virtual void Release() = 0; sl@0: }; sl@0: virtual MBuffer* Alloc(TInt aSize) = 0; sl@0: }; sl@0: sl@0: /** For debug purposes only sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsActiveSchedulerDebug: public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KWsActiveSchedulerDebug) sl@0: virtual TInt64 Requests() const = 0; sl@0: virtual TInt64 Errors() const = 0; sl@0: virtual TInt64 Draws() const = 0; sl@0: virtual TInt64 Total() const = 0; sl@0: virtual TInt64 Preparing() const = 0; sl@0: virtual TInt64 Drawing() const = 0; sl@0: virtual TInt64 Idle() const = 0; sl@0: }; sl@0: sl@0: #if !defined(SYMBIAN_GRAPHICS_GCE) sl@0: /** This forms part of the MWsBackBuffer interface sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsFlickerFreeBufferObserver: public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KWsFlickerFreeBufferObserver) sl@0: /** Function that gets called before the flicker buffer is updated sl@0: @param aBuffer The back buffer that is about to be updated sl@0: @param aRegion The region of the back buffer that is about to be updated sl@0: */ sl@0: virtual void BeforeUpdate(MWsBackBuffer& aBuffer,const TRegion& aRegion) = 0; sl@0: /** Function that gets called after the flicker buffer has been updated sl@0: @param aBuffer The back buffer that has been updated sl@0: @param aRegion The region of the the back buffer that has been updated sl@0: */ sl@0: virtual void AfterUpdate(MWsBackBuffer& aBuffer,const TRegion& aRegion) = 0; sl@0: }; sl@0: #endif // !SYMBIAN_GRAPHICS_GCE sl@0: sl@0: /** An interface through which a window can be examined sl@0: This returns non const copies instead of const references, and the sl@0: functions themselves are non const. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsWindow : public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsWindow) sl@0: public: sl@0: /** Gets the origin of the window. sl@0: @return TPoint containing the origin of the window. sl@0: */ sl@0: virtual TPoint Origin() const = 0; sl@0: /** Gets the windows rect in absolute co-ordinates. sl@0: @return TRect sl@0: */ sl@0: virtual TRect AbsRect() const = 0; sl@0: /** Gets the size of the window sl@0: @return TSize containing the size of the window sl@0: */ sl@0: virtual TSize Size() const = 0; sl@0: /** Get the window's handle sl@0: @return TUint32 containing the window's handle. sl@0: */ sl@0: virtual TUint32 Handle() const = 0; sl@0: /** Invalidate an area of the window. sl@0: @param aRect TRect containing the area to invalidate. sl@0: */ sl@0: virtual void Invalidate(const TRect * aRect = 0) = 0; sl@0: /** Get the MWsScreen for this window. sl@0: @return A pointer to the MWsScreen that this window is on. sl@0: */ sl@0: virtual MWsScreen * WsScreen() const = 0; sl@0: /** Finds a child of this window by specifiying its handle. sl@0: @param aHandle A handle to the window to find. sl@0: @return an MWsWindow pointer to the found window sl@0: */ sl@0: virtual MWsWindow * FindChildByHandle(TUint32 aHandle) = 0; sl@0: /** sl@0: Returns the ordinal priority of the node. sl@0: */ sl@0: virtual TInt OrdinalPriority() const = 0; sl@0: /** Get the window's basic area before any clipping is done. sl@0: For windows with rounded corners, the window area is different from AbsRect. sl@0: @return a reference to the window area sl@0: */ sl@0: virtual const TRegion& WindowArea() const = 0; sl@0: }; sl@0: sl@0: /** sl@0: An interface providing information about a window group. sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsWindowGroup sl@0: { sl@0: public: sl@0: virtual TInt Identifier() const = 0; sl@0: virtual TPtrC Name() const = 0; sl@0: virtual TBool IsFocusable() const = 0; sl@0: virtual TInt OrdinalPriority() const = 0; sl@0: virtual const MWsClient * Client() const = 0; sl@0: }; sl@0: sl@0: /** sl@0: An interface through which a sprite can be examined. sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsSprite sl@0: { sl@0: public: sl@0: enum TSpriteType sl@0: { sl@0: EWindowSprite, sl@0: EFloatingSprite, sl@0: ECustomTextCursorSprite, sl@0: EPointerCursorSprite sl@0: }; sl@0: public: sl@0: virtual TRect Rect() const = 0; sl@0: virtual TSpriteType SpriteType() const = 0; sl@0: }; sl@0: sl@0: /** sl@0: An interface through which a standard text cursor can be examined. sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsStandardTextCursor sl@0: { sl@0: public: sl@0: /** sl@0: Cursor type. sl@0: @return The cursor type; either TTextCursor::ETypeRectangle or TTextCursor::ETypeHollowRectangle. sl@0: */ sl@0: virtual TInt Type() const = 0; sl@0: /** sl@0: Draw rectangle. sl@0: @return Draw rectangle of the cursor in window co-ordinates. sl@0: */ sl@0: virtual TRect Rect() const = 0; sl@0: /** sl@0: Clipping rectangle in window co-ordinates. sl@0: @return If a clipping rect has been set, the cursor must be drawn clipped to the returned rectangle. sl@0: @see MWsWindowTreeObserver::ECursorClipRectSet sl@0: */ sl@0: virtual TRect ClipRect() const = 0; sl@0: /** sl@0: Cursor flags. sl@0: For possible values, see TTextCursor::EFlags. sl@0: Note, only flags included by the mask TTextCursor::EUserFlags are provided. sl@0: @see TTextCursor::EFlags sl@0: */ sl@0: virtual TUint Flags() const = 0; sl@0: /** sl@0: Cursor color. sl@0: @return The cursor color. sl@0: */ sl@0: virtual TRgb Color() const = 0; sl@0: /** sl@0: Flash time interval. sl@0: @return If TTextCursor::EFlagNoFlash is set, zero; otherwise the time interval between cursor flash on/off. sl@0: @see MWsStandardTextCursor::Flags() sl@0: */ sl@0: virtual TTimeIntervalMicroSeconds32 FlashInterval() const = 0; sl@0: }; sl@0: sl@0: sl@0: /** An interface providing information about a window tree node. sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsWindowTreeNode sl@0: { sl@0: public: sl@0: sl@0: enum TType sl@0: { sl@0: EWinTreeNodeClient = EWinTypeClient, //0 sl@0: EWinTreeNodeRoot = EWinTypeRoot, //1 sl@0: EWinTreeNodeGroup = EWinTypeGroup, //2 sl@0: EWinTreeNodeAnim = 16, //3-15 reserved for expansion of TWinType sl@0: EWinTreeNodeSprite, sl@0: EWinTreeNodeStandardTextCursor, sl@0: }; sl@0: sl@0: /** sl@0: @return The Node Type for this MWsWindowTreeNode. */ sl@0: virtual TType NodeType() const = 0; sl@0: /** sl@0: @return A pointer to a MWsWindow interface only when this sl@0: MWsWindowTreeNode represents a client window sl@0: (i.e. node type EWinTreeNodeClient), NULL otherwise. */ sl@0: virtual const MWsWindow* Window() const = 0; sl@0: /** sl@0: @return A pointer to a MWsSprite interface only when this sl@0: MWsWindowTreeNode represents a sprite, NULL otherwise. */ sl@0: virtual const MWsSprite* Sprite() const = 0; sl@0: /** sl@0: @return A pointer to a MWsStandardTextCursor interface only when this sl@0: MWsWindowTreeNode represents a standard text cursor, NULL otherwise. */ sl@0: virtual const MWsStandardTextCursor* StandardTextCursor() const = 0; sl@0: /** sl@0: @return The MWsWindowGroup this MWsWindowTreeNode belongs to, or "this" sl@0: MWsWindowTreeNode object if the NodeType is EWinTreeNodeGroup. Will sl@0: return NULL if this MWsWindowTreeNode is of type EWinTreeNodeRoot. */ sl@0: virtual const MWsWindowGroup* WindowGroup() const = 0; sl@0: /** sl@0: @return The parent MWsWindowTreeNode. NULL if current node is of type sl@0: EWinTreeNodeRoot. The parent of a floating sprite is the root window. */ sl@0: virtual const MWsWindowTreeNode* ParentNode() const = 0; sl@0: }; sl@0: sl@0: /** sl@0: An interface optionally provided by render stages, to observe changes in sl@0: window tree structure, or changes to tree nodes. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsWindowTreeObserver : public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsWindowTreeObserver) sl@0: sl@0: public: sl@0: /** sl@0: This enum encapsulates the set of boolean attribute changes that can be observed sl@0: using the MWsWindowTreeObserver interface. sl@0: @see FlagChanged */ sl@0: enum TFlags sl@0: { sl@0: /** For a window to be drawn, it needs to be activated and visible and have visible parents. sl@0: Making a window invisible, implies that its children should be invisible as well. sl@0: The default value for a window is true. */ sl@0: EVisible = 1, sl@0: /** Non-fading windows should not be drawn faded regardless of their fade-count. sl@0: The default value is false. */ sl@0: ENonFading, sl@0: /** Windows with this attribute enabled uses alpha channel to control its transparency. sl@0: The default value is false. */ sl@0: EAlphaChannelTransparencyEnabled, sl@0: /** True if a clipping rect should be applied when drawing a standard text cursor, false otherwise. sl@0: The default value is false. */ sl@0: ECursorClipRectSet, sl@0: /** Implicitly defaults to true. Will remain true as long as the application's primary screendevice sl@0: is in the same orientation as the device. This information is only given for top-windows, sl@0: i.e. children of group-windows, and only when wsini.ini is configured with SIZE_MODE > 0. */ sl@0: EScreenDeviceValid sl@0: }; sl@0: /** sl@0: This enum encapsulates the set of non-boolean attribute changes that can be observed sl@0: using the MWsWindowTreeObserver interface. sl@0: @see AttributeChanged */ sl@0: enum TAttributes sl@0: { sl@0: /** Cursor type. sl@0: @see MWsStandardTextCursor::Type()*/ sl@0: ECursorType = 1, sl@0: /** Cursor clip rect. sl@0: @see MWsStandardTextCursor::ClipRect()*/ sl@0: ECursorClipRect, sl@0: /** Cursor flags. sl@0: @see MWsStandardTextCursor::Flags()*/ sl@0: ECursorFlags, sl@0: /** Cursor color. sl@0: @see MWsStandardTextCursor::Color()*/ sl@0: ECursorColor, sl@0: /** Window shape. sl@0: @see MWsWindow::WindowArea()*/ sl@0: EWindowShape, sl@0: /** Window group name sl@0: @see MWsWindowGroup::Name()*/ sl@0: EWindowGroupName sl@0: }; sl@0: /** sl@0: Callback to notify that a MWsWindowTreeNode has just been created. sl@0: Nodes are always added as the left-most sibling as this means they are sl@0: added in front of exisitng nodes. sl@0: @param aWindowTreeNode Use to query attributes of the node that has been sl@0: created. Note that attributes such as e.g. the extent sl@0: is not yet set by the client when this notification arrives. sl@0: @param aParent The parent node which aWindowTreeNode has been attached to. sl@0: Special cases: aParent will be set to NULL for root windows, sl@0: and set to the root window for floating sprites. */ sl@0: virtual void NodeCreated(const MWsWindowTreeNode& aWindowTreeNode, const MWsWindowTreeNode* aParent) = 0; sl@0: /** sl@0: Callback to notify that a node in the window tree is about to be destroyed. sl@0: @param aWindowTreeNode Use to query attributes of node that's about to be destroyed. */ sl@0: virtual void NodeReleased(const MWsWindowTreeNode& aWindowTreeNode) = 0; sl@0: /** sl@0: Callback to notify that a node in the window tree has been activated. This sl@0: event is only generated for windows which has a visual appearance sl@0: (i.e. root windows and group windows are not activated). Before a node sl@0: can be drawn it needs to be activated and visible and have a non-zero size. sl@0: @param aWindowTreeNode Use to query attributes of node that has been activated. */ sl@0: virtual void NodeActivated(const MWsWindowTreeNode& aWindowTreeNode) = 0; sl@0: /** sl@0: Callback to notify that a node's extent has changed. It is guaranteed that there sl@0: will be at least one NodeExtentChanged notification between the NodeCreated and sl@0: NodeActivated notifications. sl@0: Note that when a window has child-windows, those are always moving along with their sl@0: parent but no NodeExtentChanged notifications will be generated for the child-windows. sl@0: @param aWindowTreeNode Use to query attributes of the node that has been changed. sl@0: @param aRect The new rectangle. */ sl@0: virtual void NodeExtentChanged(const MWsWindowTreeNode& aWindowTreeNode, const TRect& aRect) = 0; sl@0: /** sl@0: Callback to notify that the ordinal position of a window has changed. sl@0: @param aWindowTreeNode Use to query attributes of the node that has been changed.. sl@0: @param aNewPos The new position of this node among its siblings. */ sl@0: virtual void SiblingOrderChanged(const MWsWindowTreeNode& aWindowTreeNode, TInt aNewPos) = 0; sl@0: /** sl@0: Callback to notify that a node has had one of its boolean attributes changed. sl@0: @param aWindowTreeNode Use to query attributes of the node that has been changed. sl@0: @param aFlag The attribute that has changed. sl@0: @param aNewValue The new value for the attribute. */ sl@0: virtual void FlagChanged(const MWsWindowTreeNode& aWindowTreeNode, TFlags aFlag, TBool aNewValue) = 0; sl@0: /** sl@0: Callback to notify that a node has had one of its non-boolean attributes changed. sl@0: @param aWindowTreeNode Use to identify the affected node and query the new value of the changed attribute. sl@0: @param aAttribute The attribute that has changed. */ sl@0: virtual void AttributeChanged(const MWsWindowTreeNode& aWindowTreeNode, TAttributes aAttribute) = 0; sl@0: /** sl@0: Callback to notify that a window's fade count has been changed. sl@0: @param aWindowTreeNode Use to query attributes of the node that has been changed. sl@0: @param aFadeCount Zero means the window is not faded, an integer > 0 means sl@0: faded if absolute fading is used, or the number of times sl@0: SetFaded has been called if using counting fade. */ sl@0: virtual void FadeCountChanged(const MWsWindowTreeNode& aWindowTreeNode, TInt aFadeCount) = 0; sl@0: /** sl@0: Callback to notify that the user defined transparent region of a window has changed. sl@0: This information is for optimisation purpose only, the rendering engine don't need sl@0: to do a full back-to-front rendering behind the opaque region. sl@0: @param aWindowTreeNode Use to query attributes of the node that has been changed. sl@0: @param aNewTransparentRegion The transparent region defined by the user. Coordinates sl@0: are relative the window's origin. sl@0: @param aNewOpaqueRegion The inverse of aNewTransparentRegion. Coordinates are sl@0: relative the window's origin. */ sl@0: virtual void TransparentRegionChanged(const MWsWindowTreeNode& aWindowTreeNode, const TRegion& aNewTransparentRegion, const TRegion* aNewOpaqueRegion) = 0; sl@0: /** sl@0: Callback to notify that a element has been added to this window. sl@0: The render stages implementing this interface know when elements are added or removed through MWsElement interface. sl@0: The purpose of the ElementAdded API is only to enable render stages to make an association between the element and the window. sl@0: @param aWindowTreeNode Use to query attributes of the node that has been changed. sl@0: @param aElement Use to query attributes of the new element. */ sl@0: virtual void ElementAdded(const MWsWindowTreeNode& aWindowTreeNode, const MWsElement& aElement) = 0; sl@0: /** sl@0: Callback to notify that a window has been moved to another window group. sl@0: @param aWindowTreeNode Use to query attributes of the node that has been moved. sl@0: @param aNewWindowGroupNode The window group aWindowTreeNode has been moved to. sl@0: @see RWindowBase::MoveToGroup */ sl@0: virtual void MovedToWindowGroup(const MWsWindowTreeNode& aWindowTreeNode, const MWsWindowTreeNode& aNewWindowGroupNode) = 0; sl@0: /** sl@0: Callback to notify that a window group chain has been formed or extended. sl@0: @param aParent The window group node to which a child has been attached. sl@0: @param aChild The window group node that has been attached to aParent. */ sl@0: virtual void WindowGroupChained(const MWsWindowTreeNode& aParent, const MWsWindowTreeNode& aChild) = 0; sl@0: /** sl@0: Callback to notify that a window group chain has been broken. sl@0: Special case: Deleting a window group that is part of a chain will break all chaining sl@0: after the deleted window group and a notification for each node being dequed will be sent. sl@0: @param aWindowGroupNode The window group chain is broken directly after this window group. */ sl@0: virtual void WindowGroupChainBrokenAfter(const MWsWindowTreeNode& aWindowGroupNode) = 0; sl@0: /** sl@0: Callback to notify that all nodes below aWindowTreeNode should be drawn faded, sl@0: unless they have the ENonFading flag set. sl@0: This API is primarily used in conjunction with application frameworks that uses sl@0: absolute fading rather than counting fade. sl@0: @param aWindowTreeNode Typically a root window, for which all children should have their sl@0: fade state set to aFaded. sl@0: @param aFaded The new fade state to apply. ETrue means faded, EFalse not faded. */ sl@0: virtual void FadeAllChildren(const MWsWindowTreeNode& aWindowTreeNode, TBool aFaded) = 0; sl@0: }; sl@0: sl@0: /** sl@0: An interface optionally provided by render stages, to observe which node in sl@0: the window tree structure that is being rendered. sl@0: sl@0: Text cursors and sprites (floating or non) are annotated by the same APIs. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsDrawAnnotationObserver : public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsDrawAnnotationObserver) sl@0: virtual void WindowRedrawStart(const MWsWindowTreeNode& aWindowTreeNode, const TRegion& aRegion) = 0; sl@0: virtual void WindowRedrawEnd(const MWsWindowTreeNode& aWindowTreeNode) = 0; sl@0: virtual void WindowAnimRedrawStart(const MWsWindowTreeNode& aWindowTreeNode, const TRegion& aRegion) = 0; sl@0: virtual void WindowAnimRedrawEnd(const MWsWindowTreeNode& aWindowTreeNode) = 0; sl@0: virtual void SpriteRedrawStart(const MWsWindowTreeNode& aWindowTreeNode, const TRegion& aRegion) = 0; sl@0: virtual void SpriteRedrawEnd(const MWsWindowTreeNode& aWindowTreeNode) = 0; sl@0: virtual void SpriteFlash(const MWsWindowTreeNode& aWindowTreeNode, TBool aFlashOn) = 0; sl@0: virtual void SegmentRedrawStart(const TRegion& aRegion) = 0; sl@0: virtual void SegmentRedrawEnd() = 0; sl@0: }; sl@0: sl@0: /** sl@0: Implemented by a WSERV screen to respond to window visibility change notifications sent sl@0: by a render stage implementing MWsWindowVisibilityNotifier. sl@0: sl@0: Immediately after WSERV sucessfully obtains a pointer to MWsWindowVisibilityNotifier, sl@0: WSERV will call MWsWindowVisibilityNotifier::RegisterWindowVisibilityObserver() sl@0: to provide a means for the render stage to notify WSERV, when window visibility changes. sl@0: sl@0: @see MWsWindowVisibilityNotifier sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsWindowVisibilityObserver sl@0: { sl@0: public: sl@0: /** sl@0: Called by the render stage to indicate a window's visible region has changed. sl@0: After this method has been called, it does not need to be called again until sl@0: after WSERV calls SendVisibilityChanges. sl@0: @see MWsWindowVisibilityNotifier::SendVisibilityChanges sl@0: */ sl@0: virtual void VisibilityChanged() = 0; sl@0: sl@0: /** sl@0: Called by the render stage to update a window's visible region. sl@0: @param aWindow The window whose visible region has changed. sl@0: @param aVisibleRegion Region of the window not obscured by a fully opaque window. Part of this region could potentially still sl@0: be obscured by opaque parts of translucent windows on top of aWindow. sl@0: */ sl@0: virtual void SetWindowVisibility(const MWsWindow& aWindow, const TRegion& aVisibleRegion) = 0; sl@0: }; sl@0: sl@0: /** sl@0: This interface may be implemented by a render stage wishing to take over responsibility sl@0: from WSERV, for updating a window's visible region. sl@0: For example, if a render stage introduces non-WSERV visuals which overlap WSERV windows, WSERV may sl@0: need to receive updated window visibility information. sl@0: sl@0: Immediately after sucessfully obtaining this interface, WSERV will call RegisterWindowVisibilityObserver sl@0: to provide a means for the render stage to notify WSERV when window visibility changes. sl@0: sl@0: @see MWsWindowVisibilityObserver sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsWindowVisibilityNotifier : public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsWindowVisibilityNotifier) sl@0: sl@0: /** sl@0: Register to be notified when window visibility changes. sl@0: @param aWindowVisibilityObserver Observer to be notified. sl@0: */ sl@0: virtual void RegisterWindowVisibilityObserver(MWsWindowVisibilityObserver* aWindowVisibilityObserver) = 0; sl@0: sl@0: /** sl@0: Register to be notified when visibility of a specific window changes. sl@0: After registering a window, the render stage must immediately provide the sl@0: current visible region by calling VisibilityChanged() and later, in response sl@0: to SendVisibilityChanges, call SetWindowVisibility. sl@0: RegisterWindow and UnregisterWindow are symmetrical operations. For each sl@0: call to RegisterWindow, there will follow exactly one call to UnregisterWindow. sl@0: @param aWindow Window for which WSERV needs accurate visibility information. sl@0: @see MWsWindowVisibilityObserver sl@0: */ sl@0: virtual void RegisterWindow(const MWsWindow& aWindow) = 0; sl@0: sl@0: /** sl@0: Stops visibility notifications being sent for the specified window. sl@0: RegisterWindow and UnregisterWindow are symmetrical operations. For each sl@0: call to RegisterWindow, there will follow exactly one call to UnregisterWindow. sl@0: @param aWindow Window for which visibility notifications are no longer required. sl@0: */ sl@0: virtual void UnregisterWindow(const MWsWindow& aWindow) = 0; sl@0: sl@0: /** sl@0: Asks the render stage to call SetWindowVisibility for each window whose sl@0: visible region has changed. sl@0: All visible region changes must be sent before this method returns. sl@0: @see MWsWindowVisibilityObserver sl@0: */ sl@0: virtual void SendVisibilityChanges() = 0; sl@0: }; sl@0: sl@0: /** This is an extension of the MWsScreen interface for handling the sl@0: animation aspects of the redraw sequence. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsScreenRedraw: public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KWsScreenRedraw) sl@0: /**Sets the screen redraw observer. sl@0: @param aObserver sl@0: */ sl@0: virtual void SetObserver(MWsScreenRedrawObserver* aObserver) = 0; sl@0: /** Checks if there is a redraw in progress or scheduled to take place. sl@0: @return Returns ETrue if there is an update pending. sl@0: */ sl@0: virtual TBool IsUpdatePending() = 0; sl@0: /** Gets the current time according to the animation scheduler sl@0: @return The current time as a TTime reference. sl@0: */ sl@0: virtual const TTime& Now() const = 0; sl@0: /** Schedule a render of the screen without requesting any area of it sl@0: to be redrawn. Effectively, request a rerun of the render stages. sl@0: @param aFromNow The time from now, in microseconds, to perform the render. sl@0: */ sl@0: virtual void ScheduleRender(const TTimeIntervalMicroSeconds& aFromNow) = 0; sl@0: /** Gets the the animation region for this screen redraw. sl@0: @return the Region being redrawn during the animation sl@0: */ sl@0: virtual const TRegion * AnimationRegion() const = 0; sl@0: /** Updates the screen device to reflect any animation changes sl@0: */ sl@0: virtual void UpdateDevice() = 0; sl@0: }; sl@0: sl@0: /** This is part of the MWsScreenRedraw interface sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsScreenRedrawObserver: public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KWsScreenRedrawObserver) sl@0: /** Callback function that gets called after the completion of every redraw sequence. sl@0: @see MWsScreenRedraw::SetObserver sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: virtual void ScreenUpdated(TInt aScreenNumber) = 0; sl@0: }; sl@0: sl@0: /** This is part of the MGraphicDrawerInterface sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsMemoryRelease : public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsMemoryRelease) sl@0: enum TMemoryReleaseLevel sl@0: { sl@0: ELow, sl@0: EMedium, sl@0: EHigh sl@0: }; sl@0: /** This function is called on registered memory release objects whenever there sl@0: is insufficient memory available to honour an Alloc or ReAlloc in the window server sl@0: process. It may be called up to three times, once for each level defined in TLevel. sl@0: The meaning of each level is open to interpretation by individual implementations. sl@0: @see MGraphicDrawerEnvironment::RegisterMemoryRelease sl@0: @param aLevel sl@0: @return ETrue to indicate that memory was freed, EFalse otherwise. sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: virtual TBool ReleaseMemory(TMemoryReleaseLevel aLevel) = 0; sl@0: }; sl@0: sl@0: #if !defined(SYMBIAN_GRAPHICS_GCE) sl@0: /** This is an extension of the MWsGc. This interface is not used in sl@0: non-NGA configurations. It has been removed from NGA configurations. sl@0: sl@0: @see MWsGc sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsGcClipRect : public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsGcClipRect) sl@0: /** Sets a master clipping rectangle on the GC. This will combine with any clipping rectangles sl@0: specified by the client. sl@0: @param aRect sl@0: */ sl@0: virtual void SetClipRect(TRect aRect) = 0; sl@0: /** Resets the master clipping rectangle specified in SetMasterClipRect sl@0: */ sl@0: virtual void ResetClipRect() = 0; sl@0: /** Returns the combined clipping rectangle. sl@0: @param aRect this is set to the clipping rectangle sl@0: @param aSet this is true if there is a clipping rectangle in effect sl@0: */ sl@0: virtual void GetClipRect(TRect & aRect, TBool & aSet) = 0; sl@0: }; sl@0: #endif sl@0: sl@0: /** DebugBarDrawer interface sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsDebugBar : public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsDebugBar) sl@0: sl@0: public: sl@0: /** sl@0: * Prints a debug information bar overlaid at the top the screen. sl@0: * sl@0: * @param aDebugText An array of text lines. sl@0: */ sl@0: virtual void DrawDebugBar(const TArray& aDebugText)=0; sl@0: }; sl@0: sl@0: /** This is an extension of MWsGc and provides plugin fading capabilities for wserv. sl@0: Default implementation of the plugin uses bitgdi fade. sl@0: sl@0: @see MWsGc sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsFader : public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsFader) sl@0: sl@0: public: sl@0: /** Sets any parameters for the fade. sl@0: @param aData Descriptor containing the fade parameters sl@0: */ sl@0: virtual void SetFadingParameters(const TDesC8& aData)=0; sl@0: #if !defined(SYMBIAN_GRAPHICS_GCE) sl@0: /** Perform a fade of the specified region sl@0: @param aBitGc CFbsBitGc to perform the fading with. sl@0: @param aRegion TRegion containing the region that the fading is to be performed on. sl@0: */ sl@0: virtual void FadeArea(CFbsBitGc* aBitGc,const TRegion * aRegion)=0; sl@0: #else sl@0: /** Perform a fade of the specified region sl@0: @param aRegion TRegion containing the region that the fading is to be performed on. sl@0: */ sl@0: virtual void FadeArea(const TRegion& aRegion)=0; sl@0: #endif sl@0: }; sl@0: sl@0: /** Plugin Manager Interface sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsPluginManager : public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsPluginManager) sl@0: sl@0: /** Resolve an instance of an interface sl@0: @param aTypeId sl@0: */ sl@0: virtual TAny* ResolvePluginInterface(TUint aTypeId) = 0; sl@0: }; sl@0: sl@0: /** An Interface to allow CRP's and CWsPlugins to access the wserv ini file sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsIniFile : public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsIniFile) sl@0: sl@0: /** Find the value of the specified variable if present in the window server ini file. sl@0: @param aVarName TDesC containing the name of the variable to find. sl@0: @param aResult TPtrC that gets set to the value of the ini variable. sl@0: @return ETrue if ini file variable found sl@0: */ sl@0: virtual TBool FindVar(const TDesC &aVarName, TPtrC &aResult) = 0; sl@0: sl@0: /** Find the value of the specified variable if present in the window server ini file. sl@0: @param aVarName TDesC containing the name of the variable to find sl@0: @param aResult TInt that gets set to the value of the ini variable sl@0: @return ETrue if ini file variable found sl@0: */ sl@0: virtual TBool FindVar(const TDesC &aVarName, TInt &aResult) = 0; sl@0: sl@0: /** Find if the variable is present in the ini file sl@0: @param aVarName TDesC containing the name of the variable to find sl@0: @return ETrue if ini file variable found sl@0: */ sl@0: virtual TBool FindVar(const TDesC &aVarName) = 0; sl@0: sl@0: /** Find if the variable is present in the [SCREENx] section sl@0: @param aScreen TInt containing the screen number sl@0: @param aVarName TDesC containing the name of the variable to find sl@0: @return ETrue if ini file variable found sl@0: */ sl@0: virtual TBool FindVar( TInt aScreen, const TDesC &aVarName) = 0; sl@0: sl@0: /** Find the value of the specified variable if present in the [SCREENx] section of the ini file sl@0: @param aScreen TInt containing the screen number sl@0: @param aVarName TDesC containing the name of the variable to find sl@0: @param aResult TInt that gets set to the value of the ini variable sl@0: @return ETrue if ini file variable found sl@0: */ sl@0: virtual TBool FindVar( TInt aScreen, const TDesC &aVarName, TInt &aResult) = 0; sl@0: sl@0: /** Find the value of the specified variable if present in the [SCREENx] section of the ini file sl@0: @param aScreen TInt containing the screen number sl@0: @param aVarName TDesC containing the name of the variable to find sl@0: @param aResult TPtrC that gets set to the value of the ini variable. sl@0: @return ETrue if ini file variable found sl@0: */ sl@0: virtual TBool FindVar( TInt aScreen, const TDesC& aVarName, TPtrC &aResult) = 0; sl@0: sl@0: /** Find if the specified variable is present in the named section of the ini file sl@0: @param aSection TDesC containing the name of the section sl@0: @param aVarName TDesC containing the name of the variable to find sl@0: @return ETrue if ini file variable found sl@0: */ sl@0: virtual TBool FindVar(const TDesC& aSection, const TDesC &aVarName) = 0; sl@0: sl@0: /** Find the value of the specified variable in the named section of the ini file. sl@0: @param aSection TDesC containing the name of the section sl@0: @param aVarName TDesC containing the name of the variable to find sl@0: @param aResult TInt that gets set to the value of the ini variable sl@0: @return ETrue if ini file variable found sl@0: */ sl@0: virtual TBool FindVar(const TDesC& aSection, const TDesC &aVarName, TInt &aResult) = 0; sl@0: sl@0: /** Find the value of the specified variable in the named section of the ini file. sl@0: @param aSection TDesC containing the name of the section sl@0: @param aVarName TDesC containing the name of the variable to find sl@0: @param aResult TPtrC that gets set to the value of the ini variable. sl@0: @return ETrue if ini file variable found sl@0: */ sl@0: virtual TBool FindVar(const TDesC& aSection, const TDesC& aVarName, TPtrC &aResult) = 0; sl@0: }; sl@0: sl@0: /** An interface that allows CRP's and CWsPlugin derived objects to handle events like anim dll's sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: class MWsRawEventServer : public MWsObjectProvider sl@0: { sl@0: public: sl@0: DECLARE_WS_TYPE_ID(KMWsRawEventServer) sl@0: sl@0: /** Register to be notified when some kernel events occur. sl@0: @return KErrNone if successful sl@0: @prototype */ sl@0: virtual TInt RegisterRawEventHandler(MEventHandler* aHandler) = 0; sl@0: /** Unregister from events notification sl@0: @prototype */ sl@0: virtual void UnregisterRawEventHandler(MEventHandler* aHandler) = 0; sl@0: /** Creates a new raw event sl@0: @prototype */ sl@0: virtual void PostRawEvent(const TRawEvent & aEvent) = 0; sl@0: /** Creates a new key event sl@0: @prototype */ sl@0: virtual void PostKeyEvent(const TKeyEvent & aEvent) = 0; sl@0: }; sl@0: sl@0: #endif //#ifndef __WSGRAPHICDRAWERINTEFACE_H__