#include <w32std.h>
class RDirectScreenAccess : public MWsClientClass |
Public Member Enumerations | |
---|---|
enum | TPriority { EPriorityVeryHigh } |
enum | TTerminationReasons { ETerminateCancel, ETerminateRegion, ETerminateScreenMode, ETerminateRotation } |
Public Member Functions | |
---|---|
RDirectScreenAccess() | |
RDirectScreenAccess(RWsSession &) | |
IMPORT_C void | Cancel() |
IMPORT_C void | Close() |
IMPORT_C void | Completed() |
IMPORT_C TInt | Construct() |
IMPORT_C TInt | Construct(TBool) |
IMPORT_C TInt | Request(RRegion *&, TRequestStatus &, const RWindowBase &) |
Inherited Attributes | |
---|---|
MWsClientClass::iBuffer | |
MWsClientClass::iWsHandle |
The interface between an application that directly accesses the screen and the window server.
Note that most applications that need to access the screen directly should use CDirectScreenAccess instead. RDirectScreenAccess only needs to be used directly by applications without access to an active scheduler.
The priority of the active object that responds to notification that direct screen access must stop.
Enumerator | Value | Description |
---|---|---|
EPriorityVeryHigh | 2000 |
A suggested value for the priority of the active object that responds to notification from the window server that direct screen access must stop. This is also the value used by CDirectScreenAccess for this purpose. |
Provides the reason why direct screen access must terminate. This enum is used in the MAbortDirectScreenAccess::AbortNow() and MDirectScreenAccess::Restart() functions.
The first value (ETerminateCancel) indicates that direct screen access is being terminated by the application. The final three values indicate that direct screen access is being terminated by the window server. Note that for users of CDirectScreenAccess, the termination code is not important because these issues are dealt with by CDirectScreenAccess::StartL().
IMPORT_C | RDirectScreenAccess | ( | ) |
Default constructor.
Developers should use the other constructor overload instead.
IMPORT_C | RDirectScreenAccess | ( | RWsSession & | aWs | ) |
C++ constructor with a connected window server session.
Construct() must be called to complete construction.
Parameter | Description |
---|---|
aWs | Connected session with the window server. |
IMPORT_C void | Cancel | ( | ) |
Indicates to the window server that you have finished performing direct screen access.
IMPORT_C void | Close | ( | ) |
Calls Completed() then deletes the server side resource and sets the client's handle to it to NULL.
IMPORT_C void | Completed | ( | ) |
Indicates to the window server that you have responded to the completion of the request status passed to Request(), by stopping direct screen access.
IMPORT_C TInt | Construct | ( | ) |
Second phase constructor.
Creates the server side resource and initialises the client's handle to it.
This function always causes a flush of the window server buffer.
Returns: KErrNone if successful, otherwise one of the system wide error codes.
Second phase constructor.
Creates the server side resource and initialises the client's handle to it.
This function always causes a flush of the window server buffer.
Parameter | Description |
---|---|
aRegionTrackingOnly | ETrue if the DSA is intended to be used for region tracking purposes only, EFalse if the DSA will be used to perform actual drawing. |
Returns: KErrNone if successful, otherwise one of the system wide error codes.
IMPORT_C TInt | Request | ( | RRegion *& | aRegion, |
TRequestStatus & | aStatus, | |||
const RWindowBase & | aWindow | |||
) |
Issues a request to the window server for permission to perform direct screen access on a window.
Direct access to the screen may be refused due to lack of memory or if the target window is completely obscured.
If direct access is allowed, the function passes back a clipping region which is the part of the screen the caller can draw to.
When direct screen access must stop, for instance because a dialog is to be displayed in front of the region where direct screen access is taking place, the window server completes the request. The recommended way to check for this is for aStatus to be the request status of an active object that will be run when the request completes, i.e. if Request() returns KErrNone, call SetActive(), and in the object's RunL(), you should immediately abort direct screen access.
While the DSA is in operation, it is strongly advised that the client should not make any call to WSERV that will affect the visible area of the window in which the DSA is taking place.
When WSERV tells the client that it needs to abort its DSA, it waits to receive the acknowledgment from the client that it has done so. However, it doesn't wait for ever, since the client may have entered some long running calculation or even an infinite loop. So WSERV also waits on a timer: if the timer expires before the client acknowledges, then WSERV continues; if, later on, WSERV gets notification from the client that it has aborted the DSA, then WSERV will invalidate the region in which the DSA was taking place, just in case there had been a conflict between the DSA and another client.
This function always causes a flush of the window server buffer.
Parameter | Description |
---|---|
aRegion | On return, the clipping region that the caller can draw to. NULL if the function was not successful. If the target window is invisible or completely covered by other windows then the region will be empty. |
aStatus | A request status that is set to a completion code by the window server when direct screen access must stop. |
aWindow | The window that you want to perform the direct screen access on. |
Returns: KErrNone if the request was successful, KErrNone with empty region if none of the window is currently visible, otherwise one of the system wide error codes, e.g. KErrNoMemory if out of memory.