Update contrib.
1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Interface for Scene Elements
27 #include <graphics/wsgraphicdrawerinterface.h>
28 #include <graphics/surface.h>
31 * @brief Window Server Scene Element Interface Definition
33 * This interface allows Image Sources to be associated with meta-data
34 * to define how the Image Source must be presented within a Scene.
36 * For a conceptual overview of Scenes, refer to the @c MWsScene Interface.
38 * The following aspects of Image Source presentation may be controlled:
39 * @li Source rectangular region
40 * @li Destination rectangular region
41 * @li Rotation and flipping
43 * @li Relative z-order (ordinal position)
44 * @li Tags to descriminate the UI from other Elements
46 * All co-ordinates are pixels offsets from (0,0) representing the
47 * top level of the Image Source or Destination Target (the screen
48 * or an off-screen buffer representing the screen), moving rightwards
49 * and downwards in x and y co-ordinates respectively.
51 * Elements can be marked with flags. There are two different consumers
52 * of flags: Target Renderers and Render Stage Plug-ins.
54 * Target Renderers are sub-systems which actually do composition and
55 * rendering on a particular display device or off-screen buffer.
56 * The EElementTransparencySource flag tells the Target Renderer that
57 * alpha blending must use the alpha channel in the Surface connected to
60 * On the other hand, Render Stage Plug-ins need flags to implement
61 * specific policies such as "UI always on top". To facilitate this,
62 * Elements have a EElementIsIndirectlyRenderedUserInterface or a
63 * EElementIsDirectlyRenderedUserInterface optionally set. This
64 * flag allows Render Stage Plug-ins to keep the relative z-order
65 * of Elements aligned to this policy.
67 * To allow compatible updates to be made to flags, all Render Stage
68 * Plug-ins must preserve the flags in Elements which they do not operate
69 * upon. Target Renderers may ignore the flags in Elements which they
72 * <h2>Intial State</h2>
74 * The initial state for an Element is:
76 * @li No rotation, nor flipped
77 * @li Not part of the Committed Scene
78 * @li No connected Surface
80 * @li Local error value set as KErrNone
81 * @li Source Rectangle and Destination Rectangle is (0,0,0,0)
82 * @il Destination Clipping Rectangle is (0,0,0,0)
84 * When an Image Source is connected, the initial state becomes:
85 * @li Source Rectangle is the extent of the Image Source
86 * @li Destination Rectangle is set at origin (0,0), whose sized equals the
87 * Image Source size truncated the the target screen size.
88 * @li Destination Clipping Rectangle is (0,0,0,0) to represent the entire
89 * area of the target screen.
91 * <h2>Special Rectangle Values</h2>
93 * Sometimes it is desirable to reset a Source, Destination, or Clipping
94 * Rectangle so that the actual value used matches the corresponding Source
95 * Image or Target Screen size. In such cases rectangle (0,0,0,0) is used to
98 * <h2>Extending this interface</h2>
100 * This interface can be extended in two different ways
101 * @li Creating optional extension interfaces with
102 * MWsElement::MWsObjectProvider::ResolveObjectInterface()
103 * @li Defining new TElementFlags flag settings; Render Stage Plug-ins
104 * preserve the value of these across the Render Stage Pipeline.
106 * <h2>Committed Elements versus Pending Elements</h2>
108 * This interface allows Elements to be modified in terms of their
109 * own flag settings, and rotation, as well as their relative position
110 * with other Elements. Queries return the pending values for such
111 * Elements. Any modifications are marked Pending, and affect the Scene
112 * according to the rules described by "Rendering" in @c MWsScene.
114 * <h2>Order in which transformations are applied</h2>
116 * A number of different transformations may be specified for an Element.
117 * The order in which these are applied to arrive at the view seen in
119 * -# SetSourceRectangle (Cropping)
120 * -# SetSourceFlipping (Flipping)
121 * -# SetSourceRotation (Rotation)
122 * -# SetDestinationRectangle (Scaling and Positioning)
123 * -# SetDestinationClippingRectangle (Scaling and Positioning)
124 * -# SetGlobalAlpha (Blending)
126 class MWsElement : public MWsObjectProvider
131 * @brief Flags used by Target Renderers.
133 enum TElementTargetRendererFlags
136 * Target renderer must treat the Element as Opaque.
138 EElementTransparencyNone = 0,
140 * Target renderer must use the Global Alpha Transparency value
143 EElementTransparencyGlobalAlpha = (1 << 0),
145 * Target renderer must use the Alpha Transparency Channel from
148 EElementTransparencySource = (1 << 1),
150 * Reserved flag value; this must not be set.
152 EElementTargetRendererReserved = (1 << 2)
156 * @brief Flags used by Render Stages.
158 enum TElementRenderStageFlags
161 * No flag value set for Render Stage Plug-in
163 EElementRenderStageNone = 0,
165 * Indirectly Rendered User Interface, i.e. rendering via
166 * MWsGraphicsContext calls originating from client CWindowGc
169 EElementIsIndirectlyRenderedUserInterface = (1 << 0),
171 * Directly Render User Interface, i.e. rendering where Window
172 * Server does not see the graphics commands, as is the case for
173 * Direct Screen Access clients.
175 EElementIsDirectlyRenderedUserInterface = (1 << 1),
177 * Reserved values for future Render Stage Plug-in usage
179 EElementRenderStageReserved = (1 << 2)
183 * Amount of rotation of pixel data to apply to the Image Source
184 * to obtain the Target Image
186 enum TElementRotation
188 EElementAntiClockwise0 = 0, /** No rotation */
189 EElementAntiClockwise90 = 1, /** 90 Degrees Anti-clockwise in target */
190 EElementAntiClockwise180 = 2, /** 180 Degrees Anti-clockwise in target */
191 EElementAntiClockwise270 = 3 /** 270 Degrees Anti-clockwise in target */
196 * @brief Set which portion of the image source is used.
198 * Set which rectangular portion of the connected image source
199 * will be used when displaying this Element.
201 * @param aSrc The source rectangle of pixels from the connected Image Source.
202 * This rectangle must not include any pixels outside the Image
203 * Source. (0,0,0,0) means the entire size of the Image Source.
204 * @pre An Image Source must have been connected; @see ConnectSurface()
205 * @return One of the system-wide error codes.
206 * KErrGeneral, if there is no image source connected.
207 * KErrArgument, if the source rectangle includes pixels not in the
208 * connected image source, or has negative width or height.
209 * KErrNone, if successful.
211 virtual TInt SetSourceRectangle(const TRect& aSrc) = 0;
214 * @brief Get the portion of the Image Source being used.
216 * Get the portion of the connected Image Source being used. The default
217 * value is the entire extent of the connected Image Source.
219 * @param aSrc The source rectangle is updated with the current rectangular
220 * region being used within the Image Source.
221 * @pre An Image Source must have been connected; @see ConnectSurface()
222 * @return One of the system-wide error codes.
223 * KErrGeneral, if no Image Source has been connected.
224 * KErrNone, if successful.
226 virtual TInt GetSourceRectangle(TRect& aSrc) = 0;
229 * @brief Set the target area where the Image Source should appear.
231 * Set the target area in the target screen (or off-screen buffer)
232 * where the Image Source should appear. Scaling may result if
233 * the source and destination rectangles differ. A platform specific
234 * algorithm will be used to interpolate the scaled image.
236 * @param aDest The destination rectangle in the target.
237 * @pre An Image Source must have been connected; @see ConnectSurface()
238 * @return One of the system-wide error codes.
239 * KErrGeneral, if there is no image source connected.
240 * KErrArgument, if the destination rectangle has negative width or
242 * KErrNone, if successful.
244 virtual TInt SetDestinationRectangle(const TRect& aDest) = 0;
247 * @brief Get the target area where the Image Source would appear.
249 * Get the target area where the Image Source would appear. The default
250 * value is at (0,0) sized to the Image Source clipped to the size
253 * @param aDest The destination rectangle is updated with the current
254 * region used in the target screen.
255 * @pre An Image Source must have been connected; @see ConnectSurface()
256 * @return One of the system-wide error codes.
257 * KErrGeneral, if no Image Source has been connected.
258 * KErrNone, if successful.
260 virtual TInt GetDestinationRectangle(TRect& aDest) const = 0;
263 * @brief Clip the target area where the Image Source would appear.
265 * Set clipping area where the Image Source would appear. The default
266 * value is the area of the target screen.
268 * @param aDestClipRect The clipping rectangle in the target. (0,0,0,0)
269 * means the entire size of the Target Screen.
270 * @return One of the system-wide error codes.
271 * KErrGeneral, if no Image Source has been connected.
272 * KErrArgument, if the rectangle has negative width or height
273 * KErrNone, if successful.
275 virtual TInt SetDestinationClippingRect(const TRect& aDestClipRect) = 0;
278 * @brief Get the clipping area in the target.
280 * Get the clipping area which limits where in the target screen the
281 * element may appear.
283 * @param aDestClipRect The clipping rectangle is updated with the current
284 * clipping area used in the target screen.
285 * @return One of the system-wide error codes. KErrGeneral means no Image
286 * Source has been connected. KErrNone is returned upon success.
288 virtual TInt GetDestinationClippingRect(TRect& aDestClipRect) const = 0;
291 * @brief Set the rotation that should appear in the target for the
294 * Set the rotation which describes how the connected Image Source
295 * should be rotated to appear in the target.
297 * @param aElementRotation The amount of rotation in the target.
298 * @pre An Image Source must have been connected; @see ConnectSurface()
299 * @return One of the system-wide error codes.
300 * KErrGeneral, if no Image Source has been connected.
301 * KErrArgument, if an out of bounds rotation value has been
303 * KErrNone, if successful.
305 virtual TInt SetSourceRotation(const TElementRotation aElementRotation) = 0;
308 * @brief Get the pending rotation setting as it would appear in the target.
310 * Get the pending rotation setting for the connected Image Source.
311 * By default, the rotation is EElementAntiClockwise0 and this is returned
312 * if there is no connected Image Source.
314 * @return The pending rotation setting.
316 virtual TElementRotation SourceRotation() const = 0 ;
319 * @brief Set flipping about the image horizontal centerline.
321 * Set the pending flipping setting for the connected Image Source.
322 * When flipped, the Image Source appears in the target as inverted
323 * about its horizontal centerline. This effect can be combined
324 * with rotation effects.
325 * By default, the Image Source is not flipped.
327 * @param aFlip If ETrue, the connected Image is flipped, else
329 * @pre An Image Source must have been connected; @see ConnectSurface()
330 * @return One of the system-wide error codes.
331 * KErrGeneral, if no Image Source has been connceted.
332 * KErrNotSupported, if the platform does not support the feature.
333 * KErrNone, if successful.
335 virtual TInt SetSourceFlipping(const TBool aFlip) = 0;
338 * @brief Get the pending flipping setting.
340 * Get the pending flipping setting for the connected Image Source.
341 * By default, the image is not flipped.
343 * @return The pending flipping setting. If no Image is connected, return
346 virtual TBool SourceFlipping() const = 0 ;
349 * @brief Set Target Renderer Flags associated with this Element
351 * Set the Target Renderer flags to be associated with this Element.
353 * @note Flags which are not recognised by an implementation must
354 * be kept to allow the interface to be extended in a
356 * @param aTargetRendererFlags Flags to set for Target Renderer;
357 * @see TElementTargetRendererFlags
358 * @return One of the system-wide error codes.
359 * KErrNotSupported, if the platform does not support the given
361 * KErrArgument, if incompatible flag settings have been made.
362 * KErrNone, if successful.
364 virtual TInt SetTargetRendererFlags(const TUint32& aTargetRendererFlags) = 0;
367 * @brief Set Render Stage Flags associated with this Element
369 * Set the Render Stage flags to be associated with this Element.
371 * @note Flags which are not recognised by an implementation must
372 * be kept to allow the interface to be extended in a
374 * @param aRenderStageFlags Flags to set for Render Stage Plug-ins;
375 * @see TElementRenderStageFlags
376 * @return One of the system-wide error codes.
377 * KErrNotSupported, if the platform does not support the given
379 * KErrArgument, if incompatible flag settings have been requested.
380 * KErrNone, if successful.
382 virtual TInt SetRenderStageFlags(const TUint32& aRenderStageFlags) = 0;
385 * @brief Get Target Renderer Flags associated with this Element
387 * Get the Target Renderer flags associated with this Element.
389 * @note Flags which are not recognised by an implementation must
390 * be kept to allow the interface to be extended in a
392 * @param aTargetRendererFlags Variable to receive TElementTargetRendererFlags
394 virtual void GetTargetRendererFlags(TUint32& aTargetRendererFlags) const = 0;
397 * @brief Get Render Stage Flags associated with this Element
399 * Get the Render Stage flags associated with this Element.
401 * @note Flags which are not recognised by an implementation must
402 * be kept to allow the interface to be extended in a
404 * @param aRenderStageFlags Variable to receive TElementRenderStageFlags
406 virtual void GetRenderStageFlags(TUint32& aRenderStageFlags) const = 0;
409 * @brief Get the Element above this Element.
411 * Get the Element which is above this Element in the Pending Scene.
412 * If the Element is the top-most element, NULL is returned. If the
413 * Element is not in the Scene, NULL is returned.
415 * @return Element above, or NULL.
417 virtual MWsElement *ElementAbove() = 0;
420 * @brief Get the Element below this Element.
422 * Get the Element which is below this Element in the Pending Scene.
423 * If the Element is the bottom-most element, NULL is returned. If the
424 * Element is not in the Scene, NULL is returned.
426 * @return Element below, or NULL.
428 virtual MWsElement *ElementBelow() = 0;
431 * @brief Connect or re-Connect a Surface to this Element.
433 * Connect the given Surface to this Element, or re-Connect a new
434 * Surface to this Element which already has a connected Surface.
435 * The Element does not need to be in the Scene when this call is made.
437 * @note The Source Rectangle of the Element is updated to correspond
438 * to match the Source Rectangle of the Surface. Thus any
439 * prior Source Rectangle setting will be overwritten.
441 * @param aSurface Surface to connect to. If this is the Null
442 * Surface, then the Source Rectangle of the
443 * Element is set to (0,0,0,0).
444 * @return One of the system-wide error codes.
445 * KErrArgument, if supplied Surface cannot be connected. For
446 * example the Element has a flag indicating it has an Alpha
447 * Channel but the Surface does not.
448 * KErrNone, if successful.
450 virtual TInt ConnectSurface(const TSurfaceId& aSurface) = 0;
453 * @brief Get the Surface connected to this Element
455 * @return The Surface Identifier of the Connected Surface. This
456 * identifier may represent the Null Surface Id if there
457 * was no Surface connected in the Pending Scene for this
460 virtual const TSurfaceId& ConnectedSurface() const = 0;
463 * @brief Set the Global Alpha Transparency value
465 * Sets the Global Alpha Transparency value for this Element. Elements
466 * are by default fully opaque, represented by opacity 255. On platforms
467 * that support it, the Alpha Transparency value can be reduced down
468 * to 0 representing fully transparent. The purpose of this is to
469 * allow the fading in and fading out of Elements into the Scene.
471 * @param aAlpha The Alpha Transparency value desired. Values
472 * are clamped to be within the range [0, 255] where 0
473 * represents fully transparent, and 255 represents
475 * @note This setting has no effect unless the flag
476 * Target Renderer flag EElementTransparencyGlobalAlpha
477 * is set; @see SetTargetRendererFlags()
478 * @note Out of range values are clamped silently, and do not cause
480 * @return One of the system-wide error codes.
481 * KErrNotSupported, if the supplied value, once clamped, is not
482 * supported on the platform.
483 * KErrNone, if successful.
485 virtual TInt SetGlobalAlpha(const TInt aAlpha) = 0;
488 * @brief Get the Global Alpha Transparency value
490 * Gets the Global Alpha Transparency value for this Element. Elements
491 * are by default fully opaque, represented by opacity 255.
493 * @param aAlpha Variable which receives the Global Alpha Transparency
496 virtual void GlobalAlpha(TInt& aAlpha) const = 0;
498 #endif // WSELEMENT_H