sl@0: // Copyright (c) 1995-2010 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: // IPC implementation of client side code sl@0: // sl@0: // sl@0: sl@0: #include "../SERVER/w32cmd.h" sl@0: #include "w32comm.h" sl@0: #include sl@0: #include sl@0: #include "CLIENT.H" sl@0: #include "wstraces.h" sl@0: #include "graphics/windowserverconstants.h" sl@0: #include sl@0: sl@0: const TInt KMaxWSERVMessagesSlot=-1; sl@0: sl@0: sl@0: GLREF_C void Assert(TW32Assert aPanic); sl@0: /** Panics the client. This will result in the client thread being destroyed. */ sl@0: GLREF_C void Panic(TW32Panic aPanic); sl@0: sl@0: sl@0: class RWsCustomTextCursor : public RWsSpriteBase sl@0: { sl@0: public: sl@0: RWsCustomTextCursor(RWsSession aWs, TInt aHandle) : RWsSpriteBase(aWs) sl@0: { iWsHandle = aHandle; } sl@0: }; sl@0: sl@0: sl@0: EXPORT_C RWsSession::RWsSession() sl@0: /** Default C++ constructor. sl@0: sl@0: Constructs an uninitialised window server session. Note that it does not establish sl@0: a connection to the window server - this must be done explicitly by calling sl@0: the session's Connect() function. Before Connect() is called, no corresponding sl@0: session object exists in the server, and the RWsSession contains no meaningful sl@0: handle. */ sl@0: {} sl@0: sl@0: void RWsSession::connectL() sl@0: { sl@0: iBuffer=new(ELeave) RWsBuffer(this); sl@0: iBuffer->SetBufferSizeL(RWsBuffer::EDefBufferSize); sl@0: User::LeaveIfError(CreateSession(KWSERVServerName,Version(),KMaxWSERVMessagesSlot)); sl@0: iWsHandle=User::LeaveIfError(SendReceive(EWservMessInit,TIpcArgs())); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::Connect() sl@0: /** Connects the client session to the window server. sl@0: sl@0: Connect() should be the first function called on an RWsSession object after sl@0: it is created. The function establishes a connection to the window server, sl@0: creating a corresponding session object in the server. Each session has one sl@0: and only one connection to the server. Attempting to call Connect() when sl@0: a connection has already been made will cause a panic. sl@0: sl@0: After a connection has been successfully established, all events are delivered sl@0: to the client application through the RWsSession object. sl@0: sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. */ sl@0: { sl@0: TInt ret; sl@0: sl@0: if (iBuffer!=NULL) sl@0: Panic(EW32PanicReConnect); sl@0: if ((ret=RFbsSession::Connect())==KErrNone) sl@0: { sl@0: TRAP(ret,connectL()); sl@0: if (ret!=KErrNone) sl@0: { sl@0: if (!iBuffer) sl@0: RFbsSession::Disconnect(); sl@0: Close(); sl@0: } sl@0: else sl@0: iBuffer->SetCallBack(); sl@0: } sl@0: return(ret); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::Connect(RFs& aFileServer) sl@0: /** Connects the client session to the window server using pre constructed file server sl@0: session. sl@0: sl@0: Connect() should be the first function called on an RWsSession object after sl@0: it is created. The function establishes a connection to the window server, sl@0: creating a corresponding session object in the server. Each session has one sl@0: and only one connection to the server. Attempting to call Connect() when sl@0: a connection has already been made will cause a panic. sl@0: sl@0: After a connection has been successfully established, all events are delivered sl@0: to the client application through the RWsSession object. sl@0: sl@0: @param aFileServer A fully constructed file server session sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. */ sl@0: { sl@0: TInt ret; sl@0: sl@0: if (iBuffer!=NULL) sl@0: Panic(EW32PanicReConnect); sl@0: if ((ret=RFbsSession::Connect(aFileServer))==KErrNone) sl@0: { sl@0: TRAP(ret,connectL()); sl@0: if (ret!=KErrNone) sl@0: { sl@0: if (!iBuffer) sl@0: RFbsSession::Disconnect(); sl@0: Close(); sl@0: } sl@0: else sl@0: iBuffer->SetCallBack(); sl@0: } sl@0: return(ret); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::Close() sl@0: /** Closes the window server session. sl@0: sl@0: This function cleans up all resources in the RWsSession and disconnects it sl@0: from the server. Prior to disconnecting from the window server, the client-side sl@0: window server buffer is destroyed without being flushed. This function should sl@0: be called when the RWsSession is no longer needed - normally just before sl@0: it is destroyed. */ sl@0: { sl@0: if (iBuffer) sl@0: { sl@0: __ASSERT_ALWAYS(iBuffer->iDirectAcessCount==0,Panic(EW32PanicDirectMisuse)); sl@0: iBuffer->CancelCallBack(); sl@0: iBuffer->Destroy(); sl@0: iBuffer=NULL; sl@0: RFbsSession::Disconnect(); sl@0: } sl@0: RSessionBase::Close(); sl@0: } sl@0: sl@0: // Private function(s) sl@0: sl@0: TInt RWsSession::DoSyncMsgBuf(const TIpcArgs& aIpcArgs) sl@0: { sl@0: return (SendReceive(EWservMessSyncMsgBuf,aIpcArgs)); sl@0: } sl@0: sl@0: TInt RWsSession::DoFlush(const TIpcArgs& aIpcArgs) sl@0: { sl@0: return (SendReceive(EWservMessCommandBuffer,aIpcArgs)); sl@0: } sl@0: sl@0: EXPORT_C TVersion RWsSession::Version() const sl@0: /** Gets the window server version. sl@0: sl@0: @return Window server version containing major and minor version numbers, sl@0: and build number. */ sl@0: { sl@0: sl@0: TVersion v(KWservMajorVersionNumber,KWservMinorVersionNumber,KWservBuildVersionNumber); sl@0: return(v); sl@0: } sl@0: sl@0: TInt RWsSession::doSetHotKey(TInt aOpcode, TInt aType, TUint aKeycode, TUint aModifierMask, TUint aModifiers) sl@0: { sl@0: TWsClCmdSetHotKey setHotKey; sl@0: sl@0: setHotKey.type=aType; sl@0: setHotKey.keycode=(TUint16)aKeycode; sl@0: setHotKey.modifiers=aModifiers; sl@0: setHotKey.modifierMask=aModifierMask; sl@0: return(WriteReply(&setHotKey,sizeof(setHotKey),aOpcode)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SetHotKey(THotKey aType, TUint aKeycode, TUint aModifierMask, TUint aModifiers) sl@0: /** Sets the hot keys. sl@0: sl@0: Hot keys allow standard functions to be performed by application-defined key sl@0: combinations. sl@0: sl@0: This function maps any key press (with optional modifiers) to one of the hot sl@0: keys defined in THotKey. More than one key combination may be mapped to each sl@0: hot key: a new mapping is added each time the function is called. sl@0: sl@0: Modifier key states are defined in TEventModifier. The modifiers that you sl@0: want to be in a particular state should be specified in aModifierMask and sl@0: the ones of these you want to be set should be specified in aModifiers. For sl@0: example, if you want to capture FN-A and you want the SHIFT modifier unset, sl@0: but you don't care about the state of the other modifiers then set both the sl@0: flags for SHIFT and FN in aModiferMask and only set FN in aModifiers. sl@0: sl@0: Note: default hotkey settings exist, but this function can be used for customisation. sl@0: Typically it might be be used by a shell application or other application sl@0: that controls system-wide settings. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aType The hot key to be mapped sl@0: @param aKeyCode The keycode to be mapped to the hot key sl@0: @param aModifierMask Modifier keys to test for a match sl@0: @param aModifiers Modifier keys to be tested for "on" state sl@0: @return KErrNone value if successful, otherwise another of the system-wide sl@0: error codes. sl@0: @capability SwEvent */ sl@0: { sl@0: return(doSetHotKey(EWsClOpSetHotKey, aType, aKeycode, aModifierMask, aModifiers)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::ClearHotKeys(THotKey aType) sl@0: /** Clears all mappings for the specified hotkey, including the default mapping. sl@0: sl@0: Hotkeys allow standard functions to be performed by application-defined key sl@0: combinations. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aType The hot key to be cleared sl@0: @return KErrNone if successful, otherwise one of the system-wide error codes. sl@0: @see SetHotKey() sl@0: @see RestoreDefaultHotKey() sl@0: @capability SwEvent */ sl@0: { sl@0: return(WriteReplyInt(aType,EWsClOpClearHotKeys)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::RestoreDefaultHotKey(THotKey aType) sl@0: /** Restores the default mapping for a hot key. sl@0: sl@0: The function clears current mappings for a hot key and restores the default sl@0: mapping. See THotKey for the default. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aType The hot key to restore to its default value sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. sl@0: @see ClearHotKeys() */ sl@0: { sl@0: return(WriteReplyInt(aType,EWsClOpRestoreDefaultHotKey)); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::ComputeMode(TComputeMode aMode) sl@0: /** Sets the mode used to control process priorities. sl@0: sl@0: The default window server behaviour is that the application that owns the sl@0: window with keyboard focus gets foreground process priority (EPriorityForeground) sl@0: while all other clients get background priority (EPriorityBackground). This sl@0: function can be used to over-ride this default behaviour, as discussed in sl@0: TComputeMode. sl@0: sl@0: Note: sl@0: sl@0: Unlike real Symbian phones, the Emulator runs on a single process. As a result, sl@0: on the Emulator this function sets the priority of individual threads rather sl@0: than of processes. The values used for thread priorities are EPriorityLess sl@0: instead of EPriorityBackground, and EPriorityNormal instead of EPriorityForeground. sl@0: sl@0: @param aMode The compute mode. */ sl@0: { sl@0: WriteInt(aMode,EWsClOpComputeMode); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::SetShadowVector(const TPoint &aVector) sl@0: /** Sets the shadow vector. sl@0: sl@0: @param aVector New shadow vector */ sl@0: { sl@0: WritePoint(aVector,EWsClOpSetShadowVector); sl@0: } sl@0: sl@0: EXPORT_C TPoint RWsSession::ShadowVector() const sl@0: /** Gets the current value of the shadow vector. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @return Current shadow vector */ sl@0: { sl@0: TPckgBuf pointPkg; sl@0: WriteReplyP(&pointPkg,EWsClOpShadowVector); sl@0: return(pointPkg()); sl@0: } sl@0: sl@0: void RWsSession::doReadEvent(TRequestStatus *aStat, TInt aOpcode) sl@0: { sl@0: *aStat=KRequestPending; sl@0: if (iBuffer) sl@0: { sl@0: iBuffer->Flush(); //ignore error since this flushing should not return any error sl@0: } sl@0: __ASSERT_DEBUG(EWservMessAsynchronousService>=aOpcode, Assert(EW32AssertIllegalOpcode)); sl@0: const TInt function=EWservMessAsynchronousService|aOpcode; sl@0: SendReceive(function,TIpcArgs(),*aStat); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::EventReady(TRequestStatus* aStat) sl@0: /** Requests standard events from the window server. sl@0: sl@0: Standard events include all events except redraws and priority key events. sl@0: sl@0: The client application will typically handle the completed request using the sl@0: RunL() function of an active object, and in this case the request status aStat sl@0: should be the iStatus member of that CActive object. sl@0: sl@0: Notes: sl@0: sl@0: - The active object runs when an event is waiting. You should call GetEvent() sl@0: in the RunL() function to get the event. sl@0: sl@0: - You should not call this function again until you have either called GetEvent() sl@0: or EventReadyCancel(). sl@0: sl@0: - Because this function is asynchronous, there is no guarantee that the Window sl@0: Server will process the request before the function returns. However, on single sl@0: core systems it is unusual for this function to return before the Window Server sl@0: has processed the request, because the client generally runs in a lower priority sl@0: thread than the Window Server. You should therefore expect the use of this sl@0: function to give rise to different behaviour between single and multicore systems. sl@0: sl@0: @param aStat Request status. On successful completion contains KErrNone, otherwise sl@0: another of the system-wide error codes. sl@0: @see CActive sl@0: @see GetEvent() */ sl@0: { sl@0: WS_TRACE_CLIENT_EVENTREADY(); sl@0: doReadEvent(aStat,EWsClOpEventReady); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::RedrawReady(TRequestStatus* aStat) sl@0: /** Requests redraw events from the window server. sl@0: sl@0: Typically, a client will create an active object for redraw events with a sl@0: lower priority than the active objects for standard events. The client will sl@0: then typically handle completed redraw requests in the active object's RunL() sl@0: function. sl@0: sl@0: As in EventReady(), the request status aStat should be used as the iStatus sl@0: member of an active object. When a redraw event occurs the active object's sl@0: RunL() function is called. The redraw event can be obtained by calling sl@0: GetRedraw() in the RunL(). sl@0: sl@0: Notes: sl@0: sl@0: - You should not call this function again until you have either called sl@0: GetRedraw() or RedrawReadyCancel(). sl@0: sl@0: - Because this function is asynchronous, there is no guarantee that the Window sl@0: Server will process the request before the function returns. However, on single sl@0: core systems it is unusual for this function to return before the Window Server sl@0: has processed the request, because the client generally runs in a lower priority sl@0: thread than the Window Server. You should therefore expect the use of this sl@0: function to give rise to different behaviour between single and multicore systems. sl@0: sl@0: @param aStat The request status. On successful completion contains KErrNone, sl@0: otherwise another of the system-wide error codes. sl@0: @see RedrawReadyCancel() sl@0: @see GetRedraw() sl@0: @see CActive */ sl@0: { sl@0: WS_TRACE_CLIENT_REDRAWREADY(); sl@0: doReadEvent(aStat,EWsClOpRedrawReady); sl@0: } sl@0: sl@0: void RWsSession::GraphicMessageReady(TRequestStatus *aStat) sl@0: { sl@0: doReadEvent(aStat,EWsClOpGraphicMessageReady); sl@0: } sl@0: sl@0: void RWsSession::GetGraphicMessage(TDes8& aData) const sl@0: { sl@0: WriteReplyP(TWriteDescriptorType(&aData),EWsClOpGetGraphicMessage); sl@0: } sl@0: sl@0: void RWsSession::GraphicMessageCancel() sl@0: { sl@0: WriteReply(EWsClOpGraphicMessageCancel); sl@0: } sl@0: sl@0: void RWsSession::GraphicAbortMessage(TInt aError) sl@0: { sl@0: WriteReplyInt(aError, EWsClOpGraphicAbortMessage); sl@0: } sl@0: sl@0: TInt RWsSession::GraphicFetchHeaderMessage() sl@0: { sl@0: return WriteReply(EWsClOpGraphicFetchHeaderMessage); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::PriorityKeyReady(TRequestStatus *aStat) sl@0: /** Requests priority key events from the window server. sl@0: sl@0: Typically, an client will create an active object for priority key events sl@0: with a higher priority than the active objects for standard events. The client sl@0: will then normally handle completed priority key requests in the active object's sl@0: RunL() function. sl@0: sl@0: As in EventReady(), the request status argument should be the set to the iStatus sl@0: member of CActive. When priority key events occur, they are obtained using sl@0: GetPriorityKey(). sl@0: sl@0: Notes: sl@0: sl@0: - You should not call this function again until you have either called sl@0: GetPriorityKey() or PriorityKeyReadyCancel(). sl@0: sl@0: - Because this function is asynchronous, there is no guarantee that the Window sl@0: Server will process the request before the function returns. However, on single sl@0: core systems it is unusual for this function to return before the Window Server sl@0: has processed the request, because the client generally runs in a lower priority sl@0: thread than the Window Server. You should therefore expect the use of this sl@0: function to give rise to different behaviour between single and multicore systems. sl@0: sl@0: @param aStat Request status. On successful completion contains KErrNone, otherwise sl@0: another of the system-wide error codes. sl@0: @see PriorityKeyReadyCancel() sl@0: @see GetPriorityKey() sl@0: @see CActive */ sl@0: { sl@0: doReadEvent(aStat,EWsClOpPriorityKeyReady); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::GetEvent(TWsEvent &aEvent) const sl@0: /** Gets a standard event from the session for processing. sl@0: sl@0: The type of event returned by GetEvent() may be any of those listed in TEventCode. sl@0: To access the data within an event, the event should be converted to the appropriate sl@0: type, using functions provided by the TWsEvent class. TWsEvent also provides sl@0: a function to find out the type of the event. sl@0: sl@0: Notes: sl@0: sl@0: It is possible that the returned event is of type EEventNull. Clients should sl@0: normally ignore these events. sl@0: sl@0: This function should only be called in response to notification that an event sl@0: has occurred, otherwise the client will be panicked. sl@0: sl@0: This function would normally be called in the RunL() function of an active sl@0: object which completes with the EventReady() function's request status. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aEvent On return, contains the event that occurred sl@0: @see TEventCode sl@0: @see EventReady() */ sl@0: { sl@0: WS_TRACE_CLIENT_GETEVENT(); sl@0: TPckgBuf event; sl@0: WriteReplyP(&event,EWsClOpGetEvent); sl@0: aEvent=event(); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::PurgePointerEvents() sl@0: /** Removes all pointer events waiting to be delivered to this session. sl@0: sl@0: The events are removed from the event queue without being processed. This sl@0: might occur, for example, at application startup. */ sl@0: { sl@0: Write(EWsClOpPurgePointerEvents); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::GetRedraw(TWsRedrawEvent &aEvent) sl@0: /** Gets the redraw event from the session. sl@0: sl@0: This function is similar to GetEvent(), except that the event is returned sl@0: as a TWsRedrawEvent, and hence there is no need to convert it from a TWsEvent. sl@0: sl@0: The function should only be called after notification that a redraw is waiting. sl@0: sl@0: It always causes a flush of the window server buffer. sl@0: sl@0: @param aEvent On return, contains the redraw event that occurred sl@0: @see RedrawReady() sl@0: @see GetEvent() sl@0: @see CActive */ sl@0: { sl@0: WS_TRACE_CLIENT_GETREDRAW(); sl@0: TPckgBuf redraw; sl@0: WriteReplyP(&redraw,EWsClOpGetRedraw); sl@0: aEvent=redraw(); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::GetPriorityKey(TWsPriorityKeyEvent &aEvent) const sl@0: /** Gets the completed priority key event from the window server session. sl@0: sl@0: Priority key events are typically used for providing "Abort" or "Escape" keys sl@0: for an application. sl@0: sl@0: This function is similar to GetEvent(), except that it returns a TWsPriorityKeyEvent sl@0: instead of a TWsEvent. sl@0: sl@0: Note: this should only be called after notification that a priority key event has sl@0: occurred. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aEvent On return, contains the priority key event that occurred. sl@0: @see PriorityKeyReady() sl@0: @see PriorityKeyReadyCancel() */ sl@0: { sl@0: TPckgBuf abortEvent; sl@0: WriteReplyP(&abortEvent,EWsClOpGetPriorityKey); sl@0: aEvent=abortEvent(); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::EventReadyCancel() sl@0: /** Cancels a request for standard events from the window server. sl@0: sl@0: This request was made using EventReady(). sl@0: sl@0: The client application will typically use an active object to handle standard sl@0: events, and this function should be called from the active object's DoCancel() sl@0: function. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @see EventReady() */ sl@0: { sl@0: if (iWsHandle) sl@0: WriteReply(EWsClOpEventReadyCancel); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::RedrawReadyCancel() sl@0: /** Cancels a redraw event request. sl@0: sl@0: If active objects are used, this function should be called from the active sl@0: object's DoCancel() function. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @see RedrawReady() */ sl@0: { sl@0: if (iWsHandle) sl@0: WriteReply(EWsClOpRedrawReadyCancel); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::PriorityKeyReadyCancel() sl@0: /** Cancels a priority key event request. sl@0: sl@0: If active objects are used, this function should be called from the active sl@0: object's DoCancel() function. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @see PriorityKeyReady() sl@0: @see CActive */ sl@0: { sl@0: if (iWsHandle) sl@0: WriteReply(EWsClOpPriorityKeyReadyCancel); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::Flush() sl@0: /** Sends all pending commands in the buffer to the window server. sl@0: sl@0: Delivering a command to the window server requires a context switch, and so sl@0: it is more efficient to deliver several commands in one go. Hence all client sl@0: commands are normally first placed into a buffer for delivery to the window sl@0: server. sl@0: sl@0: The buffer is delivered when it gets full, or when a command that returns a value sl@0: is called (there are a few exceptions to this), or when this function is called. sl@0: sl@0: Note: this function is called when a prompt response is required from the window sl@0: server, e.g. after doing some drawing. sl@0: sl@0: @see RWsSession::SetAutoFlush() sl@0: @see RWsSession::SetBufferSizeL() sl@0: @see RWsSession::SetMaxBufferSizeL() sl@0: */ sl@0: { sl@0: if (iBuffer) sl@0: iBuffer->Flush(NULL,ETrue); sl@0: } sl@0: sl@0: EXPORT_C TBool RWsSession::SetAutoFlush(TBool aState) sl@0: /** Sets a session's auto-flush state. sl@0: sl@0: If auto-flush is set to ETrue, the window server buffer is flushed immediately sl@0: anything is put into it, instead of waiting until it becomes full. This setting sl@0: is normally used only in a debugging environment. sl@0: sl@0: If the auto-flush state is EFalse, the window server buffer is flushed normally. sl@0: sl@0: @param aState ETrue to set auto-flushing on, EFalse to disable auto-flushing. sl@0: @return Previous auto-flush state sl@0: sl@0: @see RWsSession::Flush() sl@0: @see RWsSession::SetBufferSizeL() sl@0: @see RWsSession::SetMaxBufferSizeL() sl@0: */ sl@0: { sl@0: return(iBuffer->SetAutoFlush(aState)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::NumWindowGroups() const sl@0: /** Gets the total number of window groups currently running in the window server. sl@0: sl@0: This includes all the groups running in all sessions. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @return Total number of window groups running in the server */ sl@0: { sl@0: return(WriteReply(EWsClOpNumWindowGroupsAllPriorities)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::NumWindowGroups(TInt aPriority) const sl@0: /** Gets the number of window groups of a given window group priority running in sl@0: all sessions in the window server. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aPriority Window group priority sl@0: @return Number of window groups of priority aPriority */ sl@0: { sl@0: return(WriteReplyInt(aPriority,EWsClOpNumWindowGroups)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::NumWindowGroups(TInt aScreenNumber,TInt aPriority) const sl@0: /** Gets the number of window groups of a given window group priority running on a specified screen sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aScreenNumber specifies the screen. sl@0: @param aPriority Window group priority. EAllPriorities is the enum for all priorities sl@0: @return Number of window groups of priority aPriority on the specified screen */ sl@0: { sl@0: TWsClCmdNumWindowGroups params; sl@0: params.screenNumber = aScreenNumber; sl@0: params.priority = aPriority; sl@0: return(WriteReply(¶ms,sizeof(params),EWsClOpNumWindowGroupsOnScreen)); sl@0: } sl@0: sl@0: TInt RWsSession::doWindowGroupList(TInt aScreenNumber, TInt aPriority,CArrayFixFlat* aWindowList,TInt aNumOpcode,TInt aListOpcode) const sl@0: /** Gets the id of window groups of specified priority running on a specified screen. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aScreenNumber specifies the screen. sl@0: @param aPriority Window group priority sl@0: @param aWindowList List of identifiers sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes.*/ sl@0: { sl@0: TWsClCmdWindowGroupList params; sl@0: params.priority = aPriority; sl@0: params.screenNumber = aScreenNumber; sl@0: if(aScreenNumber!=KDummyScreenNumber) sl@0: { sl@0: TWsClCmdNumWindowGroups numWinGrp; sl@0: numWinGrp.screenNumber = aScreenNumber; sl@0: numWinGrp.priority = aPriority; sl@0: params.count=WriteReply(&numWinGrp,sizeof(numWinGrp),aNumOpcode); sl@0: } sl@0: else sl@0: { sl@0: params.count=WriteReplyInt(aPriority,aNumOpcode); sl@0: } sl@0: sl@0: TRAPD(err,aWindowList->ResizeL(params.count)); sl@0: if (err!=KErrNone || params.count==0) sl@0: return(err); sl@0: TPtr8 listPtr(reinterpret_cast(&(*aWindowList)[0]),params.count*sizeof((*aWindowList)[0])); sl@0: TInt actualCount=WriteReplyP(¶ms, sizeof(params), &listPtr, aListOpcode); sl@0: err=KErrNone; sl@0: if (actualCount<0) sl@0: { sl@0: err=actualCount; sl@0: actualCount=0; sl@0: } sl@0: if (actualCountResizeL(actualCount); // Can't fail, only shrinking it sl@0: return(err); sl@0: } sl@0: sl@0: TInt RWsSession::doWindowGroupList(TInt aPriority, RArray* aWindowListCh, TInt aNumOpcode, TInt aListOpcode) const sl@0: /** Gets the id of window groups and id of its parent window group of specified priority running in sl@0: all sessions in the window server. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aPriority Window group priority sl@0: @param aWindowList List of identifiers sl@0: @return KErrNone if successful else KErrNoMemory if there is insufficient memory to create the array. sl@0: This function will panic if aWindowListCh is Null.*/ sl@0: { sl@0: __ASSERT_ALWAYS(aWindowListCh,Panic(EW32PanicNullArray)); sl@0: TWsClCmdWindowGroupList params; sl@0: params.priority=aPriority; sl@0: params.count=WriteReplyInt(aPriority,aNumOpcode); sl@0: aWindowListCh->Reset(); sl@0: TUint8* WindowList=static_cast(User::Alloc(params.count*sizeof(TWindowGroupChainInfo))); sl@0: if(WindowList==NULL) sl@0: { sl@0: return KErrNoMemory; sl@0: } sl@0: TPtr8 listPtr(WindowList,params.count*sizeof(TWindowGroupChainInfo)); sl@0: WriteReplyP(¶ms, sizeof(params), &listPtr, aListOpcode); sl@0: new(aWindowListCh) RArray(sizeof(TWindowGroupChainInfo),(TWindowGroupChainInfo*)WindowList,params.count); sl@0: return KErrNone; sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::WindowGroupList(CArrayFixFlat* aWindowList) const sl@0: /** Gets a list of identifiers of all window groups in all window server sessions. sl@0: sl@0: An array buffer must be created to store the resultant list. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aWindowList List of identifiers of all window groups in the server. sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. */ sl@0: { sl@0: return(doWindowGroupList(KDummyScreenNumber,0,aWindowList,EWsClOpNumWindowGroupsAllPriorities,EWsClOpWindowGroupListAllPriorities)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::WindowGroupList(CArrayFixFlat* aWindowList,TInt aScreenNumber,TInt aPriority) const sl@0: /** Lists the number of window groups of a given window group priority running on a specified screen. sl@0: sl@0: This function is the same as WindowGroupList() described above, but allows sl@0: the application to restrict the list of window groups to those of a particular sl@0: window group priority. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aScreenNumber specifies the screen sl@0: @param aPriority Window group priority . Enum for all priorities is EAllPriorities sl@0: @param aWindowList List of identifiers of all window groups on the specified screen with the given priority sl@0: aPriority. sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. */ sl@0: { sl@0: return(doWindowGroupList(aScreenNumber,aPriority,aWindowList,EWsClOpNumWindowGroupsOnScreen,EWsClOpWindowGroupList)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::WindowGroupList(RArray* aWindowList) const sl@0: /** Gets a list of identifier of window group and parent identifier of window group of sl@0: all window groups in all window server sessions. sl@0: sl@0: An array buffer must be created to store the resultant list. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aWindowList List of identifiers of all window groups in the server. sl@0: @return KErrNone if successful otherwise KErrNoMemory if there is insufficient memory to create the array, sl@0: Panics if aWindowList is NULL. */ sl@0: { sl@0: return(doWindowGroupList(0,aWindowList,EWsClOpNumWindowGroupsAllPriorities,EWsClOpWindowGroupListAndChainAllPriorities)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::WindowGroupList(TInt aPriority,CArrayFixFlat* aWindowList) const sl@0: /** Lists the number of window groups of a given window group priority running sl@0: in all window server sessions. sl@0: sl@0: This function is the same as WindowGroupList() described above, but allows sl@0: the application to restrict the list of window groups to those of a particular sl@0: window group priority. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aPriority Window group priority sl@0: @param aWindowList List of identifiers of all window groups in the server of priority sl@0: aPriority. sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. */ sl@0: { sl@0: return(doWindowGroupList(KDummyScreenNumber,aPriority,aWindowList,EWsClOpNumWindowGroups,EWsClOpWindowGroupList)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::WindowGroupList(TInt aPriority, RArray* aWindowList) const sl@0: /** Lists the number of window groups of a given window group priority running sl@0: in all window server sessions. sl@0: sl@0: This function is the same as WindowGroupList() described above, but allows sl@0: the application to restrict the list of window groups to those of a particular sl@0: window group priority. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aPriority Window group priority sl@0: @param aWindowList List of identifiers of all window groups in the server of priority sl@0: aPriority. sl@0: @return KErrNone if successful otherwise KErrNoMemory if there is insufficient memory to create the array, sl@0: Panics if aWindowList is NULL. */ sl@0: { sl@0: return(doWindowGroupList(aPriority,aWindowList,EWsClOpNumWindowGroups,EWsClOpWindowGroupListAndChain)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::GetDefaultOwningWindow() const sl@0: /** Gets the identifier of the current default owning window group. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @return Identifier of current default owning window group. Returns 0 if there sl@0: isn't one. */ sl@0: { sl@0: return GetDefaultOwningWindow(KDummyScreenNumber); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::GetDefaultOwningWindow(TInt aScreenNumber) const sl@0: /** Gets the identifier of the current default owning window group on a specified screen. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aScreenNumber specifies the screen. sl@0: @return Identifier of current default owning window group on the specified screen. Returns 0 if there sl@0: isn't one. */ sl@0: { sl@0: return(WriteReplyInt(aScreenNumber,EWsClOpGetDefaultOwningWindow)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::GetFocusWindowGroup() const sl@0: /** Gets the identifier of the window group that currently has the keyboard focus. sl@0: sl@0: Note: this might not necessarily be the front-most window group, as window groups sl@0: can disable keyboard focus. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @return Identifier of window group with keyboard focus. */ sl@0: { sl@0: return GetFocusWindowGroup(KDummyScreenNumber); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::GetFocusWindowGroup(TInt aScreenNumber) const sl@0: /** Gets the identifier of the window group on a specified screen that currently has the keyboard focus. sl@0: sl@0: Note: this might not necessarily be the front-most window group, as window groups sl@0: can disable keyboard focus. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aScreenNumber specifies the screen. sl@0: @return Identifier of window group with keyboard focus. */ sl@0: { sl@0: return WriteReplyInt(aScreenNumber,EWsClOpGetFocusWindowGroup); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SetWindowGroupOrdinalPosition(TInt aIdentifier, TInt aPosition) sl@0: /** Sets the ordinal position of a window group. sl@0: sl@0: This function allows the caller to change the ordinal position of an existing sl@0: window group. It would typically be used by a shell application. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aIdentifier The window group. sl@0: @param aPosition Ordinal position for the window group. sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. */ sl@0: { sl@0: TWsClCmdSetWindowGroupOrdinalPosition params(aIdentifier,aPosition); sl@0: return(WriteReply(¶ms, sizeof(params),EWsClOpSetWindowGroupOrdinalPosition)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::GetWindowGroupClientThreadId(TInt aIdentifier, TThreadId &aThreadId) const sl@0: /** Gets the thread ID of the client that owns the window group specified by the sl@0: window group identifier. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aIdentifier The window group identifier. sl@0: @param aThreadId On return, contains the thread ID. sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. */ sl@0: { sl@0: TPtr8 ptr(reinterpret_cast(&aThreadId),sizeof(aThreadId)); sl@0: return(WriteReplyIntP(aIdentifier,&ptr,EWsClOpGetWindowGroupClientThreadId)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::GetWindowGroupHandle(TInt aIdentifier) const sl@0: /** Gets the handle of the window specified by the window group identifier. sl@0: sl@0: This is the handle that was passed as an argument to RWindowGroup::Construct(). sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aIdentifier The window group identifier. sl@0: @return Handle of the window group */ sl@0: { sl@0: return(WriteReplyInt(aIdentifier,EWsClOpGetWindowGroupHandle)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::GetWindowGroupOrdinalPriority(TInt aIdentifier) const sl@0: /** Gets a window group's priority. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aIdentifier The window group identifier. sl@0: @return The window group priority. */ sl@0: { sl@0: return(WriteReplyInt(aIdentifier,EWsClOpGetWindowGroupOrdinalPriority)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SendEventToWindowGroup(TInt aIdentifier, const TWsEvent &aEvent) sl@0: /** Sends an event to a window group. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aIdentifier Window group identifier. sl@0: @param aEvent Event to send to the window group. sl@0: @return KErrNone if successful, KErrPermissionDenied if the client does not have sl@0: the required capability, KErrNoMemory if there is not enough room to add the sl@0: event to the event queue and otherwise another of the system-wide error codes. sl@0: @capability SwEvent Required when aEvent.Type() < EEventUser unless the event sl@0: is for a window group owned by this session sl@0: sl@0: @deprecated */ sl@0: { sl@0: TWsClCmdSendEventToWindowGroup params(aIdentifier,aEvent); sl@0: return(WriteReply(¶ms, sizeof(params),EWsClOpSendEventToWindowGroup)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SendEventToAllWindowGroups(const TWsEvent &aEvent) sl@0: /** Sends the specified event to all existing window groups. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aEvent The event to be sent to all window groups. sl@0: @return KErrNone if successful, KErrPermissionDenied if the client does not have sl@0: the required capability, KErrNoMemory if there is not enough room to add the sl@0: event to all the required event queues (although it may have been added to some sl@0: of them) and otherwise another of the system-wide error codes. sl@0: @capability SwEvent Required when aEvent.Type() < EEventUser sl@0: sl@0: @deprecated */ sl@0: { sl@0: TWsClCmdSendEventToWindowGroup params(0,aEvent); sl@0: return(WriteReply(¶ms, sizeof(params),EWsClOpSendEventToAllWindowGroup)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SendEventToAllWindowGroups(TInt aPriority, const TWsEvent &aEvent) sl@0: /** Sends the specified event to all window groups with the specified priority. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aPriority The priority which window groups must have to be sent the sl@0: message. sl@0: @param aEvent The event to be sent to the specified window groups. sl@0: @return KErrNone if successful, KErrPermissionDenied if the client does not have sl@0: the required capability, KErrNoMemory if there is not enough room to add the sl@0: event to all the required event queues (although it may have been added to some sl@0: of them) and otherwise another of the system-wide error codes. sl@0: @capability SwEvent Required when aEvent.Type() < EEventUser sl@0: sl@0: @deprecated */ sl@0: { sl@0: TWsClCmdSendEventToWindowGroup params(aPriority,aEvent); sl@0: return(WriteReply(¶ms, sizeof(params),EWsClOpSendEventToAllWindowGroupPriority)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SendEventToOneWindowGroupsPerClient(const TWsEvent &aEvent) sl@0: /** This function always causes a flush of the window server buffer. sl@0: @capability SwEvent Required when aEvent.Type() < EEventUser sl@0: sl@0: @deprecated */ sl@0: { sl@0: TWsClCmdSendEventToWindowGroup params(0,aEvent); sl@0: return(WriteReply(¶ms, sizeof(params),EWsClOpSendEventToOneWindowGroupPerClient)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::GetWindowGroupNameFromIdentifier(TInt aIdentifier, TDes &aWindowName) const sl@0: /** Gets the name of a window group from its identifier. sl@0: sl@0: Using the list of identifiers returned by WindowGroupList(), it is possible sl@0: to get the names of all window groups in the system. Note that window names sl@0: are a zero length string by default. sl@0: sl@0: Note that the window group name must have been previously set using RWindowGroup::SetName() sl@0: to contain a meaningful value. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aIdentifier The identifier of the window group whose name is to be sl@0: inquired. sl@0: @param aWindowName On return, contains the window group name. sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. */ sl@0: { sl@0: TWsClCmdGetWindowGroupNameFromIdentifier params(aIdentifier,aWindowName.MaxLength()); sl@0: return(WriteReplyP(¶ms,sizeof(params),&aWindowName,EWsClOpGetWindowGroupNameFromIdentifier)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::FindWindowGroupIdentifier(TInt aPreviousIdentifier,const TDesC& aMatch,TInt aOffset) const sl@0: /** Gets all window groups whose names match a given string, which can contain sl@0: wildcards. sl@0: sl@0: An example use of this function might be to find all the currently sl@0: running instances of a particular application, assuming that the window group sl@0: name contains the application name. An optional argument, aOffset, specifies sl@0: the number of characters to be ignored at the beginning of the window group sl@0: name. As several window group names may match the given string, and the function sl@0: can return only one at a time, there is an argument, aPreviousIdentifier, sl@0: which gives the identifier for the previous match that was returned. In other sl@0: words, it means, "get me the next match after this one." The first time the sl@0: function is called, give 0 as the previous identifier. sl@0: sl@0: Matching is done using TDesC::MatchF(), which does a folded match. Wildcards sl@0: '*' and '?' can be used to denote one or more characters and exactly one character, sl@0: respectively. Windows are searched in front to back order. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aPreviousIdentifier Identifier of the last window group returned. If sl@0: the value passed is not a valid identifier, the function returns KErrNotFound. sl@0: @param aMatch String to match window group name against: may contain wildcards sl@0: @param aOffset The first aOffset characters of the window group name are ignored sl@0: when doing the match. sl@0: @return The next window group, after the one identified by aPreviousIdentifier, sl@0: whose name matches aMatch. KErrNotFound if no window group matched or aPreviousIdentifier sl@0: was not a valid identifier. */ sl@0: { sl@0: TWsClCmdFindWindowGroupIdentifier params(aPreviousIdentifier,aOffset, aMatch.Length()); sl@0: return(WriteReply(¶ms,sizeof(params),aMatch.Ptr(),aMatch.Size(),EWsClOpFindWindowGroupIdentifier)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::FindWindowGroupIdentifier(TInt aPreviousIdentifier,TThreadId aThreadId) const sl@0: /** Gets the identifiers of window groups belonging to a client which is owned sl@0: by a thread with the specified thread ID. sl@0: sl@0: The thread may own more than one window group, so the identifier returned sl@0: is the one after aPreviousIdentifier. The first time the function is called, sl@0: use 0 for the previous identifier. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aPreviousIdentifier Identifier returned by previous call sl@0: @param aThreadId Thread owning the window group or groups. sl@0: @return Next window group identifier after the one identified by aPreviousIdentifier */ sl@0: { sl@0: TWsClCmdFindWindowGroupIdentifierThread params(aPreviousIdentifier, aThreadId); sl@0: return(WriteReply(¶ms,sizeof(params),EWsClOpFindWindowGroupIdentifierThread)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SendMessageToWindowGroup(TInt aIdentifier, TUid aUid, const TDesC8 &aParams) sl@0: /** Sends a message to a window group. sl@0: sl@0: The window group will then receive an event of type EEventMessageReady notifying sl@0: it that a message has been received. The window group can belong to this or sl@0: another session. sl@0: sl@0: In order to receive messages sent using this function you will need to implement sl@0: the MCoeMessageObserver interface which is defined in the UI Control Framework API. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aIdentifier The identifier of the window group to receive the message. sl@0: @param aUid A UID which uniquely identifies the session sending the message. sl@0: @param aParams The message data. An unlimited amount of data can be passed sl@0: in this argument. sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. sl@0: @see MCoeMessageObserver sl@0: sl@0: @deprecated */ sl@0: { sl@0: TWsClCmdSendMessageToWindowGroup params(aIdentifier, aUid, aParams.Length(),&aParams); sl@0: return(WriteReplyByProvidingRemoteReadAccess(¶ms,sizeof(params),&aParams,EWsClOpSendMessageToWindowGroup)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SendMessageToAllWindowGroups(TUid aUid, const TDesC8& aParams) sl@0: /** Sends a message to all window groups. sl@0: sl@0: In order to receive messages sent using this function you will need to implement sl@0: the MCoeMessageObserver interface which is defined in the UI Control Framework sl@0: API. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aUid A UID which uniquely identifies the session sending the message. sl@0: @param aParams The message data. An unlimited amount of data can be passed sl@0: in this argument. sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. sl@0: sl@0: @deprecated */ sl@0: { sl@0: TWsClCmdSendMessageToWindowGroup params(0, aUid, aParams.Length(),&aParams); sl@0: return(WriteReplyByProvidingRemoteReadAccess(¶ms,sizeof(params),&aParams,EWsClOpSendMessageToAllWindowGroups)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SendMessageToAllWindowGroups(TInt aPriority, TUid aUid, const TDesC8& aParams) sl@0: /** Sends a message to all window groups with the specified priority. sl@0: sl@0: In order to receive messages sent using this function you will need to implement sl@0: the MCoeMessageObserver interface which is defined in the UI Control Framework sl@0: API. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aPriority The priority which window groups must have to be sent the sl@0: message. sl@0: @param aUid A UID which uniquely identifies the session sending the message. sl@0: @param aParams The message data. An unlimited amount of data can be passed sl@0: in this argument. sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. sl@0: sl@0: @deprecated */ sl@0: { sl@0: TWsClCmdSendMessageToWindowGroup params(aPriority, aUid, aParams.Length(),&aParams); sl@0: return(WriteReplyByProvidingRemoteReadAccess(¶ms,sizeof(params),&aParams,EWsClOpSendMessageToAllWindowGroupsPriority)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::FetchMessage(TUid& aUid, TPtr8& aParams, const TWsEvent& aMessageEvent) const sl@0: /** This function always causes a flush of the window server buffer. */ sl@0: { sl@0: const SEventMessageReady& eventMessageReady=*(SEventMessageReady*)aMessageEvent.EventData(); sl@0: TUint8* ptr=(TUint8*)User::Alloc(eventMessageReady.iMessageParametersSize); sl@0: if (ptr==NULL) sl@0: { sl@0: aParams.Set(NULL, 0, 0); sl@0: return KErrNoMemory; sl@0: } sl@0: aUid=eventMessageReady.iMessageUid; sl@0: aParams.Set(ptr, eventMessageReady.iMessageParametersSize, eventMessageReady.iMessageParametersSize); sl@0: TWsClCmdFetchMessage outGoingParams(eventMessageReady.iWindowGroupIdentifier); sl@0: const TInt error=WriteReplyP(&outGoingParams, sizeof(outGoingParams), &aParams, EWsClOpFetchMessage); // must be called even if eventMessageReady.iMessageParametersSize==0 sl@0: if (error!=KErrNone) sl@0: { sl@0: delete ptr; sl@0: aParams.Set(NULL, 0, 0); sl@0: } sl@0: return error; sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SetKeyboardRepeatRate(const TTimeIntervalMicroSeconds32 &aInitialTime, const TTimeIntervalMicroSeconds32 &aTime) sl@0: /** Sets the system-wide keyboard repeat rate. sl@0: sl@0: This is the rate at which keyboard events are generated when a key is held sl@0: down. sl@0: sl@0: The default settings for the keyboard repeat rate are 0.3 seconds for the sl@0: initial delay, and 0.1 seconds for the interval between subsequent repeats. sl@0: However, since the settings are system-wide, these will not necessarily be sl@0: the current settings when an application is launched: the settings may have sl@0: been over-ridden by another module. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aInitialTime Time before first repeat key event sl@0: @param aTime Time between subsequent repeat key events sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. sl@0: @see GetKeyboardRepeatRate() sl@0: @capability WriteDeviceData */ sl@0: { sl@0: TWsClCmdSetKeyboardRepeatRate repeat(aInitialTime,aTime); sl@0: return(WriteReply(&repeat,sizeof(repeat),EWsClOpSetKeyboardRepeatRate)); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::GetKeyboardRepeatRate(TTimeIntervalMicroSeconds32 &aInitialTime, TTimeIntervalMicroSeconds32 &aTime) const sl@0: /** Gets the current system-wide settings for the keyboard repeat rate. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aInitialTime Time before first repeat key event sl@0: @param aTime Time between subsequent repeat key events sl@0: @see SetKeyboardRepeatRate() */ sl@0: { sl@0: TPckgBuf settings; sl@0: WriteReplyP(&settings,EWsClOpGetKeyboardRepeatRate); sl@0: aInitialTime=settings().iInitialTime; sl@0: aTime=settings().iTime; sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SetDoubleClick(const TTimeIntervalMicroSeconds32 &aInterval, TInt aDistance) sl@0: /** Sets the system-wide double click settings. sl@0: sl@0: Double click distance is measured, in pixels, as the sum of the X distance sl@0: moved and the Y distance moved between clicks. For example: a first click sl@0: at 10, 20 and a second click at 13,19 gives a distance of (13-10)+(21-20) = 4. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aInterval Maximum interval between clicks that constitutes a double sl@0: click sl@0: @param aDistance Maximum distance between clicks that constitutes a double sl@0: click sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. sl@0: @see GetDoubleClickSettings() sl@0: @capability WriteDeviceData */ sl@0: { sl@0: TWsClCmdSetDoubleClick dblClick(aInterval,aDistance); sl@0: return(WriteReply(&dblClick,sizeof(dblClick),EWsClOpSetDoubleClick)); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::GetDoubleClickSettings(TTimeIntervalMicroSeconds32 &aInterval, TInt &aDistance) const sl@0: /** Gets the current system-wide settings for pointer double clicks. sl@0: sl@0: Double click distances are measured in pixels as the sum of the X distance sl@0: moved and the Y distance moved between clicks. For example: a first click sl@0: at 10, 20 and a second click at 13,19 gives a distance of (13-10)+(21-20) = 4. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aInterval Maximum interval between clicks that constitutes a double sl@0: click sl@0: @param aDistance Maximum distance between clicks that constitutes a double sl@0: click sl@0: @see SetDoubleClick() */ sl@0: { sl@0: TPckgBuf settings; sl@0: WriteReplyP(&settings,EWsClOpGetDoubleClickSettings); sl@0: aInterval=settings().iInterval; sl@0: aDistance=settings().iDistance; sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::SetBackgroundColor(TRgb aColor) sl@0: /** Sets the background colour for the window server. sl@0: sl@0: This background can only be seen in areas of the display that have no windows sl@0: on them: so for many applications it will never be seen. It affects no sl@0: other windows. sl@0: sl@0: @param aColor Background colour */ sl@0: { sl@0: WriteInt(aColor.Internal(),EWsClOpSetBackgroundColor); sl@0: } sl@0: sl@0: EXPORT_C TRgb RWsSession::GetBackgroundColor() const sl@0: /** Gets the window server's background colour. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @return Background colour */ sl@0: { sl@0: TRgb col; sl@0: col.SetInternal((TUint32)WriteReply(EWsClOpGetBackgroundColor)); sl@0: return col; sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::RegisterSurface(TInt aScreenNumber, const TSurfaceId& aSurface) sl@0: /** sl@0: This function registers a surface for use in composition on the screen associated sl@0: with this device within this session. sl@0: sl@0: A surface may be registered as a separate step before it is added as a background surface sl@0: for a window created in the same session and that is displayed on this screen. This then sl@0: allows content to be provisioned before the surface is displayed for the first time, and sl@0: to be kept "live" while not assigned to any window. sl@0: sl@0: A surface can be successfully registered in multiple sessions and on multiple screens, but sl@0: only once for a given combination of session and screen. sl@0: sl@0: The client should call UnregisterSurface when finished with the surface registered using sl@0: this method. The surface will be automatically unregistered if necessary when the session closes. sl@0: sl@0: @param aScreenNumber The screen to which to register. sl@0: @param aSurface The surface to be registered. sl@0: @return KErrNone on success or a system-wide error code sl@0: - KErrNoMemory if registration fails due to low memory. sl@0: - KErrInUse if the surface ID is already registered for this session and screen. sl@0: @pre aSurface has been initialized and is compatible with being composited on this device's sl@0: screen; otherwise the client thread is panicked with code EWservPanicIncompatibleSurface. sl@0: @pre aScreenNumber is an acceptable screen number. Otherwise the client thread is panicked sl@0: with code EWservPanicScreenNumber. sl@0: @post The surface has been successfully registered for use in composition on this device's screen. sl@0: @post The surface’s content is in an undefined state, but the surface remains initialized. sl@0: @post This function always causes a flush of the WServ session buffer. sl@0: @see UnregisterSurface sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: { sl@0: (void) aScreenNumber; //avoid unreferenced warning sl@0: (void) aSurface; //avoid unreferenced warning sl@0: return KErrNotSupported; sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::UnregisterSurface(TInt aScreenNumber, const TSurfaceId& aSurface) sl@0: /** sl@0: This function removes the surface from the session's register of surfaces that are used in sl@0: composition on the screen associated with this device. sl@0: sl@0: Calling this function with a surface that is not currently explicitly registered on this screen sl@0: in this session by RegisterSurface() will have no effect. sl@0: sl@0: Calling this function while the surface is still assigned to a window will have no immediate sl@0: effect. However, when the surface is unassigned from the window, and is not held by another sl@0: session it will then be automatically unregistered. sl@0: sl@0: An unregistered surface can be re-registered again, if necessary. sl@0: sl@0: This function does not explicitly force a flush of the WServ session buffer. Internal reference sl@0: counting will keep the Surface ID "live" until the client code has released any handles and sl@0: provisioners, and WServ processes the buffered remove command, and the final frame containing sl@0: this surface has finished being displayed. sl@0: sl@0: @param aScreenNumber The screen to which to unregister. sl@0: @param aSurface The surface to be unregistered. sl@0: @pre aSurface has been initialized; otherwise the client thread is panicked with sl@0: code EWservPanicIncompatibleSurface. sl@0: @pre aScreenNumber is an acceptable screen number. Otherwise the client thread is sl@0: panicked with code EWservPanicScreenNumber. sl@0: @post If no window is using the surface, then it is unregistered on this screen in this session. sl@0: @see RegisterSurface sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: { sl@0: (void) aScreenNumber; //avoid unreferenced warning sl@0: (void) aSurface; //avoid unreferenced warning sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::PreferredSurfaceConfigurationSize() const sl@0: /** sl@0: Returns the window server's preferred size for the TSurfaceConfiguration object, used sl@0: for RWindow::SetBackgroundSurface. sl@0: sl@0: Client code is permitted to present any defined version of the TSurfaceConfiguration sl@0: class, distinguished by its size. If smaller, earlier versions are presented, the server sl@0: will substitute the stated default values. If later, larger, structures are presented to sl@0: the server then the additional data will be ignored. sl@0: sl@0: However, by using this method, the client can fine-tune its use of the interface, avoiding sl@0: generating attribute data that may not be supported, or reduce the options presented to users. sl@0: sl@0: @return The preferred size in bytes sl@0: - Should match one of the TSurfaceConfiguration classes defined in the client's header sl@0: file, or be larger than them all, indicating a version newer that the client is compiled for. sl@0: - If the server does not support surface configuration sl@0: - Return KErrNotSupported. sl@0: sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: { sl@0: return KErrNotSupported; sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SetSystemPointerCursor(const RWsPointerCursor &aPointerCursor,TInt aCursorNumber) sl@0: /** Sets a cursor in the system pointer cursor list. sl@0: sl@0: To gain access to the list, the client must first call ClaimSystemPointerCursorList(). sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aPointerCursor Pointer cursor to set in the list sl@0: @param aCursorNumber Cursor number in the list sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. */ sl@0: { sl@0: TWsClCmdSetSystemPointerCursor setpc; sl@0: setpc.handle=aPointerCursor.WsHandle(); sl@0: setpc.number=aCursorNumber; sl@0: return(WriteReply(&setpc,sizeof(setpc),EWsClOpSetSystemPointerCursor)); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::ClearSystemPointerCursor(TInt aCursorNumber) sl@0: /** Clears a system pointer cursor from the list. sl@0: sl@0: Before calling this function, the client must first gain access to the list sl@0: by calling ClaimSystemPointerCursorList(). sl@0: sl@0: @param aCursorNumber Cursor number to clear */ sl@0: { sl@0: WriteInt(aCursorNumber,EWsClOpClearSystemPointerCursor); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::ClaimSystemPointerCursorList() sl@0: /** Claims the system pointer cursor list. sl@0: sl@0: You must call this function before you can call SetSystemPointerCursor() or sl@0: ClearSystemPointerCursor(). sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @return KErrNone if successful, KErrInUse if another client is already using sl@0: the system pointer cursor list, otherwise another of the system-wide error sl@0: codes. sl@0: @see FreeSystemPointerCursorList() sl@0: @capability WriteDeviceData */ sl@0: { sl@0: return(WriteReply(EWsClOpClaimSystemPointerCursorList)); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::FreeSystemPointerCursorList() sl@0: /** Releases the system pointer cursor list and deletes all the entries in it. sl@0: sl@0: A client should call this function when it no longer needs the system pointer sl@0: cursor list. */ sl@0: { sl@0: if (iWsHandle) sl@0: Write(EWsClOpFreeSystemPointerCursorList); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SetCustomTextCursor(TInt aIdentifier, const TArray& aSpriteMemberArray, TUint aSpriteFlags, TCustomTextCursorAlignment aAlignment) sl@0: /** Adds a custom text cursor to the server's list of cursors. sl@0: sl@0: After adding a custom text cursor, it can be selected for use by calling sl@0: RWindowGroup::SetTextCursor(). sl@0: sl@0: Note that once added, custom text cursors cannot be removed. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aIdentifier The unique identifier for the cursor. sl@0: @param aSpriteMemberArray An array defining the bitmap(s) that make up the sl@0: cursor. Typically, this array will contain a single element for a static, sl@0: non-animated cursor. sl@0: @param aSpriteFlags Flags affecting the sprite behaviour. For possible values sl@0: see TSpriteFlags. sl@0: @param aAlignment The vertical alignment of the cursor sprite. sl@0: @return KErrNone if successful, KErrAlreadyExists if a custom cursor with the sl@0: specified identifier already exists, or another of the standard system wide sl@0: error codes. */ sl@0: { sl@0: // Create the cursor sl@0: TWsClCmdCustomTextCursorData params; sl@0: params.identifier = aIdentifier; sl@0: params.flags = aSpriteFlags; sl@0: params.alignment = aAlignment; sl@0: const TInt handle = iBuffer->WriteReplyWs(¶ms, sizeof(params), EWsClOpStartSetCustomTextCursor); sl@0: if (handle < 0) sl@0: { sl@0: return handle; // Failed to create sl@0: } sl@0: sl@0: RWsCustomTextCursor cursor(*this, handle); sl@0: TInt err = KErrNone; sl@0: for (TInt ii = 0; ii < aSpriteMemberArray.Count(); ii++) sl@0: { sl@0: err = cursor.AppendMember(aSpriteMemberArray[ii]); sl@0: if (err != KErrNone) sl@0: { sl@0: break; sl@0: } sl@0: } sl@0: cursor.Close(); sl@0: err = iBuffer->WriteReplyWs(&err, sizeof(err), EWsClOpCompleteSetCustomTextCursor); sl@0: return err; sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SetModifierState(TEventModifier aModifier,TModifierState aState) sl@0: /** Sets the state of the modifier keys. sl@0: sl@0: This function is typically used for permanent modifier states such as Caps sl@0: Lock or Num Lock, but other possible uses include on-screen function key simulation, sl@0: or the implementation of a Shift Lock key. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aModifier Modifier to set. sl@0: @param aState Modifier state. sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. sl@0: @see GetModifierState() sl@0: @capability WriteDeviceData */ sl@0: { sl@0: TWsClCmdSetModifierState params; sl@0: params.modifier=aModifier; sl@0: params.state=aState; sl@0: return(WriteReply(¶ms,sizeof(params),EWsClOpSetModifierState)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::GetModifierState() const sl@0: /** Gets the state of the modifier keys. sl@0: sl@0: The state of each modifier key (defined in TEventModifier) is returned in sl@0: a bitmask. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @return Modifier state sl@0: @see TEventModifier */ sl@0: { sl@0: return(WriteReply(EWsClOpGetModifierState)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::HeapCount() const sl@0: /** Gets the heap count. sl@0: sl@0: This function calls RHeap::Count() on the window server's heap, after throwing sl@0: away all the temporary objects allocated for each window. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @return The window server's heap count. */ sl@0: { sl@0: return(WriteReply(EWsClOpHeapCount)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::DebugInfo(TInt aFunction, TInt aParam) const sl@0: { sl@0: TWsClCmdDebugInfo params(aFunction,aParam); sl@0: return(WriteReply(¶ms,sizeof(params),EWsClOpDebugInfo)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::DebugInfo(TInt aFunction, TDes8& aReturnBuf, TInt aParam) const sl@0: { sl@0: TWsClCmdDebugInfo params(aFunction,aParam); sl@0: return(WriteReplyP(¶ms,sizeof(params),TWriteDescriptorType(&aReturnBuf),EWsClOpDebugInfoReplyBuf)); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::ResourceCount() const sl@0: /** Gets the number of objects that the server has allocated for that client. sl@0: sl@0: This function can be used to check that the client has correctly cleaned up sl@0: all of its objects. sl@0: sl@0: It always causes a flush of the window server buffer. sl@0: sl@0: @return The number of resources allocated to the client. */ sl@0: { sl@0: return(iWsHandle ? WriteReply(EWsClOpResourceCount) : 0); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::PasswordEntered() sl@0: /** Disables the window server password mode. sl@0: sl@0: This function must be called by the session which owns the password window sl@0: when the correct machine password has been entered. sl@0: sl@0: @deprecated */ sl@0: { sl@0: Write(EWsClOpPasswordEntered); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::HeapSetFail(TInt aTAllocFail,TInt aValue) sl@0: /** Sets the heap failure mode in the window server. sl@0: sl@0: The release version of the base does not support simulated heap failure functionality, sl@0: and the result of this function is additional error messages. In the debug sl@0: version the clients are notified of the simulated failure and handle it. See sl@0: RHeap::__DbgSetAllocFail() for more information. sl@0: sl@0: Note: sl@0: sl@0: It is unlikely, but possible to create a ROM with a mixture of Release and sl@0: Debug versions of the Base and Window Server DLLs, which results in different sl@0: behaviour to that described above. If you run a debug Window Server with a sl@0: release version of the Base, then calling this function will result in neither sl@0: extra error messages (e.g. EDrawingRegion) nor simulated heap failures. However sl@0: if you have a release Window Server with a debug Base then you will get both sl@0: simulated heap failures and the extra error messages. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aTAllocFail A value from the RHeap::TAllocFail enumeration which sl@0: indicates how to simulate heap allocation failure. sl@0: @param aValue The rate of failure; when aType is RHeap::EDeterministic, heap sl@0: allocation fails every aRate attempt sl@0: @see RHeap::__DbgSetAllocFail() sl@0: @capability WriteDeviceData */ sl@0: { sl@0: TWsClCmdHeapSetFail params; sl@0: params.type=(RHeap::TAllocFail)aTAllocFail; sl@0: params.value=aValue; sl@0: params.burst=-1; sl@0: WriteReply(¶ms,sizeof(params),EWsClOpHeapSetFail); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::HeapSetBurstFail(TInt aTAllocFail,TInt aRate,TInt aBurst) sl@0: /** Sets the heap failure burst mode in the window server. sl@0: sl@0: The release version of the base does not support simulated heap failure functionality, sl@0: and the result of this function is additional error messages. In the debug sl@0: version the clients are notified of the simulated failure and handle it. See sl@0: RHeap::__DbgSetBurstAllocFail() for more information. sl@0: sl@0: Note: sl@0: sl@0: It is unlikely, but possible to create a ROM with a mixture of Release and sl@0: Debug versions of the Base and Window Server DLLs, which results in different sl@0: behaviour to that described above. If you run a debug Window Server with a sl@0: release version of the Base, then calling this function will result in neither sl@0: extra error messages (e.g. EDrawingRegion) nor simulated heap failures. However sl@0: if you have a release Window Server with a debug Base then you will get both sl@0: simulated heap failures and the extra error messages. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aTAllocFail A value from the RHeap::TAllocFail enumeration which sl@0: indicates how to simulate heap allocation failure. sl@0: @param aRate The rate of failure; when aType is RHeap::EDeterministic, heap sl@0: allocation fails every aRate attempt. sl@0: @param aBurst The number of consecutive allocations that should fail. sl@0: @see RHeap::__DbgSetBurstAllocFail() sl@0: @capability WriteDeviceData */ sl@0: { sl@0: TWsClCmdHeapSetFail params; sl@0: params.type=(RHeap::TAllocFail)aTAllocFail; sl@0: params.value=aRate; sl@0: params.burst=aBurst; sl@0: WriteReply(¶ms,sizeof(params),EWsClOpHeapSetFail); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::RequestOffEvents(TBool aOn,RWindowTreeNode *aWin/*=NULL*/) sl@0: /** Requests the window server to send OFF events to a window. sl@0: sl@0: After calling this function, the window server sends OFF events to the window sl@0: when an event occurs which requires power down, rather than handling powering sl@0: down itself. sl@0: sl@0: Notes: sl@0: sl@0: Any client can ask for OFF events, but only one window in the system can be sl@0: set to receive them. If this function is called when another window is set sl@0: to receive OFF events then the client will be panicked. The exception is the sl@0: shell, which is allowed to take receipt of OFF events from other clients. sl@0: sl@0: The window server identifies the shell client by comparing the process name sl@0: of the client with the process name of the shell. Only the first client created sl@0: by the shell is guaranteed to have the extra shell client privileges. sl@0: sl@0: If the shell dies or terminates just before the action requiring power down sl@0: happens then the window server will handle it rather than passing it on to sl@0: the shell. sl@0: sl@0: The window server has a queue of messages that it is waiting to send to clients. sl@0: If the shell's client's queue is full and the window server cannot make room sl@0: for the OFF message then it will power down the machine itself. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aOn ETrue to get the window server to send EEventShellSwitchOff messages sl@0: to the shell (rather than powering down). EFalse makes the window server switch sl@0: back to powering down the machine itself. sl@0: @param aWin The handle to the window or window group of the shell to which sl@0: the message is to be sent. This may be NULL only if aOn=EFalse, in other words, sl@0: the window server is handling power down itself. If aOn=ETrue then this must not sl@0: be NULL, or the Window Server will panic the shell. Note that as far as the window sl@0: server is concerned the handle must exist when this function is called. sl@0: @return KErrNone if successful, otherwise one of the system-wide error codes. sl@0: @panic WSERV 51 aOn is true, but no window was specified (aWin is NULL). sl@0: @capability PowerMgmt */ sl@0: { sl@0: TWsClCmdOffEventsToShell OffEventsToShell(aOn,(aWin ? aWin->WsHandle():0)); sl@0: return WriteReply(&OffEventsToShell,sizeof(OffEventsToShell),EWsClOpSendOffEventsToShell); sl@0: } sl@0: sl@0: EXPORT_C TDisplayMode RWsSession::GetDefModeMaxNumColors(TInt& aColor,TInt& aGray) const sl@0: /** Gets the number of colours available in the richest supported colour mode, the sl@0: number of greys available in the richest grey mode, and returns the default sl@0: display mode. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aColor The number of colours in the richest supported colour mode. sl@0: @param aGray The number of greys in the richest supported grey mode. sl@0: @return The default display mode. */ sl@0: { sl@0: return GetDefModeMaxNumColors(KDummyScreenNumber,aColor,aGray); sl@0: } sl@0: sl@0: EXPORT_C TDisplayMode RWsSession::GetDefModeMaxNumColors(TInt aScreenNumber,TInt& aColor,TInt& aGray) const sl@0: /** Gets the number of colours available in the richest supported colour mode, the sl@0: number of greys available in the richest grey mode, and returns the default sl@0: display mode, on the specified screen. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aScreenNumber specifies the screen. sl@0: @param aColor The number of colours in the richest supported colour mode. sl@0: @param aGray The number of greys in the richest supported grey mode. sl@0: @return The default display mode. */ sl@0: { sl@0: TPckgBuf colors; sl@0: WriteReplyIntP(aScreenNumber,&colors,EWsClOpGetDefModeMaxNumColors); sl@0: aColor=colors().iColors; sl@0: aGray=colors().iGrays; sl@0: return colors().iDisplayMode; sl@0: } sl@0: sl@0: #define MODE_TO_FLAG(x) 1<<(x-1) sl@0: sl@0: LOCAL_C void HandleColorMode(CArrayFix* aModeList,TUint aModeBits, TInt& aNumberOfModes, TInt aMode) sl@0: { sl@0: if (aModeBits&(MODE_TO_FLAG(aMode))) sl@0: { sl@0: if (aModeList!=NULL) sl@0: { sl@0: (*aModeList)[aNumberOfModes]=aMode; sl@0: } sl@0: ++aNumberOfModes; sl@0: } sl@0: } sl@0: sl@0: LOCAL_C TInt DoGetColorModeList(CArrayFix* aModeList,TUint aModeBits) sl@0: { sl@0: TInt numberOfModes=0; sl@0: for (TInt mode=EGray2; mode<=EColor256; ++mode) sl@0: { sl@0: HandleColorMode(aModeList,aModeBits,numberOfModes,mode); sl@0: } sl@0: HandleColorMode(aModeList,aModeBits,numberOfModes,EColor4K); sl@0: HandleColorMode(aModeList,aModeBits,numberOfModes,EColor64K); sl@0: HandleColorMode(aModeList,aModeBits,numberOfModes,EColor16M); sl@0: HandleColorMode(aModeList,aModeBits,numberOfModes,EColor16MU); sl@0: HandleColorMode(aModeList,aModeBits,numberOfModes,EColor16MA); sl@0: HandleColorMode(aModeList,aModeBits,numberOfModes,EColor16MAP); sl@0: return numberOfModes; sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::GetColorModeList(CArrayFixFlat *aModeList) const sl@0: /** Gets the list of available colour modes. sl@0: sl@0: Note that this function should usually be called within User::LeaveIfError(). sl@0: The only time that an error can be generated is when the array gets resized sl@0: to the number of display modes. Thus if you make the size of your array equal sl@0: to the maximum number of display modes over all hardware (this is the number sl@0: of different values in TDisplayMode) then this function will never leave. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aModeList On return, contains a TDisplayMode entry for each of the sl@0: available display modes. Note that the array's contents are deleted prior sl@0: to filling with display mode information. sl@0: @return The number of color modes if the parameter is passed NULL. Otherwise KErrNone or KErrNoMemory. */ sl@0: { sl@0: return GetColorModeList(KDummyScreenNumber,aModeList); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::GetColorModeList(TInt aScreenNumber,CArrayFixFlat* aModeList) const sl@0: /** Gets the list of available colour modes on a particular screen. sl@0: sl@0: Note that this function should usually be called within User::LeaveIfError(). sl@0: The only time that an error can be generated is when the array gets resized sl@0: to the number of display modes. Thus if you make the size of your array equal sl@0: to the maximum number of display modes over all hardware (this is the number sl@0: of different values in TDisplayMode) then this function will never leave. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aModeList On return, contains a TDisplayMode entry for each of the sl@0: available display modes. Note that the array's contents are deleted prior sl@0: to filling with display mode information. sl@0: @param aScreenNumber specifies the screen. sl@0: @return The number of color modes if the parameter is passed NULL. Otherwise KErrNone or KErrNoMemory. */ sl@0: { sl@0: const TUint modeList=STATIC_CAST(TUint,WriteReplyInt(aScreenNumber,EWsClOpGetColorModeList)); sl@0: const TInt numberOfModes=DoGetColorModeList(NULL, modeList); sl@0: if (aModeList==NULL) sl@0: { sl@0: return numberOfModes; sl@0: } sl@0: TRAPD(error,aModeList->ResizeL(numberOfModes)); sl@0: if (error!=KErrNone) sl@0: { sl@0: return error; sl@0: } sl@0: DoGetColorModeList(aModeList, modeList); sl@0: return KErrNone; sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::SetPointerCursorArea(const TRect& aArea) sl@0: /** sl@0: @publishedPartner sl@0: @released sl@0: sl@0: Sets the area of the screen in which the virtual cursor can be used while in sl@0: relative mouse mode, for the first screen display mode. sl@0: sl@0: This function sets the area for the first screen mode - the one with index sl@0: 0, which in most devices will be the only screen mode. The other function sl@0: overload can be used to set the screen area for other modes. The area is set sl@0: and stored independently on each screen mode, so that it is not necessary sl@0: to call this function again when switching back to the first screen mode. sl@0: sl@0: The default area is the full digitiser area. When you set the area it will sl@0: come into immediate affect, i.e. if necessary the current pointer position sl@0: will be updated to be within the new area. sl@0: sl@0: Notes: sl@0: sl@0: Relative mouse mode is where the events received from the base by window server sl@0: are deltas from the last position of the pointer, as opposed to absolute co-ordinates. sl@0: sl@0: This function is honoured even if there is a mouse or pen (e.g. on the emulator), sl@0: by mapping the co-ordinates of where you click into the area set using this sl@0: function. However the function does not restrict clicks outside of the 'drawing sl@0: area' on the Emulator, to allow you to select items on the fascia. sl@0: sl@0: @param aArea The area of the screen in which the virtual cursor can be used. sl@0: @capability WriteDeviceData */ sl@0: { sl@0: SetPointerCursorArea(0,aArea); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::SetPointerCursorArea(TInt aScreenSizeMode,const TRect& aArea) sl@0: /** Sets the area of the screen in which the virtual cursor can be used while in sl@0: relative mouse mode, for a specified screen display mode. sl@0: sl@0: The default area is the full digitiser area for the given mode. When you set sl@0: the area it will come into immediate affect, i.e. if necessary the current sl@0: pointer position will be updated to be within the new area. sl@0: sl@0: The area is set and stored independently on each screen mode, so that it is sl@0: not necessary to call this function again when switching back to a mode. sl@0: sl@0: Notes: sl@0: sl@0: Relative mouse mode is where the events received from the base by window server sl@0: are deltas from the last position of the pointer, as opposed to absolute co-ordinates. sl@0: sl@0: The previous function overload may be used to set the screen area for only sl@0: the first mode. sl@0: sl@0: This function is honoured even if there is a mouse or pen (e.g. on the emulator), sl@0: by mapping the co-ordinates of where you click into the area set using this sl@0: function. However the function does not restrict clicks outside of the 'drawing sl@0: area' on the Emulator, to allow you to select items on the fascia. sl@0: sl@0: @param aScreenSizeMode The screen mode to which the new area applies. sl@0: @param aArea The area of the screen, in the aScreenSizeMode screen mode, within sl@0: which the virtual cursor can be used. sl@0: @capability WriteDeviceData */ sl@0: { sl@0: TWsClCmdSetPointerCursorArea SetPointerCursorArea(aScreenSizeMode,aArea); sl@0: Write(&SetPointerCursorArea,sizeof(SetPointerCursorArea),EWsClOpSetPointerCursorArea); sl@0: } sl@0: sl@0: EXPORT_C TRect RWsSession::PointerCursorArea() const sl@0: /** Gets the pointer cursor area for the first screen display mode. sl@0: sl@0: This is the area of the screen in which the virtual cursor can be used while sl@0: in relative mouse mode. While in pen or mouse mode the event co-ordinates sl@0: are forced to be within this area unless you click outside the drawable area. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @return The pointer cursor area for the first screen display mode. sl@0: @see SetPointerCursorArea() */ sl@0: { sl@0: return PointerCursorArea(0); sl@0: } sl@0: sl@0: EXPORT_C TRect RWsSession::PointerCursorArea(TInt aScreenSizeMode) const sl@0: /** Gets the pointer cursor area for the specified screen display mode. sl@0: sl@0: This is the area of the screen in which the virtual cursor can be used while sl@0: in relative mouse mode. While in pen or mouse mode the event co-ordinates sl@0: are forced to be within this area unless you click outside the drawable area. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aScreenSizeMode The screen mode for which the pointer cursor area is sl@0: required. sl@0: @return The pointer cursor area for the specified screen display mode. sl@0: @see SetPointerCursorArea() */ sl@0: { sl@0: TPckgBuf rectPkg; sl@0: WriteReplyP(&aScreenSizeMode,sizeof(aScreenSizeMode),&rectPkg,EWsClOpPointerCursorArea); sl@0: return(rectPkg()); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::SetPointerCursorMode(TPointerCursorMode aMode) sl@0: /** Sets the current mode for the pointer cursor. sl@0: sl@0: The mode determines which sprite is used for the pointer cursor at any point. sl@0: The request is ignored unless the calling application is the application sl@0: that currently has keyboard focus. sl@0: See TPointerCursorMode for more information. sl@0: sl@0: @param aMode The new mode for the pointer cursor. sl@0: @see TPointerCursorMode */ sl@0: { sl@0: WriteInt(aMode,EWsClOpSetPointerCursorMode); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SetClientCursorMode(TPointerCursorMode aMode) sl@0: /** Sets the current mode for the pointer cursor. sl@0: sl@0: The mode determines which sprite is used for the pointer cursor at any point. sl@0: See TPointerCursorMode for more information. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aMode The new mode for the pointer cursor. sl@0: @see TPointerCursorMode sl@0: @return KErrNone if successful, otherwise returns system wide errors. Returns sl@0: KErrPermissionDenied if calling thread lacks WriteDeviceData capability sl@0: @capability WriteDeviceData */ sl@0: { sl@0: return(WriteReplyInt(aMode,EWsClOpSetClientCursorMode)); sl@0: } sl@0: sl@0: EXPORT_C TPointerCursorMode RWsSession::PointerCursorMode() const sl@0: /** Gets the current mode for the pointer cursor. sl@0: sl@0: The mode determines which sprite is used for the pointer cursor at any point. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @return The current mode for the pointer cursor. */ sl@0: { sl@0: return(STATIC_CAST(TPointerCursorMode,WriteReply(EWsClOpPointerCursorMode))); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::SetDefaultSystemPointerCursor(TInt aCursorNumber) sl@0: /** Sets the default system pointer cursor. sl@0: sl@0: This function can only be called by the owner of the system pointer cursor sl@0: list. By default the 0th entry in the pointer cursor list is assigned as the sl@0: system pointer. The function allows any cursor from the list or even no cursor sl@0: to be set as the system pointer cursor. sl@0: sl@0: Note: ownership of the system pointer cursor list can be obtained by calling sl@0: ClaimSystemPointerCursorList() when no-one else has ownership. sl@0: sl@0: @param aCursorNumber The index of the new default system pointer cursor within sl@0: the system cursor list. */ sl@0: { sl@0: WriteInt(aCursorNumber,EWsClOpSetDefaultSystemPointerCursor); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::ClearDefaultSystemPointerCursor() sl@0: /** Clears the default system pointer cursor. sl@0: sl@0: This sets the pointer to the current default system pointer cursor to NULL. sl@0: sl@0: @panic WSERV 42 If this function is called by a client other than the owner of the sl@0: system pointer cursor list. */ sl@0: { sl@0: Write(EWsClOpClearDefaultSystemPointerCursor); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SetPointerCursorPosition(const TPoint& aPosition) sl@0: /** Sets the pointer cursor position. sl@0: sl@0: This function allows an application to move the virtual cursor. It works in sl@0: all modes, not just relative mouse mode. sl@0: sl@0: Note: the function works in screen co-ordinates and honours the pointer cursor area sl@0: exactly as pen presses do, i.e. only when they are in the drawing area sl@0: on the Emulator. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aPosition The new pointer cursor position. sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. sl@0: @capability WriteDeviceData required, if the client calling the function doesn't have keyboard focus. sl@0: However, if the client have keyboard focus then he doesn't need any capability to call this function. */ sl@0: { sl@0: return(WriteReply(&aPosition,sizeof(aPosition),EWsClOpSetPointerCursorPosition)); sl@0: } sl@0: sl@0: EXPORT_C TPoint RWsSession::PointerCursorPosition() const sl@0: /** Gets the pointer cursor position. sl@0: sl@0: This function allows an application to determine the position of the virtual sl@0: cursor. sl@0: sl@0: It always causes a flush of the window server buffer. sl@0: sl@0: @return The position of the virtual cursor. */ sl@0: { sl@0: TPckgBuf pointPkg; sl@0: WriteReplyP(&pointPkg,EWsClOpPointerCursorPosition); sl@0: return(pointPkg()); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::SetDefaultFadingParameters(TUint8 aBlackMap,TUint8 aWhiteMap) sl@0: /** sl@0: @publishedPartner sl@0: @released sl@0: sl@0: Sets the default fading parameters. sl@0: sl@0: Fading is used to change the colour of windows to be either closer sl@0: to white or closer to black, so that another window stands out. For example, sl@0: when displaying a dialogue you could fade all visible windows, then unfade sl@0: the dialog window. This function sets whether, and the amount by which, faded sl@0: windows appear closer to white or closer to black. sl@0: sl@0: The white and black mapping values define the range over which colours are sl@0: re-mapped when a window is faded. If aBlackMap=0 and aWhiteMap=255 then the sl@0: colours are mapped unchanged. As the two values get closer together, all colours sl@0: in the faded window becomes more similar - creating the fading effect. When sl@0: the numbers cross over (so that the black value is greater than the white sl@0: value) the colours in the faded window start to invert - i.e. colours that sl@0: were closer to white in the unfaded window are mapped to a darker colour in sl@0: the faded window. sl@0: sl@0: Changing the default will automatically apply to current graphics contexts sl@0: but will not have any affect on windows that are already faded. sl@0: sl@0: Note: RWindowTreeNode::SetFaded(), CWindowGc::SetFaded() and RWsSession::SetSystemFaded() sl@0: use these fading parameters, and in addition allow the default fading value sl@0: to be overridden. sl@0: sl@0: @param aBlackMap Black map fading parameter. sl@0: @param aWhiteMap White map fading parameter. sl@0: @see RWindowTreeNode::SetFaded() sl@0: @see CWindowGc::SetFadingParameters() sl@0: @capability WriteDeviceData */ sl@0: { sl@0: WriteInt(WservEncoding::Encode8BitValues(aBlackMap,aWhiteMap),EWsClOpSetDefaultFadingParams); sl@0: } sl@0: sl@0: /** sl@0: @publishedPartner sl@0: @released sl@0: sl@0: Prepares for switch off. sl@0: sl@0: This stops the window server heart beat timer if running. sl@0: sl@0: @capability PowerMgmt sl@0: */ sl@0: EXPORT_C void RWsSession::PrepareForSwitchOff() sl@0: { sl@0: Write(EWsClOpPrepareForSwitchOff); sl@0: } sl@0: sl@0: #if defined(__WINS__) sl@0: EXPORT_C void RWsSession::SetRemoveKeyCode(TBool aRemove) sl@0: /** Sets whether to remove the top 16 bits of a key code (Emulator builds only). sl@0: sl@0: This function allows the Emulator to use Windows to translate keypresses into sl@0: the correct key code for each locale, rather than having to do the translation sl@0: for each international keyboard itself. sl@0: sl@0: The top 16 bits of a keypress code contains the keycode that Windows would sl@0: produce if the key had been pressed in a typical Windows program. If aRemove sl@0: is EFalse the client can get these top 16 bits. If the value is non-zero sl@0: the CKeyTranslator uses it rather than calculating it's own value. If aRemove sl@0: is ETrue the window server strips the top 16 bits of the scan code before sl@0: passing the value on to the client. sl@0: sl@0: Note: this function is intended for Java but it will be useful to any client who sl@0: creates their own CKeyTranslator and processes keyups and downs. sl@0: sl@0: @param aRemove ETrue to remove the code (default), EFalse to pass it to the sl@0: client. */ sl@0: { sl@0: WriteInt(aRemove,EWsClOpRemoveKeyCode); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::SimulateXyInputType(TInt aInputType) sl@0: { sl@0: WriteInt(aInputType,EWsClOpSimulateXyInput); sl@0: } sl@0: #endif sl@0: sl@0: EXPORT_C void RWsSession::LogCommand(TLoggingCommand aCommand) sl@0: /** Allows the window server client to enable or disable logging of window server sl@0: events. sl@0: sl@0: The type of logging that takes place (e.g. whether to file or to serial port) sl@0: depends on the settings specified in the wsini.ini file. sl@0: sl@0: Clients can also force a dump of the window tree or information about the sl@0: window server's heap size and usage. sl@0: sl@0: For logging to work, the wsini.ini file has to specify the type of logging sl@0: required and the DLLs for that type of logging must have been correctly installed. sl@0: Otherwise, calling this function will have no effect. sl@0: sl@0: @param aCommand The logging command. */ sl@0: { sl@0: WriteInt(aCommand,EWsClOpLogCommand); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::LogMessage(const TLogMessageText &aMessage) sl@0: /** Adds a message to the window server debug log if one is currently in operation. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aMessage The text added to the message log. */ sl@0: { sl@0: TInt len=aMessage.Length(); sl@0: WriteReply(&len,sizeof(len),aMessage.Ptr(),aMessage.Size(),EWsClOpLogMessage); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::SimulateRawEvent(TRawEvent aEvent) sl@0: /** sl@0: @internalAll sl@0: sl@0: Simulates raw events. sl@0: sl@0: For most purposes, RWsSession::SimulateKeyEvent() should be used instead to sl@0: simulate key events because low-level scan-code up/down events are not meaningful sl@0: to anything other than the keyboard to which they apply. sl@0: sl@0: For example, the driver for an external keyboard should do its own conversion from sl@0: raw scan-codes to higher-level character code key events and pass these to the sl@0: window server using SimulateKeyEvent(). sl@0: sl@0: @param aEvent The raw event. sl@0: @capability SwEvent */ sl@0: { sl@0: Write(&aEvent,sizeof(aEvent),EWsClOpRawEvent); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::SimulateKeyEvent(TKeyEvent aEvent) sl@0: /** sl@0: @internalAll sl@0: sl@0: Sends a simulated key event to the window server. sl@0: sl@0: All the fields in TKeyEvent are honoured except iRepeats, which is overridden sl@0: with zero. sl@0: sl@0: @param aEvent The key event to be simulated. sl@0: @capability SwEvent */ sl@0: { sl@0: Write(&aEvent,sizeof(aEvent),EWsClOpKeyEvent); sl@0: } sl@0: sl@0: sl@0: EXPORT_C void RWsSession::SystemInfo(TInt &aSystemInfoNumber, SSystemInfo &aSystemInfo) sl@0: /** @internalComponent */ sl@0: { sl@0: TPckgBuf systemInfoPckg; sl@0: WriteReplyP(&aSystemInfoNumber,sizeof(aSystemInfoNumber),&systemInfoPckg,EWsClOpSystemInfo); sl@0: aSystemInfo=systemInfoPckg(); sl@0: } sl@0: sl@0: void RWsSession::DirectAcessActivation(TBool aIsNowActive) sl@0: { sl@0: if (aIsNowActive) sl@0: ++iBuffer->iDirectAcessCount; sl@0: else sl@0: { sl@0: --iBuffer->iDirectAcessCount; sl@0: __ASSERT_DEBUG(iBuffer->iDirectAcessCount>=0,Assert(EW32AssertDirectMisuse)); sl@0: } sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::TestWrite(TInt aHandle,TInt aOpcode,const TAny *pData, TInt aLength) sl@0: /** @internalComponent */ sl@0: { sl@0: iBuffer->Write(aHandle,aOpcode,pData,aLength); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::TestWriteReply(TInt aHandle,TInt aOpcode,const TAny *pData, TInt aLength) sl@0: /** @internalComponent */ sl@0: { sl@0: iBuffer->WriteReply(aHandle,aOpcode,pData,aLength); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::TestWriteReplyP(TInt aHandle,TInt aOpcode,const TAny *pData,TInt aLength,TDes8 *aReplyPackage) sl@0: /** @internalComponent */ sl@0: { sl@0: iBuffer->WriteReplyP(aHandle,aOpcode,pData,aLength,aReplyPackage); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::TestWriteReplyByProvidingRemoteReadAccess(TInt aHandle,TInt aOpcode,const TDesC8& aData,const TDesC8& aRemoteReadBuffer) sl@0: /** @internalComponent */ sl@0: { sl@0: return iBuffer->WriteReplyByProvidingRemoteReadAccess(aHandle,aOpcode,aData.Ptr(),aData.Length(),&aRemoteReadBuffer); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::TestWriteReplyByProvidingRemoteReadAccess(TInt aHandle,TInt aOpcode,const TDesC8& aData,const TDesC16& aRemoteReadBuffer) sl@0: /** @internalComponent */ sl@0: { sl@0: return iBuffer->WriteReplyByProvidingRemoteReadAccess(aHandle,aOpcode,aData.Ptr(),aData.Length(),&aRemoteReadBuffer); sl@0: } sl@0: sl@0: /** Sets both the buffer size and maximum buffer size for queuing commands to send to the Windows Server. sl@0: The value should be at least the size of the largest message that will be sent, sl@0: otherwise a panic of the client may occur. sl@0: sl@0: The minimum possible buffer size is 640 and the maximum possible size is 16384 bytes. sl@0: The default size of 640 bytes is sufficient for most uses. sl@0: sl@0: Larger buffers can reduce drawing flicker by allowing more drawing commands to be sl@0: collected in the buffer before being sent to the server. sl@0: sl@0: Smaller buffers conserve system memory. sl@0: sl@0: Can be used to set a minimum buffer size, sufficient for largest drawing command used, sl@0: before calling RWsSession::SetMaxBufferSizeL() to set a maximum buffer size for queuing commands. sl@0: sl@0: @param aBufSize The desired buffer size in bytes, at least the size of largest message to be sent. sl@0: @leave KErrNoMemory Could not allocate the required memory. sl@0: sl@0: @panic TW32Panic 5 Occurs during the session if a single drawing command is too big to fit in the buffer. sl@0: sl@0: @see RWsSession::Flush() sl@0: @see RWsSession::SetAutoFlush() sl@0: @see RWsSession::SetMaxBufferSizeL() sl@0: */ sl@0: EXPORT_C void RWsSession::SetBufferSizeL(TInt aBufSize) sl@0: { sl@0: iBuffer->SetBufferSizeL(aBufSize); sl@0: } sl@0: sl@0: /** Sets the maximum size that the buffer for queuing commands to send to the Windows Server can expand to. sl@0: sl@0: The minimum possible buffer size is 640 and the maximum possible size is 16384 bytes. sl@0: sl@0: If the buffer size is larger than the new maximum it is reduced. sl@0: sl@0: A minimum size is calculated to be one quarter the maximum size, but in any case at least 640 bytes. sl@0: If the buffer size is smaller than the calculated minimum it is expanded. sl@0: sl@0: RWsSession::SetBufferSizeL() can be used to set a specific minimum size >640 bytes before setting a maximum size. sl@0: This is useful if you will send very large drawing commands. sl@0: sl@0: After calling this function the buffer size will be between the specified maximum and calculated minimum sizes. sl@0: sl@0: The algorithm for growing the buffer up to the maximum is chosen to balance the cost of expanding the buffer sl@0: with the waste of an excessively large buffer that is never filled. sl@0: sl@0: If the buffer becomes too full to add a new drawing command, and the buffer size is less than the maximum, sl@0: the buffer size will be expanded. sl@0: If the buffer is already at the maximum size, or the expansion fails due to low memory, sl@0: the buffer will be emptied with RWsSession::Flush(). sl@0: If there is not enough space now for the new command a panic occurs. sl@0: sl@0: @param aMaxBufSize The desired maximum buffer size in bytes. sl@0: @leave KErrNoMemory Could not allocate the required minimum memory. sl@0: sl@0: @panic TW32Panic 5 Occurs during the session if a single drawing command is too big to fit in the buffer. sl@0: sl@0: @see RWsSession::Flush() sl@0: @see RWsSession::SetAutoFlush() sl@0: @see RWsSession::SetBufferSizeL() sl@0: */ sl@0: EXPORT_C void RWsSession::SetMaxBufferSizeL(TInt aMaxBufSize) sl@0: { sl@0: iBuffer->SetMaxBufferSizeL(aMaxBufSize); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SetSystemFaded(TBool aFaded) sl@0: /** Sets all windows in the system as faded or unfaded, using the default fading sl@0: parameters. sl@0: sl@0: This function allows all windows that currently exist, not just those in a sl@0: single window group, to be faded or unfaded. sl@0: sl@0: Notes: The window server generates a redraw to un-fade a window, because information sl@0: is lost during fading. Blank (RBlankWindow) and backup (RBackupWindow) windows sl@0: deal with this themselves. Areas in shadow when the window is faded will also sl@0: have redraw events generated for them by the window server. While a window sl@0: is faded, all drawing to that window will be adjusted appropriately by the sl@0: window server. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aFaded ETrue to fade all windows, EFalse to un-fade all windows. sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. sl@0: @capability WriteDeviceData */ sl@0: { sl@0: TWsClCmdSetSystemFaded params(aFaded); sl@0: return WriteReply(¶ms,sizeof(params),EWsClOpSetFaded); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SetSystemFaded(TBool aFaded,TUint8 aBlackMap,TUint8 aWhiteMap) sl@0: /** Sets all windows in the system as faded or unfaded, overriding the default sl@0: fading parameters (as set by SetDefaultFadingParameters()). sl@0: sl@0: This function allows all windows that currently exist, not just those in the sl@0: same window group, to be faded or unfaded. sl@0: sl@0: Notes: Fading a window for a second time (that is fading it when it is already sl@0: faded) will not change the fading map used. The window server generates a sl@0: redraw to un-fade a window, because information is lost during fading. Blank sl@0: (RBlankWindow) and backup (RBackupWindow) windows deal with this themselves. sl@0: Areas in shadow when the window is faded will also have redraw events generated sl@0: for them by the window server. While a window is faded, all drawing to that sl@0: window will be adjusted appropriately by the window server. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aFaded ETrue to fade all windows, EFalse to un-fade all windows. sl@0: @param aBlackMap Black map fading parameter. sl@0: @param aWhiteMap White map fading parameter. sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. sl@0: @capability WriteDeviceData */ sl@0: { sl@0: TWsClCmdSetSystemFaded params(aFaded,EFalse,aBlackMap,aWhiteMap); sl@0: return WriteReply(¶ms,sizeof(params),EWsClOpSetFaded); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SetFocusScreen(TInt aScreenNumber) sl@0: /** Set focus screen sl@0: @param aScreenNumber The new focus screen. sl@0: @return KErrNone if successful, otherwise another of the system-wide error sl@0: codes. */ sl@0: { sl@0: return WriteReplyInt(aScreenNumber,EWsClOpSetFocusScreen); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::GetFocusScreen() const sl@0: /** Get focus screen sl@0: @return The screen number of current focus screen */ sl@0: { sl@0: return WriteReply(EWsClOpGetFocusScreen); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::NumberOfScreens() const sl@0: /** Number Of Screens sl@0: @return The number of screens on the phone */ sl@0: { sl@0: return WriteReply(EWsClOpGetNumberOfScreens); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::ClearAllRedrawStores() sl@0: /** Clear the redraw store for all windows in the system sl@0: By default Windows will recorded the drawing commands used during a redraw and use them latter if the window needs to be redrawn. sl@0: Calling this function will cause all these stores to be thrown away redraw will then be sent to all window, visible windows will recieve them first. sl@0: sl@0: This function always causes a flush of the window server buffer.*/ sl@0: { sl@0: Write(EWsClOpClearAllRedrawStores); sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::Finish() sl@0: /** sl@0: Blocks until all outstanding window server rendering has been completed. sl@0: @return KErrNone if successful sl@0: */ sl@0: { sl@0: SyncMsgBuf(); sl@0: return SendReceive(EWservMessFinish); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::SyncMsgBuf() sl@0: /** sl@0: Sends all pending commands in the buffer to the window server. sl@0: */ sl@0: { sl@0: if (iBuffer) sl@0: iBuffer->Flush(); sl@0: sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SetCloseProximityThresholds(TInt /*aEnterCloseProximityThreshold*/, TInt /*aExitCloseProximityThreshold*/) sl@0: /** Dummy implementation in order to preserve compatibility with WSERV NGA. sl@0: @internalComponent */ sl@0: { sl@0: ASSERT(0); sl@0: return KErrNotSupported; sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::GetEnterCloseProximityThreshold() const sl@0: /** Dummy implementation in order to preserve compatibility with WSERV NGA. sl@0: @internalComponent */ sl@0: { sl@0: ASSERT(0); sl@0: return KErrNone; // return any value to prevent compilation warning sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::GetExitCloseProximityThreshold() const sl@0: /** Dummy implementation in order to preserve compatibility with WSERV NGA. sl@0: @internalComponent */ sl@0: { sl@0: ASSERT(0); sl@0: return KErrNone; // return any value to prevent compilation warning sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::SetHighPressureThresholds(TInt /*aEnterHighPressureThreshold*/, TInt /*aExitHighPressureThreshold*/) sl@0: /** Dummy implementation in order to preserve compatibility with WSERV NGA. sl@0: @internalComponent */ sl@0: { sl@0: ASSERT(0); sl@0: return KErrNotSupported; sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::GetEnterHighPressureThreshold() const sl@0: /** Dummy implementation in order to preserve compatibility with WSERV NGA. sl@0: @internalComponent */ sl@0: { sl@0: ASSERT(0); sl@0: return KErrNone; // return any value to prevent compilation warning sl@0: } sl@0: sl@0: EXPORT_C TInt RWsSession::GetExitHighPressureThreshold() const sl@0: /** Dummy implementation in order to preserve compatibility with WSERV NGA. sl@0: @internalComponent */ sl@0: { sl@0: ASSERT(0); sl@0: return KErrNone; // return any value to prevent compilation warning sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::EnableWindowSizeCacheL() sl@0: /** Dummy implementation in order to preserve compatibility with WSERV NGA. sl@0: @internalComponent */ sl@0: { sl@0: ASSERT(0); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::SendEffectCommand(TInt /*aTfxCmd*/,const TDesC8& /*aTfxCmdData*/) sl@0: /** Dummy implementation in order to preserve compatibility with WSERV NGA. sl@0: @internalComponent */ sl@0: { sl@0: ASSERT(0); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::RegisterEffect(TInt /*aAction*/, TInt /*aPurpose*/, const TFileName& /*aResourceDir*/, const TFileName& /*aFilenameOutgoing*/, const TFileName& /*aFilenameIncoming*/, TUint /*aAppUid*/, TBitFlags /*aFlags*/) sl@0: /** Dummy implementation in order to preserve compatibility with WSERV NGA. sl@0: @internalComponent */ sl@0: { sl@0: ASSERT(0); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::UnregisterEffect(TInt /*aAction*/, TInt /*aPurpose*/, TUint /*aAppUid*/) sl@0: /** Dummy implementation in order to preserve compatibility with WSERV NGA. sl@0: @internalComponent */ sl@0: { sl@0: ASSERT(0); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::UnregisterAllEffects() sl@0: /** Dummy implementation in order to preserve compatibility with WSERV NGA. sl@0: @internalComponent */ sl@0: { sl@0: ASSERT(0); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::OverrideEffects(TInt /*aAction*/, TInt /*aPurpose*/, const TFileName& /*aResourceDir*/, const TFileName& /*aFilenameOutgoing*/, const TFileName& /*aFilenameIncoming*/, TBitFlags /*aFlags*/) sl@0: /** Dummy implementation in order to preserve compatibility with WSERV NGA. sl@0: @internalComponent */ sl@0: { sl@0: ASSERT(0); sl@0: } sl@0: sl@0: EXPORT_C void RWsSession::IndicateAppOrientation(TRenderOrientation /*aOrientation*/) sl@0: /** Dummy implementation in order to preserve compatibility with WSERV NGA. sl@0: @internalComponent */ sl@0: { sl@0: ASSERT(0); sl@0: }