#include <w32std.h>
class RWindowBase : public RWindowTreeNode |
Public Member Enumerations | |
---|---|
enum | TCaptureFlags { TCaptureFlagEnabled, TCaptureFlagDragDrop, TCaptureFlagAllGroups, TCaptureDisabled, ..., TCaptureDragDrop } |
Protected Member Functions | |
---|---|
RWindowBase() | |
RWindowBase(RWsSession &) | |
TInt | construct(const RWindowTreeNode &, TUint32, TInt, TDisplayMode) |
Inherited Attributes | |
---|---|
MWsClientClass::iBuffer | |
MWsClientClass::iWsHandle | |
RWindowTreeNode::__DECLARE_TEST |
Inherited Enumerations | |
---|---|
RWindowTreeNode:TFadeControl |
Client-side handle to a server-side window.
The server-side windows of handles derived from this class can be displayed on the device's screen, and associated with pointer events.
This class is not for user derivation; however derived classes form part of the Window Server API.
Capture behaviour flags.
See also: SetPointerCapture() EEventDragDrop
RWindowBase | ( | ) | [protected] |
Protected default constructor; creates an uninitialised, sessionless window handle.
Handles to server-side objects must be created in a session in order to be operational; this constructor is merely a convenience to allow the handle to be stored as a data member. See RWindowTreeNode::RWindowTreeNode() for details of how the complete setup of a handle field may be deferred until the window server session is known.
RWindowBase | ( | RWsSession & | aWs | ) | [protected] |
Protected constructor; creates an uninitialised window handle within a session.
Parameter | Description |
---|---|
aWs | Window server session. |
IMPORT_C TPoint | AbsPosition | ( | ) | const |
Gets a window's absolute position - ie the windows position relative to the current screen size mode.
This function always causes a flush of the window server buffer.
Returns: Position of this window's origin relative to the screen.
IMPORT_C void | Activate | ( | ) |
Displays the window and enables it to receive events.
Calling this method on a window causes it to receive a redraw event if it is a non-backed-up window, and should be called after a window has been constructed and initialised.
Windows are not displayed automatically when they are constructed. This allows them to be customised using SetPosition(), SetOrdinalPosition(), SetExtent(), etc., before they are displayed.
Adds an on-screen key rectangle.
This function configures an area of the screen, given by aRect, to act as an on-screen key. Any subsequent pointer events within this area will be translated by the window server into key events with a scan code of aScanCode.
aActivatedByPointerSwitchOn indicates whether or not to generate a key event as a result of a pointer event that acts to switch the machine on.
Before v7.0, calling this function stopped the window from receiving pointer events (they were received as key events) and pointer events outside the specified key rectangle were discarded. From v7.0, pointer events outside the key rectangles are not discarded and may be handled.
This function always causes a flush of the window server buffer.
See also: RemoveAllKeyRects()
Parameter | Description |
---|---|
aRect | Rectangle to act as an on-screen key, relative to the window origin |
aScanCode | Scan code of key events generated by this on-screen key |
aActivatedByPointerSwitchOn | If ETrue, a switch-on pointer event will produce a key event. If EFalse, a switch-on pointer event will not produce a key event. |
Returns: KErrNone if successful, otherwise one of the system-wide error codes.
Allocates a buffer for storing pointer movements.
The pointer move buffer is used by applications that need to process every single pointer move or drag event: for example, a freehand drawing application.
Normally, multiple drag events which the window server receives from the pointer device driver are translated into a single drag event. The single drag event incorporates all pointer events that occurred while the client was processing the previous pointer event. If the pointer move buffer is used, the window server stores all pointer events coming from a single pointer in a pointer buffer, and then delivers the entire buffer when it is full.
If there are multiple pointers available in the system (for example there is a multi-touch screen present), for compatibility reasons only events coming from the single emulated pointer will be stored in a pointer buffer. For more information about emulated pointer please refer to the comment of RWindowBase::EnableAdvancedPointers() method.
AllocPointerMoveBuffer() must be called before the pointer move buffer can be used. It would typically be called during window construction.
After the pointer move buffer has been allocated, the window server does not start putting pointer events into it until EnablePointerMoveBuffer() is called.
Note: move events are not available on all hardware.
This function always causes a flush of the window server buffer.
See also: RWindowBase::EnableAdvancedPointers()
Parameter | Description |
---|---|
aMaxPoints | Maximum number of pointer events the buffer can hold. This affects the frequency at which the buffer is flushed. |
aFlags | Obsolete argument: set to zero always. |
Returns: KErrNone if successful, otherwise one of the system-wide error codes.
IMPORT_C void | CancelPointerRepeatEventRequest | ( | ) |
Cancels a request for a pointer repeat event.
If using multiple pointers then this method will issue the cancel to whichever pointer is currently deemed to be the primary pointer. The primary pointer is only known internally. It is advised to use only this method for windows which do not have multiple pointers enabled.
See also: RequestPointerRepeatEvent() CancelPointerRepeatEventRequest(const TUint8 aPointerNumber)
Cancels a request for a pointer repeat event.
Flushes the WServ command buffer.
See also: RequestPointerRepeatEvent(TTimeIntervalMicroSeconds32 aTime,const TRect &aRect, const TUint8 aPointerNumber) To become publishedAll with WSERV NGA APIs To become released with WSERV NGA APIs
Parameter | Description |
---|---|
aPointerNumber | Pointer the repeat event is requested for |
Returns: KErrNone if successful, KErrNotReady if construction not complete, KErrArgument if aPointerNumber is not a valid pointer number
IMPORT_C void | ClaimPointerGrab | ( | TBool | aSendUpEvent = ETrue | ) |
Claims any/all pointer grabs from another windows.
For any pointer grabs already in effect in other windows, a window can claim the pointer grabs from those windows by calling this function. All subsequent events will be delivered to this window, up to and including the next "up" event for each pointer. This next up event terminates the pointer grab for that pointer, for that window (other pointers will continue being grabbed until their up event).
This function would typically be used where clicking in a window pops up another window, and where the popped-up window wishes to grab the pointers as though the original click had been in that window.
Note:
If aSendUpEvent is set to ETrue, the window losing the grab is immediately sent an up event, signalling the end of its pointer grab.
See also: RWindowBase::SetPointerGrab() RWindowBase::ClaimPointerGrab(const TUint8 aPointerNumber, const TBool aSendUpEvent)
Parameter | Description |
---|---|
aSendUpEvent | Whether to deliver an up event to the window that previously had the grab. |
Claims the pointer grab from another window for a specified pointer.
If the pointer grab for a given pointer is already in effect in another window, a window can claim the pointer grab from that window by calling this function. All subsequent events related to this pointer will be delivered to this window, up to and including the next "up" event. This next up event terminates the pointer grab.
Flushes the WServ command buffer.
SwEvent capability is required only for grabbing between windows belonging to different RWsSessions. Grabbing between windows from the same session does not require this capability.
Note: If aSendUpEvent is set to ETrue, the window losing the grab is immediately sent an up event, signalling the end of its pointer grab.
See also: RWindowBase::SetPointerGrab() RWindowBase::ClaimPointerGrab(TBool aSendUpEvent)
Parameter | Description |
---|---|
aPointerNumber | a pointer number of the pointer for which the grab will be claimed |
aSendUpEvent | Whether to deliver an up event to the window that previously had the grab. |
Returns: KErrNone if successful, KErrNotFound if aPointerNumber is out of range, KErrNotSupported if pointer grab for pointer other than TAdvancedPointerEvent::EDefaultPointerNumber claimed for window in single pointer emulation mode, KErrPermissionDenied if trying to grab from a different window owner without the required capability.
IMPORT_C void | DisablePointerMoveBuffer | ( | ) |
Instructs the window server to stop adding pointer events to the pointer move buffer.
IMPORT_C void | DiscardPointerMoveBuffer | ( | ) |
Discards all events in the pointer move buffer.
The window server subsequently continues to put new pointer events into the pointer move buffer as usual (if the buffer is enabled).
IMPORT_C TDisplayMode | DisplayMode | ( | ) | const |
Gets the window's current display mode.
This function always causes a flush of the window server buffer.
Returns: The window's current display mode.
IMPORT_C void | EnableAdvancedPointers | ( | ) |
After calling this method all pointer events delivered to this window will be instances of TAdvancedPointerEvent class which in addition to TPointerEvent provides pointer number, proximity and pressure information.
If the device is able to handle more than one pointer at the same time (for example a touch screen that is able to determine coordinates of more than one finger touching it at the same time), then this method will enable delivering events from all detected pointers to this window.
This method must be called before the window is activated by calling RWindowBase::Activate(). Otherwise this will be ignored (release build), or panic (debug build).
If this method is not called for the window, it is assumed that the window is not able to receive events from multiple pointers, and thus only events from a single emulated pointer are sent to it. Emulated pointer ensures that code written for a single pointer environment works properly in a multiple pointer environment: there is only one global emulated pointer in the whole system and at each point in time its state is equal to state of one of the physical pointers detected by the device. WSERV switches emulated pointer between these physical pointers in a way that maximizes usability.
This method also affects any Animation working in this window. If it has been called, such an Animation will receive pointer events from all pointers. Otherwise it will receive only events from the emulated pointer.
See also: TAdvancedPointerEvent TPointerEvent::AdvancedPointerEvent() MAnimGeneralFunctions::GetRawEvents() RWindowBase::Activate() To become publishedAll with WSERV NGA APIs To become released with WSERV NGA APIs
IMPORT_C void | EnableBackup | ( | TUint | aBackupType = EWindowBackupAreaBehind | ) |
Requests that this window backs up all or part of the screen's contents. There are two backup possibilities:- just the area behind this window (the default), or the whole screen. Backing up the whole screen is useful for windows that require the rest of the screen to fade when they are displayed. In this case, the full screen backup is of the unfaded content of the screen.
It is possible to specify both types of backup at the same time. This may be used by fade behind windows that can be dragged across the screen, e.g. a dialog. This is done by calling this function with the parameter EWindowBackupAreaBehind|EWindowBackupFullScreen.
When backing up the whole screen, this function should be called before the window is activated, and before you call fade behind on it (RWindowBase::FadeBehind()).
Backing up a window is an optimisation feature that is honoured only if there is enough memory to do so, (it requires bitmaps and a region to be created and maintained). If there is not enough memory, all or part of the backup will be lost. In this case, a redraw will be issued at the relevant point just as if the window had not been backed up.
The backup bitmap is made and is claimed by the window not when EnableBackup() is called, but when the window becomes visible (this is normally when the window is activated).
Only one backed up window of the same type can exist at any one time (although the same window can have both types of backup at the same time). If a window requests a backup of type EWindowBackupAreaBehind, any window that has already claimed a backup of this type will lose it. If a window requests a backup of type EWindowBackupFullScreen, this request will fail if another window has already claimed a backup of this type.
See also: TWindowBackupType
Parameter | Description |
---|---|
aBackupType | The type of backed up window. See the TWindowBackupType enum for possible values. |
IMPORT_C void | EnablePointerMoveBuffer | ( | ) |
Enables the pointer move buffer for receiving pointer move events.
This function instructs the window server to begin putting pointer events into the pointer move buffer. AllocPointerMoveBuffer() must have previously been called, or a panic will occur.
As soon as the pointer buffer has at least one point in it, the window server sends an event of type EEventPointerBufferReady to the client, and the events can be retrieved from the pointer move buffer using RetrievePointerMoveBuffer().
Note: pointer move, drag and enter/exit events are not delivered to a window by default. An application using the pointer move buffer should use PointerFilter() to request that these events be delivered.
See also: DisablePointerMoveBuffer()
IMPORT_C void | FadeBehind | ( | TBool | aFade | ) |
Sets whether or not all windows behind the current window, in the same window group, should be faded or unfaded.
This function can be used to fade all windows used by an application when a dialogue is displayed.
Fading works on a count basis. Fading increases the fade count, while unfading decreases it. If the fade count is greater than zero the window will be drawn faded. Only when it drops back to zero will it stop being faded.
This functionality is used to support nested dialogues. When bringing up a dialogue the rest of the application windows are faded. If an option is selected to launch another dialogue, the original dialogue is faded (fade count 1) and the remaining windows have their fade count increased to 2. When the dialogue is closed the fade count is reduced by one, which displays the original dialogue, but the remaining windows remain faded. They are only displayed when the other dialogue is closed and their fade count is reduced to zero.
Note:
Information is lost when a window is faded, so a redraw is required to restore the window content when it is unfaded (blank and backup windows deal with this themselves). A redraw is also required for the areas that were in shadow when the window was faded, since the shadowing also causes information loss. While a window is faded all drawing to that window will be adjusted appropriately by the window server.
See also: RWindowTreeNode::SetFaded() RWindowTreeNode::SetNonFading()
Parameter | Description |
---|---|
aFade | ETrue to increase the fade count of all windows behind the current window (within the current window group), EFalse to reduce the fade count. |
IMPORT_C TInt | FixNativeOrientation | ( | ) |
Disclaimer - this API is internal and is subject to change
IMPORT_C void | FreePointerMoveBuffer | ( | ) |
Frees the pointer move buffer.
This function should be called on a window which calls AllocPointerMoveBuffer().
IMPORT_C TInt | GetBackgroundSurface | ( | TSurfaceConfiguration & | aConfiguration | ) | const |
Retrieves a copy of the current configuration for background surface attached to the window.
The client must present a properly initialized TSurfaceConfiguration on entry in particular the size field must be valid before the call. The server will then fill the object with the available data.
If the server supports more fields it will truncate the returned data to the size the client has requested. If the server has fewer fields it will set the returned size field to the lower value.
Note that the returned attribute values will only be guaranteed equivalent to the input values, not exact copies, as the values may be calculated from internal flags rather than reported from a cached exact copy.
The window has not been set as transparent, or the client is panicked with the code EWservPanicTransparencyMisuse. The Size member of the configuration must be an acceptable value. The size must match the Size() member of a defined TSurfaceConfiguration variant, or be larger than all variants known to the server. If not, the client is panicked with code EWservPanicInvalidSurfaceConfiguration.
This function always causes a flush of the WServ session buffer.
See also: SetBackgroundSurface RemoveBackgroundSurface
Parameter | Description |
---|---|
aConfiguration | On entry the Size field specifies the maximum size of the object.On return fields up to this size are filled in. |
Returns: KErrNone on success or any system-wide error codeKErrNotFound The window does not have a background surface attached.KErrNoMemory If a memory allocation fault occurs.
IMPORT_C TInt | GetPointerCapturePriority | ( | ) | const |
Gets the windows's pointer capture priority
See also: SetPointerCapturePriority()
Returns: Window's pointer capture priority
IMPORT_C TPoint | InquireOffset | ( | const RWindowTreeNode & | aWindow | ) | const |
Enquires the offset between this and another window.
A positive value indicates a position to the right and down from aWindow, a negative value indicates a position to the left and up.
This function always causes a flush of the window server buffer.
Parameter | Description |
---|---|
aWindow | Another window tree node. |
Returns: The offset of this window relative to aWindow.
IMPORT_C TBool | IsFaded | ( | ) | const |
Tests whether the current window is faded.
This function always causes a flush of the window server buffer.
Returns: ETrue if the current window is faded, otherwise EFalse.
IMPORT_C TBool | IsNonFading | ( | ) | const |
Tests whether the current window is non-fading.
This function always causes a flush of the window server buffer.
See also: RWindowTreeNode::SetNonFading()
Returns: ETrue if the current window is non-fading, otherwise EFalse.
IMPORT_C TRgb | KeyColor | ( | ) | const |
This function returns the key color for the window, if used.
In chroma key composition mode, this will be an opaque color; in alpha composition mode, it will be transparent black, i.e. TRgb(0, 0, 0, 0). If the window does not have a surface, the return value is transparent black.
Windows with surfaces return the system defined key color.
If the return value is opaque, the client should take care to avoid using the color when rendering further content in the window, since it may cause that content to become invisible.
Returns: The key color used in this window, or transparent black.
Moves this window to another window group.
This function allows a window with a window group as its immediate parent to be moved from one window group to another one. The two window groups must be owned by the same client. The new parent window group is specified by its identifier.
This function always causes a flush of the window server buffer.
Parameter | Description |
---|---|
aIdentifier | The identifier of the target window group. This is the value returned by RWindowGroup::Identifier(). |
Returns: KErrNone if successful, otherwise another of the system-wide error codes. An error is returned if an attempt is made to move the window between window groups in different clients.
IMPORT_C TInt | PasswordWindow | ( | TPasswordMode | aPasswordMode | ) |
Makes this window the password window.
Only one password window can exist concurrently. Another window may take over as the password window if either (a) the current password window calls this function with aPasswordMode=EPasswordCancel, or (b) the current password window is destroyed.
This function always causes a flush of the window server buffer.
Parameter | Description |
---|---|
aPasswordMode | The type of password handling required. |
Returns: KErrNone if successful, KErrInUse if this function is called when another password window already exists, otherwise another of the system-wide error codes.
Sets the filter which controls which pointer events are sent to the client session.
A pointer filter can be defined for each window separately, and changed dynamically. The default behaviour when a window is created is that move, drag, enter and exit events are filtered out and not delivered to the client.
See also: TPointerFilter
Parameter | Description |
---|---|
aFilterMask | Bitwise OR of values from TPointerFilter masking event types which will be updated. |
aFilter | Bits containing new values for the masked event types. A 1 bit causes the corresponding event to be filtered out, a 0 bit lets through the corresponding event. |
IMPORT_C TPoint | Position | ( | ) | const |
Gets a window's position relative to its parent.
This function always causes a flush of the window server buffer.
Returns: Position of this window's origin relative to the origin of its parent.
IMPORT_C void | RemoveAllKeyRects | ( | ) |
Removes all the on-screen keys that have been added to this window.
After this function has been called, all pointer events are delivered to the window, reversing the effect of AddKeyRect().
See also: AddKeyRect()
IMPORT_C void | RemoveBackgroundSurface | ( | TBool | aTriggerRedraw | ) |
This removes any background surface that has been set to the window.
The surface ID registration associated with the window will be released. This is independent of any outstanding calls to RWsSession::RegisterSurface, which should be completed with a corresponding call to UnregisterSurface.
The aTriggerRedraw parameter triggers a redraw of at least the affected areas of the window at the end of this method.
This function does not explicitly force a flush of the WServ session buffer. Internal reference counting will keep the Surface ID "live" until the client code has released any handles and provisioners, and WServ processes the buffered remove command, and the final frame containing this surface has finished being displayed.
See also: SetBackgroundSurface GetBackgroundSurface
Parameter | Description |
---|---|
aTriggerRedraw | If set causes WServ to repaint any affected portions of the display. |
IMPORT_C void | RequestPointerRepeatEvent | ( | TTimeIntervalMicroSeconds32 | aTime, |
const TRect & | aRect | |||
) |
Requests a pointer repeat event.
This function instructs the window server to send a single pointer repeat event if the pointer state that caused the last event (e.g. EButton1Down) for the pointer has not changed within aTime and the pointer has not moved outside aRect. Pointer repeat events are pointer events of type TPointerEvent::EButtonRepeat.
While the repeat is in operation all move and drag events within the rectangle are filtered out. The repeat is cancelled if the pointer moves outside the rectangle or generates any other pointer event.
A typical use of this function would be for a scrollbar, so that holding down the pointer results in a continuous scroll.
If using multiple pointers then this method will issue the repeat to the emulated single pointer. It is advised to use only this method for windows which do not have multiple pointers enabled.
See also: CancelPointerRepeatEventRequest() RequestPointerRepeatEvent(TTimeIntervalMicroSeconds32 aTime,const TRect &aRect, const TUint8 aPointerNumber)
Parameter | Description |
---|---|
aTime | Time interval before pointer repeat event should be sent. |
aRect | Repeat event occurs only if pointer is within this rectangle. |
IMPORT_C TInt | RequestPointerRepeatEvent | ( | TTimeIntervalMicroSeconds32 | aTime, |
const TRect & | aRect, | |||
const TUint8 | aPointerNumber | |||
) |
Requests a pointer repeat event.
This function instructs the window server to send a single pointer repeat event if the pointer state that caused the last event (e.g. EButton1Down) has not changed within aTime and the pointer has not moved outside aRect. Pointer repeat events are pointer events of type TPointerEvent::EButtonRepeat.
While the repeat is in operation all move and drag events within the rectangle are filtered out. The repeat is cancelled if the pointer moves outside the rectangle or generates any other pointer event.
A typical use of this function would be for a scrollbar, so that holding down the pointer results in a continuous scroll.
Flushes the WServ command buffer.
See also: CancelPointerRepeatEventRequest(const TUint8 aPointerNumber) To become publishedAll with WSERV NGA APIs To become released with WSERV NGA APIs
Parameter | Description |
---|---|
aTime | Time interval before pointer repeat event should be sent. |
aRect | Repeat event occurs only if pointer is within this rectangle. |
aPointerNumber | Pointer the repeat event is requested for |
Returns: KErrNone if successful, KErrArgument if aPointerNumber is not a valid pointer number
Retrieves events from the pointer move buffer.
Use this function to get pointer events from the pointer move buffer. This function should be called when an event has occurred of type EEventPointerBufferReady (defined in TEventCode).
This function always causes a flush of the window server buffer.
Parameter | Description |
---|---|
aBuf | Buffer to store events retrieved from pointer move buffer |
Returns: KErrNone if successful, otherwise one of the system-wide error codes.
IMPORT_C TInt | SetBackgroundSurface | ( | const TSurfaceId & | aSurface | ) |
This sets the background of the window to be the given surface.
The surface will be stretched or compressed to fill the extent of the window. The background is updated on screen when the window is next redrawn.
When the window is moved, the surface will move with it. If the window is resized, the surface will be similarly scaled. If a 1-1 pixel mapping is required and the window size changes, the function will need to be called again with a different TSurfaceId for a surface with the new size of the window.
The key color to use in chroma key composition mode is defined by the system, for all TSurfaceId background windows to use. In alpha composition mode, transparent black is used. The composition mode is determined by the screen display mode: if the mode supports an alpha channel, alpha composition is used; otherwise chroma key composition is used.
The window is either an RWindow or an RBlankWindow, or the client is panicked with the code EWservPanicDrawable. The surface must be compatible with being composited on the screen this window appears on; otherwise the client thread is panicked with code EWservPanicIncompatibleSurface.
The window is opaque. The base area of the window is the full extent of the window. A GCE surface layer has been created to associate the surface with a location on screen. The surface's content is in an undefined state, but the surface remains initialized. This function always causes a flush of the window server buffer.
Parameter | Description |
---|---|
aSurface | The surface to act as the background of the window |
Returns: KErrNone on success or a system-wide error code.
IMPORT_C TInt | SetBackgroundSurface | ( | const TSurfaceConfiguration & | aConfiguration, |
TBool | aTriggerRedraw | |||
) |
This sets a surface to appear in front of the window's background within a given area of that window.
Any rendering performed by CWindowGc operations will appear in front of surface for the window. The TSurfaceConfiguration object contains the Surface ID and allows various surface presentation attributes to be specified. This describes the mapping from surface co-ordinates to screen co-ordinates, allowing for scaling, cropping, and rotation.
For details on the attributes see TSurfaceConfiguration.
The composition mode is determined by the screen display mode: if the mode supports an alpha channel, alpha composition is used; otherwise chroma key composition is used. In chroma key composition mode, the key color used is defined by the system, for all TSurfaceId background windows to use. In alpha composition mode, transparent black is used.
If the same surface ID is already set as the window background surface, then only the configuration parameters will be updated.
If the window already has a background surface (that is not same as the new surface) then that surface will be removed and the new background surface will be set. The Surface ID will be registered while attached to this window. This is in addition to any call to RWsSession::RegisterSurface.
The surface is opaque; otherwise results are not defined. All members of the TSurfaceConfiguration recognised by the server must have valid values. If not, the client is panicked with code EWservPanicInvalidSurfaceConfiguration. The surface must not be the UI surface; otherwise the client thread is panicked with code EWservPanicInvalidSurface. The surface must not be the null surface ID; otherwise the client thread is panicked with code EWservPanicInvalidSurface.
The window must be redrawn before the surface becomes visible, and the surface's content will be visible after the composition and refresh. Composition of the surface will be automatically triggered if required. The aTriggerRedraw flush parameter will cause this redraw, or the client should cause a redraw after this call. This function always causes a flush of the WServ session buffer.
See also: RemoveBackgroundSurface GetBackgroundSurface
Parameter | Description |
---|---|
aConfiguration | The set of configuration that applies to the surface. |
aTriggerRedraw | If set causes WServ to repaint any affected portions of the display. |
Returns: KErrNone on success or any system-wide error codeKErrNotSupported if surface support is not availableKErrNoMemory If a memory allocation fault occursKErrArgument If the surface ID is not accepted by the GCE
IMPORT_C TInt | SetCornerType | ( | TCornerType | aCornerType, |
TInt | aCornerFlags = 0 | |||
) |
Sets the shape of a window's corners.
This function always causes a flush of the window server buffer.
See also: TCornerFlags
DeprecatedParameter | Description |
---|---|
aCornerType | Corner type to apply. |
aCornerFlags | Bitwise OR of flags indicating corners to exclude. |
Returns: KErrNone if successful, otherwise one of the system-wide error codes.
Sets a backed-up window's extent, relative to its parent, and returns an error code from the server.
See SetPosition() and SetSizeErr() for a description of the rules applying to aPoint and aSize respectively.
Avoid using this function for a window of type RBlankWindow or RWindow (in other words, not a backed-up window). Instead, use SetExtent(), which is more efficient as it does not return a value. However, if the window is a backed-up window, or of unknown type, SetExtentErr() should be used, because setting the extent of a backed-up window may cause an out-of-memory error.
This function may be called at any time after the window's Construct() function: the window's extent will change dynamically.
This function always causes a flush of the window server buffer.
Parameter | Description |
---|---|
point | The position of the window's origin, relative to its parent. |
size | Window size. |
Returns: KErrNone if successful, otherwise one of the system-wide error codes.
IMPORT_C void | SetPointerCapture | ( | TInt | aFlags | ) |
Sets the pointer capture state.
A window which has called this function can capture events that would otherwise go to other windows. Normally, pointer events are sent to the window at the co-ordinates where the event occurs. Capturing only works on windows which are behind the capturing window in the z order.
Capture can be enabled or disabled. If capturing is enabled a window will, by default, capture events only from windows in the same window group. A flag can be specified to allow it to capture events across all window groups.
Another flag can be used to specify drag-drop capture. This causes a drag-drop message to be sent to the window within which the pen was lifted. Drag-drop with a pen is a tap-drag-lift sequence.
Capture functionality is useful in situations where only the foreground window should receive events, e.g. in a modal dialogue.
See also: TCaptureFlags
Parameter | Description |
---|---|
aFlags | Bitwise OR of flag values from TCaptureFlags. |
IMPORT_C void | SetPointerCapturePriority | ( | TInt | aPriority | ) |
Sets the window's pointer capture priority.
To allow window gain a property that allows them to be clicked on even when they are behind a modal window. The priority will be 0 by default. Windows that need to stop modal window in front of them, should set this value to positive. Window can only capture pointer events from another window of same group, if it has at least the same pointer capture priority.
Parameter | Description |
---|---|
aPriority | Pointer capture priority |
IMPORT_C void | SetPointerGrab | ( | TBool | aState | ) |
Allows or disallows pointer grabs in a window.
If the pointer grab is set, any down event of a given pointer in this window will cause a pointer grab of this pointer, terminated by the next corresponding up event for this pointer. All pointer events, for the grabbed pointer, up to and including the next up event will be sent to that window.
Please note that the pointer grab works separately for each pointer present in the system (for example, separately for each finger touching the multi-touch screen).
Pointer grab can be used for drag-and-drop or other situations when you want the events delivered to the same window even though the pen will be dragged outside that window. This function is typically called during window construction so that pointer grab is enabled for the lifetime of the window.
Pointer grab is disabled by default.
See also: ClaimPointerGrab()
Parameter | Description |
---|---|
aState | New state for the pointer grab setting. |
IMPORT_C void | SetPosition | ( | const TPoint & | point | ) |
Sets the position of a window relative to its parent.
The co-ordinates given in aPos specify the position of the top left-hand corner of the window, relative to the top left-hand corner of its parent. A positive value indicates a direction to the right and down. Negative values are valid but will cause part of the window to be outside its parent's extent, and therefore clipped.
This function may be called at any time after the window's Construct() function: the window's position will change dynamically.
A window's position can also be set using the RWindow::SetExtent() and RWindowBase::SetExtentErr() functions.
Note: upon creation, a window's extent is the same as its parent s. In other words it has the same origin and size. If the window s parent is a group window, it is initialised to be full screen.
Parameter | Description |
---|---|
point | The position of the window's origin, relative to its parent |
IMPORT_C TInt | SetRequiredDisplayMode | ( | TDisplayMode | aMode | ) |
This method has been deprecated. Windows can no longer be associated with a display mode other than the system display mode. This method no longer has any effect and will always return the system display mode.
This function always causes a flush of the window server buffer.
Parameter | Description |
---|---|
aMode | Ignored. |
Returns: The system display mode.
IMPORT_C void | SetShadowDisabled | ( | TBool | aState | ) |
This method has been deprecated. Shadowing is no longer supported. Calling it has no effect. Deprecated
Parameter | Description |
---|---|
aState | Ignored. |
IMPORT_C void | SetShadowHeight | ( | TInt | aHeight | ) |
This method has been deprecated. Shadowing of a window is no longer supported. Calling it has no effect. Deprecated
Parameter | Description |
---|---|
aHeight | Ignored. |
Sets a window's shape arbitrarily, if rectangular windows are not required.
This function always causes a flush of the window server buffer.
Parameter | Description |
---|---|
aRegion | Region defining window shape. |
Returns: KErrNone if successful, otherwise one of the system-wide error codes.
Sets the size of a backed-up window.
A window's size is not constrained by the size of its parent. However, its visible region is, and the child window's visible region will always be clipped to the parent's visible region.
Avoid using this function for a window known to be of type RBlankWindow or RWindow (i.e. not a backed-up window). Instead, use SetSize(), which is more efficient as it does not return a value. However, if the window is a backed-up window, or of unknown type, SetSizeErr() should be used, because setting the size of a backed-up window may cause an out-of-memory error.
This function may be called at any time after the window's Construct() function: the window's size will change dynamically.
This function always causes a flush of the window server buffer.
See also: RWindow::SetSize() RWindow::SetExtent() RWindowBase::SetExtentErr()
Parameter | Description |
---|---|
size | Window size. |
Returns: KErrNone if successful, otherwise one of the system-wide error codes.
IMPORT_C void | SetSurfaceTransparency | ( | TBool | aSurfaceTransparency | ) |
This API is not supported in the current OS distribution
IMPORT_C void | SetVisible | ( | TBool | aState | ) |
Sets the window's visibility.
This function can be called after the window has been created to dynamically change its visibility.
Notes:
When a window is invisible, it receives no events from the window server.
A window is invisible before it is activated, irrespective of the state of its visibility flag.
Parameter | Description |
---|---|
aState | New value for the visibility. |
IMPORT_C TSize | Size | ( | ) | const |
Gets the window's current size.
This function always causes a flush of the window server buffer.
Returns: Current size of window.
TInt | construct | ( | const RWindowTreeNode & | parent, |
TUint32 | aHandle, | |||
TInt | aType, | |||
TDisplayMode | aDisplayMode | |||
) | [protected] |