sl@0: // Copyright (c) 1994-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: // Standard window server header file sl@0: // sl@0: // sl@0: sl@0: #ifndef __W32STD_H__ sl@0: #define __W32STD_H__ sl@0: sl@0: #ifndef __FNTSTORE_H__ sl@0: #include sl@0: #endif sl@0: #ifndef __BITDEV_H__ sl@0: #include sl@0: #endif sl@0: #ifndef __BITSTD_H__ sl@0: #include sl@0: #endif sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS sl@0: #include sl@0: #include sl@0: #endif //SYMBIAN_ENABLE_SPLIT_HEADERS sl@0: sl@0: _LIT(KWSERVThreadName,"Wserv"); sl@0: sl@0: class RWindowBase; sl@0: class RWindow; sl@0: class RWsBuffer; sl@0: class MWsObjectProvider; sl@0: class RWsDrawableSource; sl@0: class TSizeMode; sl@0: sl@0: /** Screen mode enforcement flags. sl@0: sl@0: Screen mode enforcement ensures that windows must meet certain requirements sl@0: if they are to be displayed. When the screen mode changes, window groups that sl@0: are incorrectly set up, according to these requirements, are locked out. The sl@0: windows are notified of the change, and will be displayed if they are updated sl@0: (according to the current enforcement requirement) to match the new screen sl@0: mode. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see CWsScreenDevice::ScreenModeEnforcement() sl@0: @see CWsScreenDevice::SetScreenModeEnforcement() */ sl@0: enum TScreenModeEnforcement sl@0: { sl@0: /** No enforcement. sl@0: sl@0: All windows that are the children of window groups will be displayed, irrespective sl@0: of the screen mode. sl@0: sl@0: This is not properly supported and is provided for testing purposes. */ sl@0: ESizeEnforcementNone, sl@0: /** Pixels and rotation enforcement. sl@0: sl@0: Group windows must be set up for the correct rotation and be working in the sl@0: correct size in pixels to be displayed. */ sl@0: ESizeEnforcementPixelsAndRotation, sl@0: /** Pixels and Twips enforcement. sl@0: sl@0: Group windows must have the correct rotation and be working in the correct sl@0: size in pixels and twips to be displayed. sl@0: sl@0: This setting might be used if the display pixels are not square, and would sl@0: distort fonts when rotated. */ sl@0: ESizeEnforcementPixelsTwipsAndRotation, sl@0: }; sl@0: sl@0: struct TPixelsAndRotation sl@0: /** Pixels and rotation struct. sl@0: sl@0: This is used to define a particular screen mode's screen size in pixels, sl@0: and its rotation. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see CWsScreenDevice::GetScreenModeSizeAndRotation() */ sl@0: { sl@0: /** The screen size, for a given screen mode, in pixels. */ sl@0: TSize iPixelSize; sl@0: /** The current screen orientation. */ sl@0: CFbsBitGc::TGraphicsOrientation iRotation; sl@0: }; sl@0: sl@0: struct TPixelsTwipsAndRotation sl@0: /** Pixels, twips and rotation struct. sl@0: sl@0: This is used to define a particular screen mode's screen size in twips sl@0: and pixels, and its rotation. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see CWsScreenDevice::GetScreenModeSizeAndRotation() */ sl@0: { sl@0: /** The screen size, for a given screen mode, in pixels. */ sl@0: TSize iPixelSize; sl@0: /** The screen size, for a given screen mode, in twips. */ sl@0: TSize iTwipsSize; sl@0: /** The screen rotation. */ sl@0: CFbsBitGc::TGraphicsOrientation iRotation; sl@0: }; sl@0: sl@0: /** Log message text length. sl@0: sl@0: This defines the length of the log text message buffer TLogMessageText, sl@0: which is used in RWsSession::LogMessage(). sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: enum { sl@0: /** The length of the log message text buffer in characters. */ sl@0: KLogMessageLength=0x80 sl@0: }; sl@0: sl@0: /** Log message text buffer. sl@0: sl@0: This is used in RWsSession::LogMessage(). sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: typedef TBuf TLogMessageText; sl@0: sl@0: /** Password window group priority. sl@0: sl@0: This priority is assigned to the password window group when the window server is displaying the password window. sl@0: This is the highest priority, which ensures that the machine password window is in front of all other windows - sl@0: hence password tests cannot be bypassed. sl@0: sl@0: @publishedAll sl@0: @deprecated */ sl@0: enum sl@0: { sl@0: /** Password window group priority. */ sl@0: KPasswordWindowGroupPriority=1000 sl@0: }; sl@0: sl@0: /** Switch ordinal position to owning window. sl@0: sl@0: This enum can be specified as the 2nd parameter to RWsSession::SetWindowGroupOrdinalPosition() sl@0: or as the 1st parameter to RWindowTreeNode::SetOrdinalPosition() (if this is being called on an sl@0: RWindowGroup). sl@0: sl@0: When called with this value, the functions don't change the ordinal position of the group window sl@0: in question, but rather bring to the front the window that would come to the front if that group sl@0: window were to die with keyboard focus. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see RWsSession::SetWindowGroupOrdinalPosition() sl@0: @see RWindowTreeNode::SetOrdinalPosition() */ sl@0: enum { sl@0: /** Switch ordinal position to owning window. */ sl@0: KOrdinalPositionSwitchToOwningWindow=0x80000000 sl@0: }; sl@0: sl@0: /** Window corner types. sl@0: sl@0: Corners may be specified square or stepped, with varying numbers of pixels sl@0: removed to make the stepping. Picturing a corner as the top left corner of sl@0: a window, the numbers denote the number of pixels removed from the top row sl@0: to give corners. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see TCornerFlags sl@0: @see RWindowBase::SetCornerType() */ sl@0: enum TCornerType sl@0: // Bottom 16 bits available for corner type sl@0: { sl@0: /** Square corner. */ sl@0: EWindowCornerSquare, sl@0: /** Corner pixel removed. */ sl@0: EWindowCorner1, sl@0: /** Two pixel step. sl@0: sl@0: 3 pixels are removed: the corner pixel and a single pixel from each side. */ sl@0: EWindowCorner2, sl@0: /** Three pixel step. sl@0: sl@0: 5 pixels are removed: the corner pixel, the two pixels next to it and the sl@0: 2 pixels above or below it. */ sl@0: EWindowCorner3, sl@0: /** Five pixel step. sl@0: sl@0: 12 pixels are removed: the corner pixel, the four pixels next to it, the sl@0: four pixels above or below it, the pixel which was diagonal to the corner sl@0: pixel, and the pixels to both sides of that pixel. */ sl@0: EWindowCorner5, sl@0: EWindowCornerRegion, // Private sl@0: /** Corner type mask. sl@0: sl@0: This value is used by the window server, and may be used by developers, to sl@0: separate TCornerType and TCornerFlags values from a TInt which contains both sl@0: types. */ sl@0: ECornerTypeMask=0xFFFF sl@0: }; sl@0: sl@0: /** Corner flags. sl@0: sl@0: These are used by RWindowBase::SetCornerType() to set which corners of a window sl@0: are not to have corner types applied to them. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see TCornerType */ sl@0: enum TCornerFlags sl@0: // Top 16 bits available for corner flags sl@0: { sl@0: /** Do not apply corner shape to top left corner. */ sl@0: EWindowCornerNotTL=0x10000, sl@0: /** Do not apply corner shape to top right corner. */ sl@0: EWindowCornerNotTR=0x20000, sl@0: /** Do not apply corner shape to bottom left corner. */ sl@0: EWindowCornerNotBL=0x40000, sl@0: /** Do not apply corner shape to bottom right corner. */ sl@0: EWindowCornerNotBR=0x80000, sl@0: }; sl@0: sl@0: /** Window backup type flags. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see RWindowBase::EnableBackup() */ sl@0: enum TWindowBackupType sl@0: { sl@0: /** Backup the area behind the current window only. sl@0: sl@0: This is the default behaviour for the RWindowBase::EnableBackup() function. */ sl@0: EWindowBackupAreaBehind=0x0001, sl@0: /** Backup the entire screen. sl@0: sl@0: This is provided for windows that require the rest sl@0: of the screen to fade when they are displayed. When the rest of the screen sl@0: should become unfaded, the window server redraws the whole screen from the sl@0: backed up bitmap. */ sl@0: EWindowBackupFullScreen=0x0002, sl@0: }; sl@0: sl@0: /** Types of standard events. sl@0: sl@0: These are events that the window server passes to its clients, as opposed sl@0: to events that the base passes to the window server. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see CClickMaker */ sl@0: enum TEventCode sl@0: { sl@0: /** Null event. sl@0: sl@0: This can be sent, but should be ignored by clients. */ sl@0: EEventNull, sl@0: /** Key event. sl@0: sl@0: This is the event that is sent when a character has been received from the sl@0: keyboard. sl@0: sl@0: If an EEventKey event is associated with an EEventKeyDown or EEventKeyUp sl@0: event (typically EEventKeyDown), the EEventKey event occurs after the sl@0: EEventKeyDown/EEventKeyUp event. sl@0: sl@0: In practice, the only keys potentially likely to have their EEventKey event sl@0: generated on the up rather than the down are modifier keys. */ sl@0: EEventKey, sl@0: /** Key up event. sl@0: sl@0: If an EEventKey event is associated with an EEventKeyUp event (which is sl@0: rarely the case), the EEventKey event occurs after the EEventKeyUp event. */ sl@0: EEventKeyUp, sl@0: /** Key down event. sl@0: sl@0: If an EEventKey event is associated with an EEventKeyDown event (which sl@0: is typically the case), the EEventKey event occurs after the EEventKeyDown event. */ sl@0: EEventKeyDown, sl@0: /** Modifier changed event. sl@0: sl@0: This is an event generated by the window server when sl@0: the state of one of the modifier keys changes. sl@0: It is not reported unless explicitly requested by a window. sl@0: sl@0: @see RWindowTreeNode::EnableModifierChangedEvents(). */ sl@0: EEventModifiersChanged, sl@0: /** Pointer event. sl@0: sl@0: This event is sent when the user presses or releases a pointer button (or sl@0: the equivalent action, depending on the type of pointing device), drags the sl@0: pointer, moves it or uses the pointer to switch on the device. */ sl@0: EEventPointer, //5 sl@0: /** Pointer enter event. sl@0: sl@0: This occurs when the user moves the pointer into a window with a pointer button sl@0: pressed (or equivalent action depending on the type of pointing device). If sl@0: move events are being generated, this event also occurs when the user moves sl@0: the pointer into the window. */ sl@0: EEventPointerEnter, sl@0: /** Pointer exit event. sl@0: sl@0: Occurs when the user moves the pointer out of a window with a pointer button sl@0: pressed (or equivalent action depending on the type of pointing device). If sl@0: move events are being generated, this event also occurs when the user moves sl@0: the pointer out of the window. */ sl@0: EEventPointerExit, sl@0: /** Pointer move buffer ready event. sl@0: sl@0: Occurs when the pointer move buffer is ready to be retrieved by the client. */ sl@0: EEventPointerBufferReady, sl@0: /** Occurs as a duplicate of each pointer event if a window sets pointer capture sl@0: with the TCaptureFlagDragDrop flag set. */ sl@0: EEventDragDrop, sl@0: /** Focus lost event. sl@0: sl@0: Occurs when a window group loses keyboard focus. */ sl@0: EEventFocusLost, //10 sl@0: /** Focus gained event. sl@0: sl@0: Occurs when a window group gains keyboard focus. */ sl@0: EEventFocusGained, sl@0: /** On event. sl@0: sl@0: This event type is not reported unless explicitly requested by a window. sl@0: sl@0: @see RWindowTreeNode::EnableOnEvents(). */ sl@0: EEventSwitchOn, sl@0: /** Password event. sl@0: sl@0: Occurs when the window server enters password mode. It is sent to the group sl@0: window of the currently active password window. sl@0: sl@0: This is the window server mode where the user is required to enter a password sl@0: before any further actions can be performed. sl@0: sl@0: @deprecated */ sl@0: EEventPassword, sl@0: /** Window group changed event. This occurs whenever a window group is destroyed, sl@0: and whenever a window group's name changes sl@0: sl@0: This event type is not reported unless explicitly requested by a window. sl@0: sl@0: @see RWindowTreeNode::EnableGroupChangeEvents(). */ sl@0: EEventWindowGroupsChanged, sl@0: /** Error event. sl@0: sl@0: Occurs when an error occurs. See TWsErrorMessage::TErrorCategory for the types sl@0: of errors. sl@0: sl@0: This event type is not reported unless explicitly requested by a window. sl@0: sl@0: @see RWindowTreeNode::EnableErrorMessages(). */ sl@0: EEventErrorMessage, //15 sl@0: /** Message ready event. sl@0: sl@0: Occurs when a session sends a message to this window group using RWsSession::SendMessageToWindowGroup(). */ sl@0: EEventMessageReady, sl@0: EEventMarkInvalid, // For internal use only sl@0: /** Off event. sl@0: sl@0: This is issued when an off event is received by the window server from the sl@0: base. sl@0: sl@0: If for some reason the event can't be delivered, or there is no-one to deliver sl@0: it to, then a call to the base is made to power down the processor. sl@0: sl@0: This event is only delivered if explicitly requested using RWsSession:RequestOffEvent(). */ sl@0: EEventSwitchOff, sl@0: /** Event issued to off-event requesting windows when the off key is pressed. */ sl@0: EEventKeySwitchOff, sl@0: /** Screen size mode change event. sl@0: sl@0: This is issued when the screen size mode has changed, for instance when sl@0: the cover on a phone that supports screen flipping is opened or closed. */ sl@0: EEventScreenDeviceChanged, //20 sl@0: /** Event sent whenever the window group with focus changes. sl@0: sl@0: Requested by RWindowTreeNode::EnableFocusChangeEvents(). */ sl@0: EEventFocusGroupChanged, sl@0: /** Case opened event. sl@0: sl@0: This event is sent to those windows that have requested EEventSwitchOn sl@0: events. Unlike with EEventSwitchOn events, the screen will not be switched sl@0: on first. */ sl@0: EEventCaseOpened, sl@0: /** Case closed event. sl@0: sl@0: This event is sent to those windows that have requested EEventSwitchOff sl@0: events. sl@0: sl@0: Unlike EEventSwitchOff events, which make a call to the base to power down sl@0: the processor if for some reason the event can't be delivered (or there is sl@0: no-one to deliver it to), failure to deliver case closed events has no repercussions. */ sl@0: EEventCaseClosed, sl@0: /** Window group list change event. sl@0: sl@0: The window group list is a list of all window groups and their z-order. This sl@0: event indicates any change in the window group list: additions, removals and sl@0: reorderings. sl@0: sl@0: Notification of this event is requested by calling RWindowTreeNode::EnableGroupListChangeEvents(). */ sl@0: EEventWindowGroupListChanged, sl@0: /** The visibility of a window has changed sl@0: sl@0: This is sent to windows when they change from visible to invisible, or visa versa, usually due sl@0: to another window obscuring them. sl@0: sl@0: Notification of this event is requested by calling RWindowTreeNode::EnableVisibilityChangeEvents(). */ sl@0: EEventWindowVisibilityChanged, sl@0: #ifdef SYMBIAN_PROCESS_MONITORING_AND_STARTUP sl@0: /** Restart event. sl@0: sl@0: This is issued when an restart event is received by the window server from the sl@0: base. This event is also an off event, because it might power-cycle the device. sl@0: sl@0: If for some reason the event can't be delivered, or there is no-one to deliver sl@0: it to, then a call to the base is made to power down the processor. sl@0: sl@0: This event is only delivered if explicitly requested using RWsSession:RequestOffEvent(). */ sl@0: EEventRestartSystem, sl@0: #endif sl@0: /** The display state or configuration has changed sl@0: sl@0: Either change of the current resolution list (state change) or current resolution/background sl@0: (mode change) will trigger this event. sl@0: sl@0: Notification of this event is requested by calling MDisplayControl::EnableDisplayChangeEvents() sl@0: */ sl@0: EEventDisplayChanged = EEventWindowVisibilityChanged+2, sl@0: //Codes for events only passed into Key Click DLL's sl@0: /** Repeating key event. sl@0: sl@0: This is only sent to a key click plug-in DLL (if one is present) to indicate sl@0: a repeating key event. sl@0: sl@0: @see CClickMaker */ sl@0: EEventKeyRepeat=100, sl@0: EEventGroupWindowOpen, sl@0: EEventGroupWindowClose, sl@0: EEventWindowClose, sl@0: //Codes for events only passed into anim dlls sl@0: /** Direct screen access begin sl@0: This is only sent to anim dlls (if they register to be notified). It indicates that sl@0: the number of direct screen access sessions has increased from zero to one.*/ sl@0: EEventDirectScreenAccessBegin=200, sl@0: /** Direct screen access end sl@0: This is only sent to anim dlls (if they register to be notified). It indicates that sl@0: the number of direct screen access sessions has decreased from one to zero.*/ sl@0: EEventDirectScreenAccessEnd, sl@0: /** Event to signal the starting or stopping of the wserv heartbeat timer sl@0: This is only sent to anim dlls (if they register to be notified). */ sl@0: EEventHeartbeatTimerStateChange, sl@0: sl@0: //The range 900-999 is reserved for UI Framework events sl@0: /** 900-909 WSERV protects with PowerMgmt */ sl@0: EEventPowerMgmt = 900, sl@0: EEventReserved = 910, sl@0: sl@0: //Event codes from EEventUser upwards may be used for non-wserv events. sl@0: //No event codes below this should be defined except by the window server sl@0: sl@0: /** User defined event. sl@0: sl@0: The client can use this and all higher values to define their own sl@0: events. These events can be sent between windows of the same client or windows sl@0: of different clients. sl@0: sl@0: @see RWs::SendEventToWindowGroup(). */ sl@0: EEventUser=1000, sl@0: sl@0: }; sl@0: sl@0: sl@0: /** Window server hot keys. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see RWsSession::SetHotKey() */ sl@0: enum THotKey sl@0: { sl@0: /** Enables logging of all messages to and from the window server. sl@0: sl@0: Note that the required type of logging must have been specified in the wsini.ini sl@0: file (using the LOG keyword), and the appropriate logging DLL must be available. sl@0: sl@0: Default key mapping: \\\E */ sl@0: EHotKeyEnableLogging, sl@0: /** Always disables window server logging, if active. Does nothing otherwise. sl@0: sl@0: Default key mapping: \\\D */ sl@0: EHotKeyDisableLogging, sl@0: /** Dumps a list of all windows to the log. (If logging is disabled, it is temporarily sl@0: enabled in order to do this.) sl@0: sl@0: Default key mapping: \\\W */ sl@0: EHotKeyStateDump, sl@0: /** Kills the foreground application. sl@0: sl@0: Default key mapping: \\\K */ sl@0: EHotKeyOfDeath, sl@0: /** Shuts down the window server. sl@0: sl@0: Be cautious! This may mean resetting the machine to re-start the window server. sl@0: sl@0: Default key mapping: release (not available), debug (\\\X). */ sl@0: EHotKeyShutDown, sl@0: /** Dumps a list of cells allocated on the window server's heap to the log. (If sl@0: logging is disabled, it is temporarily enabled in order to do this.) sl@0: sl@0: Note that logging requires that the type of logging has been set up in the sl@0: wsini.ini file, and that the appropriate logging DLL is available. sl@0: sl@0: Default key mapping: \\\H */ sl@0: EHotKeyHeapDump, sl@0: /** Increases the LCD contrast. sl@0: sl@0: Default key mapping: EKeyIncContrast. Note that this value is from an enum sl@0: in e32keys.h. The contrast wraps around when it reaches the maximum. */ sl@0: EHotKeyIncContrast, sl@0: /** Decreases the LCD contrast. sl@0: sl@0: Default key mapping: EKeyDecContrast. Note that this value is from an enum sl@0: in e32keys.h. The contrast wraps around when it reaches the minimum. */ sl@0: EHotKeyDecContrast, sl@0: /** Switches the machine off. sl@0: sl@0: Default key mapping: EKeyOff. Note that this value is from an enum in e32keys.h. */ sl@0: EHotKeyOff, sl@0: /** Switches the backlight on. sl@0: sl@0: Default key mapping: EKeyBacklightOn. Note that this value is from an enum sl@0: in e32keys.h. */ sl@0: EHotKeyBacklightOn, sl@0: /** Switches the backlight off. sl@0: sl@0: Default key mapping: EKeyBacklightOff. Note that this value is from an enum sl@0: in e32keys.h. */ sl@0: EHotKeyBacklightOff, sl@0: /** Toggles the backlight. sl@0: sl@0: Default key mapping: EKeyBacklightToggle. Note that this value is from an sl@0: enum in e32keys.h. */ sl@0: EHotKeyBacklightToggle, sl@0: /** Switches to screen size 0. sl@0: sl@0: This, and the following 3 keys are used to switch screen sizes on real hardware, sl@0: for instance when the cover is closed on a phone that supports screen flipping. */ sl@0: EHotKeyScreenDimension0, sl@0: /** Switches to screen size 1. sl@0: sl@0: This might be generated when the cover is opened on a phone that supports screen sl@0: flipping. */ sl@0: EHotKeyScreenDimension1, sl@0: /** Switches to screen size 2. */ sl@0: EHotKeyScreenDimension2, sl@0: /** Switches to screen size 3. */ sl@0: EHotKeyScreenDimension3, sl@0: /** Cycles the display though its possible sizes. sl@0: sl@0: This is used only for debugging. sl@0: sl@0: A device may have several screen sizes, each with a default orientation. For sl@0: example a phone that supports screen flipping will have different display sl@0: sizes when the cover is opened and closed. sl@0: sl@0: Default key mapping: debug : \\\ U. Release : none. */ sl@0: EHotKeyCycleDisplaySize, sl@0: /** Cycles the screen orientation through the specified rotations for the particular sl@0: size mode you are in. sl@0: sl@0: For example, phones that support screen flipping may sl@0: use this feature for changing between right and left handed use. sl@0: sl@0: For rectangular display modes you can only specify 2 orientations, 180 degrees sl@0: apart. For square modes you can specify 4 rotations (90 degrees) or however sl@0: many you want. sl@0: sl@0: Specification of the list of rotations takes place in the WSINI.INI file. sl@0: sl@0: Default key mapping: debug : \\\ O. Release : none. */ sl@0: EHotKeyCycleOrientation, sl@0: /** Increases the screen's brightness. sl@0: sl@0: The brightness wraps around to the minimum sl@0: value after it has reached the maximum. */ sl@0: EHotKeyIncBrightness, sl@0: /** Decreases the screen's brightness. sl@0: sl@0: The brightness wraps around to the maximum value after it has reached the minimum. */ sl@0: EHotKeyDecBrightness, sl@0: sl@0: /** Cycle focus screen from one to another in multiple screen environment. Start sl@0: from current focused screen, switch to next the screen, and wraps around when it sl@0: reaches the last screen. sl@0: sl@0: Default key mapping: \\\ I. */ sl@0: EHotKeyCycleFocusScreen, sl@0: sl@0: /** Value for first hot key. sl@0: sl@0: Used with EHotKeyLastKeyType to make it easy to write a for loop that steps sl@0: through all the different key values. */ sl@0: EHotKeyFirstKeyType=EHotKeyEnableLogging, //Must always be set to the first one sl@0: /** Value for last hot key. sl@0: sl@0: Used with EHotKeyFirstKeyType to make it easy to write a for loop that steps sl@0: through all the different key values. */ sl@0: EHotKeyLastKeyType=EHotKeyCycleFocusScreen, //Must always be set to the last one sl@0: }; sl@0: sl@0: sl@0: /** Password mode flags. sl@0: sl@0: @publishedAll sl@0: @deprecated */ sl@0: enum TPasswordMode sl@0: { sl@0: /** Releases ownership of password handling. sl@0: sl@0: This allows another window to become the password window. A client will be sl@0: panicked with code 46 if it sets this mode when it is not the current password sl@0: window. */ sl@0: EPasswordCancel, sl@0: /** No password handling is performed by this window, but no other window sl@0: can become the password window. */ sl@0: EPasswordNone, sl@0: /** Password mode is enabled only once a day. sl@0: sl@0: When enabled, password mode requires the user to enter a password sl@0: before any further actions can be performed. */ sl@0: EPasswordOnceADay, sl@0: /** Password mode is enabled every time the machine is switched on. */ sl@0: EPasswordAlways, sl@0: /** Equivalent to setting the password mode to EPasswordAlways and triggering an sl@0: instant password check. */ sl@0: EPasswordAlwaysTriggerNow, sl@0: /** Equivalent to setting the password mode to EPasswordOnceADay and triggering sl@0: an instant password check. */ sl@0: EPasswordOnceADayTriggerNow, sl@0: }; sl@0: enum TPriorities { sl@0: /** sl@0: Defines the value EAllPriorities. sl@0: */ sl@0: EAllPriorities=KMinTInt, sl@0: }; sl@0: sl@0: /** Sprite flags. sl@0: sl@0: These can be combined using a bit-wise OR operation. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see RWsPointerCursor::Construct() sl@0: @see RWsSprite::Construct() */ sl@0: enum TSpriteFlags sl@0: { sl@0: /** Flash sprite on and off. sl@0: sl@0: All flashing is done on the same timer, including the text cursor. */ sl@0: ESpriteFlash=0x1, sl@0: /** This flag no longer has any effect. sl@0: sl@0: If you want a sprite to appear on top of all windows, you can create a floating sprite sl@0: by specifying a RWindowGroup as parent to the sprite. */ sl@0: ESpriteNoChildClip=0x2, sl@0: /** The sprite's appearance will not change when it is on a shadowed part of the sl@0: screen. sl@0: sl@0: (Typically this is used for sprites attached to window groups so that sl@0: they are perceived to be floating above the windows). */ sl@0: ESpriteNoShadows=0x4 sl@0: }; sl@0: sl@0: struct TSpriteMember sl@0: /** Sprite member. sl@0: sl@0: This structure is used to define the parameters of a sprite member, which sl@0: can be added to a sprite or pointer cursor. sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: /** The bitmap to be displayed in the sprite or pointer cursor during the time sl@0: interval specified by iInterval. sl@0: sl@0: If NULL, the sprite or pointer cursor will be invisible for the time specified sl@0: by iInterval. */ sl@0: CFbsBitmap *iBitmap; sl@0: /** The bitmap mask. sl@0: sl@0: This defines which areas of iBitmap are drawn to the screen. sl@0: It enables the bitmap to have a non-rectangular shape on the screen. Areas sl@0: which are not drawn to, retain the appearance of the window underneath the sl@0: sprite or cursor. sl@0: sl@0: The bits in iBitmap are AND'ed with those in iMaskBitmap before being drawn sl@0: to the screen. In practice, the mask bitmap is normally white in those areas sl@0: drawn to by iBitmap, and black in all other areas. sl@0: sl@0: Note: sl@0: sl@0: This bitmap should be in the same mode as iBitmap, otherwise the masking sl@0: out operation becomes inefficient. */ sl@0: CFbsBitmap *iMaskBitmap; sl@0: /** EFalse if the mask bitmap is not to be inverted (the default) or ETrue if it sl@0: is to be inverted. */ sl@0: TBool iInvertMask; sl@0: /** Specifies the drawing mode to use when drawing iBitmap if the mask is NULL. */ sl@0: CGraphicsContext::TDrawMode iDrawMode; sl@0: /** Offset from the sprite's central position. sl@0: sl@0: Specifies an offset between the origin of iBitmap and the sprite or pointer sl@0: cursor's origin. (The origin is the top left corner of the bitmap.) */ sl@0: TPoint iOffset; sl@0: /** Time interval for which iBitmap is displayed. sl@0: sl@0: Note that if only one sprite member is added to a sprite or pointer cursor, sl@0: it will be displayed continuously, regardless of the value of iInterval. */ sl@0: TTimeIntervalMicroSeconds32 iInterval; sl@0: }; sl@0: sl@0: /** Event reporting control. sl@0: sl@0: This enumeration defines flags which can be used to control how events are sl@0: reported. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see RWindowTreeNode::EnableOnEvents() sl@0: @see RWindowTreeNode::EnableModifierChangedEvents() sl@0: @see RWindowTreeNode::EnableErrorMessages() */ sl@0: enum TEventControl sl@0: { sl@0: /** Requested events are sent in all circumstances. */ sl@0: EEventControlAlways, sl@0: /** Events are delivered only when the requesting window's window group has keyboard sl@0: focus. */ sl@0: EEventControlOnlyWithKeyboardFocus, sl@0: /** Events are delivered only when the requesting window or any of its children sl@0: are visible on the screen. */ sl@0: EEventControlOnlyWhenVisible sl@0: }; sl@0: sl@0: /** Pointer event filter types. sl@0: sl@0: These flags are used by RWindowBase::PointerFilter() to define which pointer sl@0: events are filtered out by the window server and not sent to the client session. sl@0: They also allow the window server to simulate a move event prior to each pen sl@0: down event. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see RWindowBase::PointerFilter() */ sl@0: enum TPointerFilter sl@0: { sl@0: //Basic Types sl@0: /** Filters out both pointer enter and pointer exit events for this window. */ sl@0: EPointerFilterEnterExit=0x1, sl@0: /** Filters out pointer-move events for this window. */ sl@0: EPointerFilterMove=0x2, sl@0: /** Filters out pointer-drag events for this window. */ sl@0: EPointerFilterDrag=0x4, sl@0: /** Simulates a pointer move event before each pen down event. sl@0: sl@0: This makes the pen appear more like a mouse, with simulated movement between sl@0: two pointer events. You can only get these events while you are in pen mode. */ sl@0: EPointerGenerateSimulatedMove=0x8, sl@0: //Combinations of the above sl@0: /** Filters move and drag-pointer events from the event stream and simulates the sl@0: move event before each pen down event. sl@0: sl@0: This enum is useful when you want to get simulated move events. Use it as shown sl@0: below to turn on simulated moves: sl@0: sl@0: @code sl@0: win->PointerFilter(EPointerMoveEvents, EPointerGenerateSimulateMoves) sl@0: @endcode sl@0: @see RWindowBase::PointerFilter() */ sl@0: EPointerMoveEvents=EPointerFilterMove|EPointerGenerateSimulatedMove, sl@0: }; sl@0: sl@0: struct TKeyEvent sl@0: /** Key event details. sl@0: sl@0: When processing a TKeyEvent, the TStdScanCode in iScanCode should usually sl@0: be ignored in favour of the TKeyCode in iCode. Using iScanCode would bypass sl@0: the keyboard mapping and any FEP that happens to be installed. The exceptions sl@0: to this general rule are games where the positions of the keys are more important sl@0: than their translations, and FEPs that are implementing keyboard maps themselves. sl@0: In these cases, if the iCode is used rather than iScanCode to determine the sl@0: key pressed, there will be two unfortunate consequences. Firstly, the low-level sl@0: keyboard mapping might re-arrange the mapping that you are trying to impose. sl@0: Secondly, you will subvert the CTRL+number method of entering Unicode literals. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: /** The character code generated for an EEventKey, or 0 for a down or up event. sl@0: sl@0: Key codes for special keys are defined in TKeyCode. */ sl@0: TUint iCode; sl@0: /** The scan code of the key that caused the event. sl@0: sl@0: Standard scan codes are defined in TStdScanCode. */ sl@0: TInt iScanCode; sl@0: /** State of modifier keys and pointing device. Modifier keys are defined in TEventModifier. */ sl@0: TUint iModifiers; sl@0: /** Count of auto repeats generated. sl@0: sl@0: 0 means an event without repeats. 1 or more means "this many auto repeat events". sl@0: It is normal to ignore this value and treat it as a single event. */ sl@0: TInt iRepeats; sl@0: }; sl@0: sl@0: struct TModifiersChangedEvent sl@0: /** Details of changed modifier keys. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see TWsEvent::ModifiersChanged() */ sl@0: { sl@0: /** Contains a set bit for any modifier which has changed. Modifiers are defined sl@0: in TEventModifier. */ sl@0: TUint iChangedModifiers; sl@0: /** Current state of all modifiers, combined using a bitwise-OR. Modifiers are sl@0: defined in TEventModifier. */ sl@0: TUint iModifiers; sl@0: }; sl@0: sl@0: struct TWsVisibilityChangedEvent sl@0: /** Visibility changed events. sl@0: sl@0: These events are generated in response to a window being obscured, or being fully or partially sl@0: revealed after being obscured. sl@0: @publishedAll sl@0: @released sl@0: @see RWindowTreeNode::EnableVisibilityChangeEvents() */ sl@0: { sl@0: enum sl@0: { sl@0: /** Some or all of the window is visible, either directly or through a transparent window. sl@0: @deprecated Use EPartiallyVisible instead. */ sl@0: ECanBeSeen = 0x01, sl@0: /** None of the window is visible, either directly or through a transparent window. sl@0: @deprecated Use ENotVisible instead. */ sl@0: ECantBeSeen = 0x02, sl@0: }; sl@0: enum sl@0: { sl@0: /** Some (or all) of the window is visible, either directly or through a transparent window. */ sl@0: EPartiallyVisible = 0x01, sl@0: /** None of the window is visible, either directly or through a transparent window. */ sl@0: ENotVisible = 0x02, sl@0: /** All of the window is directly visible. */ sl@0: EFullyVisible = 0x04, sl@0: }; sl@0: /** A combination of one or more visibility event flags. */ sl@0: TUint iFlags; sl@0: }; sl@0: sl@0: struct TWsDisplayChangedEvent sl@0: /** Display changed events. sl@0: sl@0: These events are generated by attaching, detaching the display device, changing the resolution list or change sl@0: current resolution or backgound (change the current configuration). sl@0: @publishedAll sl@0: @released sl@0: @see MDisplayControl::EnableDisplayChangeEvents() */ sl@0: { sl@0: /** sl@0: Number of display that has changed, causing this event. This is sl@0: also known as the screen number, and is zero-based. sl@0: sl@0: @see CWsScreenDevice::Construct(TInt) sl@0: */ sl@0: TInt iDisplayNumber; sl@0: /** sl@0: Opaque value that changes when the current display configuration sl@0: has changed. sl@0: sl@0: Compare values in subsequent events to determine whether the sl@0: current resolution has changed since the last event. sl@0: */ sl@0: TInt iConfigurationChangeId; sl@0: /** sl@0: Opaque value that changes when the resolution list has changed. sl@0: sl@0: Compare values in subsequent events to determine whether the list sl@0: of available resolutions has changed since the last event. sl@0: sl@0: @see MDisplayControlBase::GetResolutions sl@0: */ sl@0: TInt iResolutionListChangeId; sl@0: }; sl@0: sl@0: struct TWsErrorMessage sl@0: /** Error event details. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see RWindowTreeNode::EnableErrorMessages() */ sl@0: { sl@0: /** Error event types */ sl@0: enum TErrorCategory sl@0: { sl@0: /** An error that occurs while the window server is calculating a drawing region sl@0: for a particular window. sl@0: sl@0: When the window server can't calculate a drawing region due to lack of memory sl@0: it goes into a mode where it draws the whole of a window. Any window that sl@0: is covering this window is also told to redraw. */ sl@0: EDrawingRegion, sl@0: /** An error occured while trying to turn the backlight on or off. sl@0: sl@0: This would usually only happen when the batteries are low. */ sl@0: EBackLight, sl@0: /** An error occured while trying to enable logging. */ sl@0: ELogging, sl@0: /** An error that occured while trying to change the contrast. */ sl@0: EContrast, sl@0: }; sl@0: /** The error category. */ sl@0: TErrorCategory iErrorCategory; sl@0: /** The error code */ sl@0: TUint iError; sl@0: }; sl@0: sl@0: class TWsRedrawEvent sl@0: /** Window server redraw event. sl@0: sl@0: All redraw events generated by the window server are delivered to the client sl@0: in an object of this type. The class provides a handle to the window which sl@0: generated the redraw event, and the rectangle which should be redrawn. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see RWsSession::GetRedraw() */ sl@0: { sl@0: public: sl@0: inline TUint Handle() const; sl@0: inline TRect Rect() const; sl@0: public: sl@0: void SetHandle(TUint aHandle); sl@0: void SetRect(TRect aRect); sl@0: protected: sl@0: TUint iHandle; /**< WARNING: Member variable for internal use ONLY. Compatibility is not guaranteed in future releases. Please access using the provided get/set APIs only. */ sl@0: TRect iRect; /**< Rectangle to redraw. WARNING: Member variable for internal use ONLY. Compatibility is not guaranteed in future releases. Please access using the provided get/set APIs only. */ sl@0: }; sl@0: sl@0: class TWsPriorityKeyEvent sl@0: /** Priority key events. sl@0: sl@0: These events are configured using RWindowGroup::AddPriorityKey(), and obtained sl@0: by the client using the functions RWsSession::PriorityKeyReady() and RWsSession::GetPriorityKey(). sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: inline TKeyEvent *Key() const; sl@0: inline TUint Handle() const; sl@0: inline void SetHandle(TUint aHandle); sl@0: protected: sl@0: TUint iHandle; /**< WARNING: Member variable for internal use ONLY. Compatibility is not guaranteed in future releases. Please access using the provided get/set APIs only. */ sl@0: TUint8 iEventData[sizeof(TKeyEvent)]; /**< WARNING: Member variable for internal use ONLY. Compatibility is not guaranteed in future releases. Please access using the provided get/set APIs only. */ sl@0: }; sl@0: sl@0: class TWsEvent sl@0: /** Window server event. sl@0: sl@0: All events generated by the window server, except redraw events and priority sl@0: key events, are delivered to the client in a TWsEvent. The client obtains sl@0: the TWsEvent by calling RWsSession::GetEvent(). The type of data contained sl@0: in the TWsEvent depends on the type of event. The client can inquire the event sl@0: type using Type(), and then retrieve the appropriate type of data. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: /** Event data size. */ sl@0: enum sl@0: { sl@0: /** sl@0: This is the maximum number of bytes of data that can be returned by EventData(). sl@0: Note: this value is 32 bytes.*/ sl@0: EWsEventDataSize=sizeof(TAdvancedPointerEvent) sl@0: }; sl@0: public: sl@0: inline TWsEvent(); sl@0: inline TAdvancedPointerEvent* Pointer() const; sl@0: inline TKeyEvent* Key() const; sl@0: inline TModifiersChangedEvent* ModifiersChanged() const; sl@0: inline TWsVisibilityChangedEvent* VisibilityChanged(); sl@0: inline const TWsVisibilityChangedEvent* VisibilityChanged() const; sl@0: inline TWsDisplayChangedEvent* DisplayChanged(); sl@0: inline const TWsDisplayChangedEvent* DisplayChanged() const; sl@0: inline TWsErrorMessage* ErrorMessage() const; sl@0: inline TUint8* EventData() const; sl@0: inline TInt Type() const; sl@0: inline TUint Handle() const; sl@0: inline TTime Time() const; sl@0: inline void SetType(TInt aType); sl@0: inline void SetHandle(TUint aHandle); sl@0: inline void SetTimeNow(); sl@0: inline TInt* Int() const; sl@0: IMPORT_C void InitAdvancedPointerEvent(TPointerEvent::TType aType, TUint aModifiers, const TPoint3D &aPoint3D, TUint8 aPointerNumber); sl@0: IMPORT_C void SetPointerNumber(TUint8 aPointerNumber); sl@0: IMPORT_C void SetPointerZ(TInt aZ); sl@0: protected: sl@0: TInt iType; /**< WARNING: Member variable for internal use ONLY. Compatibility is not guaranteed in future releases. Please access using the provided get/set APIs only. */ sl@0: TUint iHandle; /**< WARNING: Member variable for internal use ONLY. Compatibility is not guaranteed in future releases. Please access using the provided get/set APIs only. */ sl@0: TTime iTime; /**< WARNING: Member variable for internal use ONLY. Compatibility is not guaranteed in future releases. Please access using the provided get/set APIs only. */ sl@0: TUint8 iEventData[EWsEventDataSize]; /**< WARNING: Member variable for internal use ONLY. Compatibility is not guaranteed in future releases. Please access using the provided get/set APIs only. */ sl@0: }; sl@0: sl@0: sl@0: class RWsPointerCursor; sl@0: sl@0: /** Pointer cursor mode flags. sl@0: sl@0: These flags define the current cursor mode, and hence which sprite to use sl@0: for the pointer cursor. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see RWsSession::SetPointerCursorMode() sl@0: @see RWsSession::PointerCursorMode() */ sl@0: enum TPointerCursorMode sl@0: { sl@0: /** Don't have a pointer cursor. */ sl@0: EPointerCursorNone, sl@0: /** The default system pointer cursor is used whenever there is a pointer cursor. */ sl@0: EPointerCursorFixed, sl@0: /** The default system pointer cursor is used unless the window the pointer cursor sl@0: is above specifies one, in which case that cursor is used. */ sl@0: EPointerCursorNormal, sl@0: /** There is no pointer cursor unless the pointer is above a window that has specified sl@0: one. */ sl@0: EPointerCursorWindow, sl@0: /** First pointer cursor mode. sl@0: sl@0: This is used in test code for iterating though available modes. */ sl@0: EPointerCursorFirstMode=EPointerCursorNone, sl@0: /** The final pointer cursor mode. sl@0: sl@0: This is used in test code for iterating though available modes. It will be sl@0: updated if more modes are added. */ sl@0: EPointerCursorLastMode=EPointerCursorWindow, sl@0: }; sl@0: sl@0: /** Flags which customise a long key press capture request made by a window group. sl@0: sl@0: These flags are passed to RWindowGroup::CaptureLongKey(). sl@0: sl@0: Two things can be configured using this enum: the normal key event that is sl@0: generated immediately, and the long key event that is generated after a short sl@0: time interval. The normal key event can be sent immediately (on key down) sl@0: to the application with keyboard focus, or, if the key is not held down long sl@0: enough to generate a long key event, when the key is released. The long key sl@0: event can be customised to generate a single key event only, or to auto repeat. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see RWindowGroup::CaptureLongKey() */ sl@0: enum TLongCaptureFlags sl@0: { sl@0: /** If specified, the normal ("short") key event is sent immediately (on key down) sl@0: to the application with keyboard focus. If not specified, the normal key event sl@0: is sent when the key is released (if the key is not held down long enough sl@0: to generate a long key event). */ sl@0: ELongCaptureShortEventImmediately=0x01, sl@0: /** If specified, causes the long key press to automatically repeat. If not specified, sl@0: the long key press will generate a single key event only. */ sl@0: ELongCaptureRepeatEvents=0x02, sl@0: /** Equivalent to ELongCaptureShortEventImmediately being set and the other flags sl@0: unset. */ sl@0: ELongCaptureNormal=ELongCaptureShortEventImmediately, sl@0: /** Equivalent to the first two values being unset. */ sl@0: ELongCaptureWaitShort=0, sl@0: }; sl@0: sl@0: sl@0: class TIpcArgs; sl@0: class TReadDescriptorType; sl@0: class TWriteDescriptorType; sl@0: class CWindowGc; sl@0: class RWsSession; sl@0: sl@0: class TWsGraphicId sl@0: /** Identifies an abstract artwork sl@0: sl@0: This is a piece of artwork that might be owned and authored by another process. sl@0: A client can draw a piece of artwork, but that doesn't confer the ability to sl@0: access the pixel representation of that artwork directly. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: enum TUninitialized sl@0: { sl@0: EUninitialized sl@0: }; sl@0: TWsGraphicId(TUninitialized): iFlags(0) {} sl@0: IMPORT_C TWsGraphicId(TUid aUid); sl@0: IMPORT_C TWsGraphicId(TInt aId); sl@0: IMPORT_C TWsGraphicId(const TWsGraphicId& aCopy); sl@0: IMPORT_C TUid Uid() const; sl@0: IMPORT_C TBool IsUid() const; sl@0: IMPORT_C void Set(TUid aUid); sl@0: IMPORT_C TInt Id() const; sl@0: IMPORT_C TBool IsId() const; sl@0: IMPORT_C void Set(TInt aId); sl@0: IMPORT_C TInt Compare(const TWsGraphicId& aOther) const; sl@0: private: sl@0: friend class CWsGraphic; sl@0: TUint iFlags; sl@0: TInt iId; sl@0: TInt iWsGraphicIdSpare[2]; sl@0: }; sl@0: sl@0: class CWsGraphic: public CBase sl@0: /** Client representation of a window-server-side piece of artwork owned by this Client sl@0: sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: { sl@0: protected: sl@0: IMPORT_C CWsGraphic(); sl@0: public: sl@0: IMPORT_C ~CWsGraphic(); sl@0: protected: sl@0: // 2nd phase construction sl@0: IMPORT_C void BaseConstructL(TUid aUid,TUid aType,const TDesC8& aData); sl@0: IMPORT_C void BaseConstructL(TUid aType,const TDesC8& aData); sl@0: IMPORT_C void BaseConstructL(const TWsGraphicId& aReplace,TUid aType,const TDesC8& aData); sl@0: // sharing between clients sl@0: IMPORT_C virtual TInt ShareGlobally(); sl@0: IMPORT_C virtual TInt Share(TSecureId aClientId); sl@0: IMPORT_C virtual TInt UnShare(TSecureId aClientId); sl@0: IMPORT_C virtual TInt UnShareGlobally(); sl@0: public: sl@0: IMPORT_C const TWsGraphicId& Id() const; sl@0: IMPORT_C TBool IsActive() const; sl@0: IMPORT_C void Destroy(); sl@0: protected: sl@0: IMPORT_C void SendMessage(const TDesC8& aData) const; sl@0: IMPORT_C TInt SendSynchronMessage(const TDesC8& aData) const; sl@0: IMPORT_C TInt Flush() const; sl@0: IMPORT_C void SetGraphicExtension(MWsObjectProvider* aExt); sl@0: IMPORT_C RWsSession& Session(); sl@0: sl@0: private: sl@0: // events from wserv, to be implemented by derived classes sl@0: /** sl@0: Handles message from this graphic artwork peer on the server. sl@0: @param aData Message from peer CWsGraphicDrawer. sl@0: */ sl@0: virtual void HandleMessage(const TDesC8& aData) = 0; sl@0: sl@0: /** sl@0: Handles custom operation when this graphic artwork is replaced. When this method sl@0: is invoked, the replaced peer CWsGraphicDrawer on the server has been destroyed. sl@0: */ sl@0: virtual void OnReplace() = 0; sl@0: IMPORT_C virtual void OnClientClose(); sl@0: private: sl@0: void BaseConstructL(); sl@0: IMPORT_C virtual TInt CWsGraphic_Reserved1(); sl@0: IMPORT_C virtual TInt CWsGraphic_Reserved2(); sl@0: IMPORT_C virtual TInt CWsGraphic_Reserved3(); sl@0: public: sl@0: class CManager; sl@0: private: sl@0: friend class CManager; sl@0: class CPimpl; sl@0: friend class CPimpl; sl@0: CPimpl* iPimpl; sl@0: TInt iWsGraphicSpare[2]; sl@0: }; sl@0: sl@0: class MWsClientClass sl@0: /** Base class for all classes whose objects are clients of the window server. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: friend class RTFXEffect; sl@0: public: sl@0: MWsClientClass(); sl@0: MWsClientClass(RWsBuffer *aBuffer); sl@0: inline TInt WsHandle() const; sl@0: protected: sl@0: void Write(const TAny *aData1,TInt aLength1,TInt aLength2,TUint aOpcode) const; sl@0: void Write(const TAny *aData, TInt aLength,const TAny *aData2, TInt aLength2,TUint aOpcode,const TIpcArgs* aIpcArgs=NULL) const; sl@0: void Write(const TAny *aBuf, TInt aBufLen,TUint aOpcode,const TIpcArgs* aIpcArgs=NULL) const; sl@0: void Write(TUint aOpcode) const; sl@0: void WriteInt(TInt aInt, TUint aOpcode) const; sl@0: void WriteRect(const TRect &aRect, TUint aOpcode) const; sl@0: void WritePoint(const TPoint &aPoint, TUint aOpcode) const; sl@0: void WriteSize(const TSize &aSize, TUint aOpcode) const; sl@0: TInt WriteReply(TUint aOpcode,const TIpcArgs* aIpcArgs=NULL) const; sl@0: TInt WriteReplyInt(TInt aInt, TUint aOpcode,const TIpcArgs* aIpcArgs=NULL) const; sl@0: TInt WriteReply(const TAny *aBuf, TInt aBufLen,TUint aOpcode,const TIpcArgs* aIpcArgs=NULL) const; sl@0: TInt WriteReply(const TAny *aBuf, TInt aBufLen,const TAny *aBuf2, TInt aBuflen2,TUint aOpcode,const TIpcArgs* aIpcArgs=NULL) const; sl@0: TInt WriteReplyP(const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const; sl@0: TInt WriteReplyIntP(TInt aInt, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const; sl@0: TInt WriteReplyP(const TAny *aBuf, TInt aBufLen, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const; sl@0: TInt WriteReplyP(const TAny *aBuf, TInt aBufLen,const TAny *aBuf2, TInt aBuflen2, const TWriteDescriptorType& aReplyPackage,TUint aOpcode) const; sl@0: TInt WriteReplyByProvidingRemoteReadAccess(const TAny* aBuf, TInt aBufLen,const TReadDescriptorType& aRemoteReadBuffer,TUint aOpcode) const; sl@0: void AddToBitmapArray(const TInt aBitmapHandle)const; sl@0: void AsyncRequest(TRequestStatus& aStatus, TUint aOpcode) const; sl@0: sl@0: TBool WindowSizeCacheEnabled() const; sl@0: void MarkWindowSizeCacheDirty(); sl@0: void RefreshWindowSizeCache(const TSize& aNewSize) const; sl@0: TInt CachedWindowSize(TSize& aSize) const; sl@0: void DestroyWindowSizeCacheEntry(); sl@0: sl@0: private: sl@0: void AppendData(const TAny *aData,TInt aLength,TBool aFinished); sl@0: sl@0: protected: sl@0: TInt32 iWsHandle; /**< WARNING: Member variable for internal use ONLY. Compatibility is not guaranteed in future releases. Please access using the provided get/set APIs only. */ sl@0: RWsBuffer *iBuffer; /**< WARNING: Member variable for internal use ONLY. Compatibility is not guaranteed in future releases. Please access using the provided get/set APIs only. */ sl@0: }; sl@0: sl@0: sl@0: class RWindowTreeNode; sl@0: class CWsScreenDevice; sl@0: class CWsBitmap; sl@0: class RAnimDll; sl@0: class RWsSpriteBase; sl@0: class RDirectScreenAccess; sl@0: class RSoundPlugIn; sl@0: sl@0: sl@0: class RWsSession : public MWsClientClass, public RSessionBase sl@0: /** Window server session. sl@0: sl@0: The session between the client and the window server can be used to mediate sl@0: asynchronous events, for client interface control and for system control. sl@0: A description of each of these capabilities is given below. sl@0: sl@0: Mediating asynchronous events: sl@0: sl@0: Primarily, the session mediates asynchronous events to the user. Three event sl@0: streams are available: the standard event stream which all applications must sl@0: use; the redraw event stream which must be used by all applications except sl@0: those which exclusively use backed-up windows; and the priority key event sl@0: stream which may be used for abort keys and the like for specialist applications. sl@0: sl@0: All these events are mediated as standard asynchronous services. Typical window sl@0: server client programs encapsulate each service they require in an active sl@0: object whose RunL() identifies the event and calls the appropriate member sl@0: function of a class associated with an application framework, or a window. sl@0: sl@0: Client interface control: sl@0: sl@0: The client's interface with the window server has several aspects, each of sl@0: which is controlled through the window server session. sl@0: sl@0: Flushing defines how requests to the window server are handled. sl@0: sl@0: System control: sl@0: sl@0: Many system-wide settings may be controlled through the window server session. sl@0: Typically, these functions are only used by the system shell and its associated sl@0: sessions/applications. They include: auto-repeat and double-click, querying sl@0: all window groups in the system, setting the default shadow vector, setting sl@0: the system pointer cursors, counting resources used by the window server sl@0: (this is only useful for debugging checks), getting and setting the state of sl@0: the modifier keys (for instance Shift and Ctrl), setting the window server sl@0: background colour, getting and setting thresholds for window server generated sl@0: pointer events. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: friend class RWsBuffer; sl@0: friend class RWindowTreeNode; sl@0: friend class CWsScreenDevice; sl@0: friend class CWsBitmap; sl@0: friend class RAnimDll; sl@0: friend class RWsSpriteBase; sl@0: friend class RDirectScreenAccess; sl@0: friend class RSoundPlugIn; sl@0: friend class CWsGraphic; sl@0: friend class RWsDrawableSource; sl@0: public: sl@0: /** Compute mode flags. sl@0: sl@0: When a window group takes focus or loses it, the window server can boost its sl@0: client's thread or process priority to provide a better response to the user. sl@0: How it alters the priority is determined by the current compute mode of the sl@0: client. sl@0: sl@0: @see ComputeMode() */ sl@0: enum TComputeMode sl@0: { sl@0: /** Client priority is permanently set to its current level. It is not altered sl@0: or set by the windowing system if the focus changes. sl@0: sl@0: Thus if ComputeMode() is called with this flag when a client is in the foreground, sl@0: it will subsequently have foreground priority even if it is in the background. */ sl@0: EPriorityControlDisabled, sl@0: /** Client process's priority is always set to EPriorityBackground. */ sl@0: EPriorityControlComputeOn, sl@0: /** Client process's priority is set to EPriorityForeground when the window group sl@0: takes focus, and set to EPriorityBackground when it loses focus. sl@0: sl@0: This is the default behaviour. */ sl@0: EPriorityControlComputeOff sl@0: }; sl@0: enum {ESystemInfoArraySize=16}; sl@0: /** Window server logging commands passed to LogCommand(). sl@0: sl@0: @see RWsSession::LogCommand() */ sl@0: enum TLoggingCommand sl@0: { sl@0: /** Enables logging. */ sl@0: ELoggingEnable, sl@0: /** Disables logging. */ sl@0: ELoggingDisable, sl@0: /** Logs the current status of all the windows in the tree, even if logging is sl@0: not currently enabled. */ sl@0: ELoggingStatusDump, //Window Tree Dump sl@0: /** Logs information about the window server's heap size and usage, even if logging sl@0: is not currently enabled. */ sl@0: ELoggingHeapDump, sl@0: }; sl@0: sl@0: struct TWindowGroupChainInfo sl@0: { sl@0: /*Stores id and Parent id window group sl@0: sl@0: This is used to define chained window groups's id and it's parent id. sl@0: An array of these structures is returned by some of the varients of the function WindowGroupList. sl@0: @publishedAll sl@0: @released */ sl@0: TInt iId; sl@0: TInt iParentId; sl@0: }; sl@0: sl@0: struct SSystemInfo sl@0: /** WARNING: Struct for internal use ONLY. Compatibility is not guaranteed in future releases. */ sl@0: { sl@0: TInt iInfo[ESystemInfoArraySize]; sl@0: }; sl@0: /** The vertical alignment of a custom text cursor sprite. sl@0: sl@0: One of these values must be set, see SetCustomTextCursor(). This value also sl@0: determines which part of each sprite member bitmap is clipped when the cursor's sl@0: TTextCursor::EFlagClipVertical flag is set. */ sl@0: enum TCustomTextCursorAlignment sl@0: { sl@0: /** The y-origin of each sprite member bitmap is aligned with the top of the line. */ sl@0: ECustomTextCursorAlignTop, sl@0: /** The y-origin of each sprite member bitmap is aligned with the baseline of the sl@0: line. */ sl@0: ECustomTextCursorAlignBaseline, sl@0: /** The y-origin of each sprite member bitmap is aligned with the bottom of the sl@0: line. */ sl@0: ECustomTextCursorAlignBottom sl@0: }; sl@0: sl@0: // sl@0: public: sl@0: IMPORT_C RWsSession(); sl@0: IMPORT_C TInt Connect(); sl@0: IMPORT_C TInt Connect(RFs& aFileServer); sl@0: IMPORT_C void Close(); sl@0: IMPORT_C TVersion Version() const; sl@0: sl@0: IMPORT_C TInt SetHotKey(THotKey aType, TUint aKeyCode, TUint aModifierMask, TUint aModifier); sl@0: IMPORT_C TInt ClearHotKeys(THotKey aType); sl@0: IMPORT_C TInt RestoreDefaultHotKey(THotKey aType); sl@0: // sl@0: IMPORT_C void EventReady(TRequestStatus *aStat); sl@0: IMPORT_C void EventReadyCancel(); sl@0: IMPORT_C void GetEvent(TWsEvent &aEvent) const; sl@0: IMPORT_C void PurgePointerEvents(); sl@0: // sl@0: IMPORT_C void RedrawReady(TRequestStatus *aStat); sl@0: IMPORT_C void RedrawReadyCancel(); sl@0: IMPORT_C void GetRedraw(TWsRedrawEvent &aEvent); sl@0: // sl@0: IMPORT_C void PriorityKeyReady(TRequestStatus *aStat); sl@0: IMPORT_C void PriorityKeyReadyCancel(); sl@0: IMPORT_C void GetPriorityKey(TWsPriorityKeyEvent &aEvent) const; sl@0: // sl@0: IMPORT_C void Flush(); sl@0: IMPORT_C TBool SetAutoFlush(TBool aState); sl@0: IMPORT_C TInt SetKeyboardRepeatRate(const TTimeIntervalMicroSeconds32 &aInitialTime, const TTimeIntervalMicroSeconds32 &aTime); sl@0: IMPORT_C void GetKeyboardRepeatRate(TTimeIntervalMicroSeconds32 &aInitialTime, TTimeIntervalMicroSeconds32 &aTime) const; sl@0: IMPORT_C void GetDoubleClickSettings(TTimeIntervalMicroSeconds32 &aInterval, TInt &aDistance) const; sl@0: IMPORT_C TInt SetDoubleClick(const TTimeIntervalMicroSeconds32 &aInterval, TInt aDistance); sl@0: // sl@0: IMPORT_C TInt NumWindowGroups() const; sl@0: IMPORT_C TInt WindowGroupList(CArrayFixFlat *aWindowList) const; sl@0: IMPORT_C TInt WindowGroupList(RArray* aWindowList) const; sl@0: IMPORT_C TInt NumWindowGroups(TInt aPriority) const; sl@0: IMPORT_C TInt WindowGroupList(TInt aPriority, CArrayFixFlat *aWindowList) const; sl@0: IMPORT_C TInt WindowGroupList(TInt aPriority, RArray* aWindowList) const; sl@0: IMPORT_C TInt GetFocusWindowGroup() const; sl@0: IMPORT_C TInt GetDefaultOwningWindow() const; sl@0: IMPORT_C TInt SetWindowGroupOrdinalPosition(TInt aIdentifier, TInt aPosition); sl@0: IMPORT_C TInt GetWindowGroupClientThreadId(TInt aIdentifier, TThreadId &aThreadId) const; sl@0: IMPORT_C TInt GetWindowGroupHandle(TInt aIdentifier) const; sl@0: IMPORT_C TInt GetWindowGroupOrdinalPriority(TInt aIdentifier) const; sl@0: IMPORT_C TInt SendEventToWindowGroup(TInt aIdentifier, const TWsEvent &aEvent); sl@0: IMPORT_C TInt SendEventToAllWindowGroups(const TWsEvent &aEvent); sl@0: IMPORT_C TInt SendEventToAllWindowGroups(TInt aPriority, const TWsEvent &aEvent); sl@0: IMPORT_C TInt SendEventToOneWindowGroupsPerClient(const TWsEvent &aEvent); sl@0: IMPORT_C TInt GetWindowGroupNameFromIdentifier(TInt aIdentifier, TDes &aWindowName) const; sl@0: IMPORT_C TInt FindWindowGroupIdentifier(TInt aPreviousIdentifier,const TDesC& aMatch,TInt aOffset=0) const; sl@0: IMPORT_C TInt FindWindowGroupIdentifier(TInt aPreviousIdentifier,TThreadId aThreadId) const; sl@0: IMPORT_C TInt SendMessageToWindowGroup(TInt aIdentifier, TUid aUid, const TDesC8 &aParams); sl@0: IMPORT_C TInt SendMessageToAllWindowGroups(TUid aUid, const TDesC8& aParams); sl@0: IMPORT_C TInt SendMessageToAllWindowGroups(TInt aPriority, TUid aUid, const TDesC8& aParams); sl@0: IMPORT_C TInt FetchMessage(TUid &aUid, TPtr8 &aParams, const TWsEvent& aMessageEvent) const; sl@0: // sl@0: IMPORT_C void SetShadowVector(const TPoint &aVector); sl@0: IMPORT_C TPoint ShadowVector() const; sl@0: // sl@0: IMPORT_C void SetBackgroundColor(TRgb aColor); sl@0: IMPORT_C TRgb GetBackgroundColor() const; sl@0: // sl@0: IMPORT_C TInt RegisterSurface(TInt aScreenNumber, const TSurfaceId& aSurface); sl@0: IMPORT_C void UnregisterSurface(TInt aScreenNumber, const TSurfaceId& aSurface); sl@0: IMPORT_C TInt PreferredSurfaceConfigurationSize() const; sl@0: // sl@0: IMPORT_C TInt SetSystemPointerCursor(const RWsPointerCursor &aPointerCursor,TInt aCursorNumber); sl@0: IMPORT_C void ClearSystemPointerCursor(TInt aCursorNumber); sl@0: IMPORT_C TInt ClaimSystemPointerCursorList(); sl@0: IMPORT_C void FreeSystemPointerCursorList(); sl@0: // sl@0: IMPORT_C TInt SetCustomTextCursor(TInt aIdentifier, const TArray& aSpriteMemberArray, TUint aSpriteFlags, TCustomTextCursorAlignment aAlignment); sl@0: // sl@0: IMPORT_C TInt ResourceCount() const; sl@0: IMPORT_C void PasswordEntered(); sl@0: IMPORT_C void ComputeMode(TComputeMode aMode); sl@0: // sl@0: IMPORT_C TInt HeapCount() const; sl@0: IMPORT_C TInt DebugInfo(TInt aFunction, TInt aParam=0) const; sl@0: IMPORT_C TInt DebugInfo(TInt aFunction, TDes8& aReturnBuf, TInt aParam=0) const; sl@0: IMPORT_C void HeapSetFail(TInt aTAllocFail,TInt aValue); sl@0: IMPORT_C void HeapSetBurstFail(TInt aTAllocFail,TInt aRate,TInt aBurst); sl@0: IMPORT_C TInt SetModifierState(TEventModifier aModifier,TModifierState aState); sl@0: IMPORT_C TInt GetModifierState() const; sl@0: // sl@0: IMPORT_C TInt RequestOffEvents(TBool aOn,RWindowTreeNode *aWin=NULL); sl@0: IMPORT_C TDisplayMode GetDefModeMaxNumColors(TInt& aColor,TInt& aGray) const; sl@0: IMPORT_C TInt GetColorModeList(CArrayFixFlat *aModeList) const; sl@0: // sl@0: IMPORT_C void SetPointerCursorArea(const TRect& aArea); sl@0: IMPORT_C void SetPointerCursorArea(TInt aScreenSizeMode,const TRect& aArea); sl@0: IMPORT_C TRect PointerCursorArea() const; sl@0: IMPORT_C TRect PointerCursorArea(TInt aScreenSizeMode) const; sl@0: IMPORT_C void SetPointerCursorMode(TPointerCursorMode aMode); sl@0: IMPORT_C TInt SetClientCursorMode(TPointerCursorMode aMode); sl@0: IMPORT_C TPointerCursorMode PointerCursorMode() const; sl@0: IMPORT_C void SetDefaultSystemPointerCursor(TInt aCursorNumber); sl@0: IMPORT_C void ClearDefaultSystemPointerCursor(); sl@0: IMPORT_C TInt SetPointerCursorPosition(const TPoint& aPosition); sl@0: IMPORT_C TPoint PointerCursorPosition() const; sl@0: sl@0: IMPORT_C void SetDefaultFadingParameters(TUint8 aBlackMap,TUint8 aWhiteMap); sl@0: IMPORT_C void PrepareForSwitchOff(); sl@0: IMPORT_C void SetBufferSizeL(TInt aBufSize); sl@0: IMPORT_C void SetMaxBufferSizeL(TInt aMaxBufSize); sl@0: IMPORT_C TInt SetSystemFaded(TBool aFaded); sl@0: IMPORT_C TInt SetSystemFaded(TBool aFaded,TUint8 aBlackMap,TUint8 aWhiteMap); sl@0: sl@0: // Functions for multiple screens sl@0: IMPORT_C TInt SetFocusScreen(TInt aScreenNumber); sl@0: IMPORT_C TInt GetFocusScreen() const; sl@0: IMPORT_C void ClearAllRedrawStores(); sl@0: IMPORT_C TInt NumWindowGroups(TInt aScreenNumber,TInt aPriority) const; sl@0: IMPORT_C TInt NumberOfScreens() const; sl@0: IMPORT_C TInt WindowGroupList(CArrayFixFlat* aWindowList,TInt aScreenNumber,TInt aPriority=EAllPriorities) const; sl@0: IMPORT_C TInt GetFocusWindowGroup(TInt aScreenNumber) const; sl@0: IMPORT_C TInt GetDefaultOwningWindow(TInt aScreenNumber) const; sl@0: IMPORT_C TDisplayMode GetDefModeMaxNumColors(TInt aScreenNumber,TInt& aColor,TInt& aGray) const; sl@0: IMPORT_C TInt GetColorModeList(TInt aScreenNumber,CArrayFixFlat* aModeList) const; sl@0: #if defined(__WINS__) sl@0: // Function for WINS behaviour only sl@0: IMPORT_C void SetRemoveKeyCode(TBool aRemove); sl@0: IMPORT_C void SimulateXyInputType(TInt aInputType); //Only for testing WSERV sl@0: #endif sl@0: // sl@0: IMPORT_C void SimulateRawEvent(TRawEvent aEvent); sl@0: IMPORT_C void SimulateKeyEvent(TKeyEvent aEvent); sl@0: IMPORT_C void LogCommand(TLoggingCommand aCommand); sl@0: IMPORT_C void LogMessage(const TLogMessageText &aMessage); sl@0: sl@0: // Functions for test code use only sl@0: IMPORT_C void SystemInfo(TInt &aSystemInfoNumber, SSystemInfo &aSystemInfo); sl@0: IMPORT_C void TestWrite(TInt aHandle,TInt aOpcode,const TAny *aData, TInt aLength); sl@0: IMPORT_C void TestWriteReply(TInt aHandle,TInt aOpcode,const TAny *aData, TInt aLength); sl@0: IMPORT_C void TestWriteReplyP(TInt aHandle,TInt aOpcode,const TAny *aData,TInt aLength,TDes8 *aReplyPackage); sl@0: IMPORT_C TInt TestWriteReplyByProvidingRemoteReadAccess(TInt aHandle,TInt aOpcode,const TDesC8& aData,const TDesC8& aRemoteReadBuffer); sl@0: IMPORT_C TInt TestWriteReplyByProvidingRemoteReadAccess(TInt aHandle,TInt aOpcode,const TDesC8& aData,const TDesC16& aRemoteReadBuffer); sl@0: sl@0: IMPORT_C TInt Finish(); sl@0: IMPORT_C void SyncMsgBuf(); sl@0: sl@0: // Getters and setters for pointer event's thresholds sl@0: IMPORT_C TInt SetCloseProximityThresholds(TInt aEnterCloseProximityThreshold, TInt aExitCloseProximityThreshold); sl@0: IMPORT_C TInt GetEnterCloseProximityThreshold() const; sl@0: IMPORT_C TInt GetExitCloseProximityThreshold() const; sl@0: IMPORT_C TInt SetHighPressureThresholds(TInt aEnterHighPressureThreshold, TInt aExitHighPressureThreshold); sl@0: IMPORT_C TInt GetEnterHighPressureThreshold() const; sl@0: IMPORT_C TInt GetExitHighPressureThreshold() const; sl@0: // sl@0: IMPORT_C void EnableWindowSizeCacheL(); sl@0: IMPORT_C void SendEffectCommand(TInt aTfxCmd, const TDesC8& aTfxCmdData=KNullDesC8); sl@0: sl@0: // Registering/Unregistering of TFX effect, to allow animations to be associated with each transition sl@0: IMPORT_C void RegisterEffect(TInt aAction, TInt aPurpose, const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming, TUint aAppUid=0, TBitFlags aFlags=0); sl@0: IMPORT_C void UnregisterEffect(TInt aAction, TInt aPurpose, TUint aAppUid=0); sl@0: IMPORT_C void UnregisterAllEffects(); sl@0: IMPORT_C void OverrideEffects(TInt aAction, TInt aPurpose, const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming, TBitFlags aFlags=0); sl@0: sl@0: //Application tells the window server the orientation of rendering it intends to use sl@0: IMPORT_C void IndicateAppOrientation(TRenderOrientation aOrientation); sl@0: sl@0: // functions not exported, used by CWsGraphic sl@0: void GraphicMessageReady(TRequestStatus *aStat); sl@0: void GetGraphicMessage(TDes8& aData) const; sl@0: void GraphicMessageCancel(); sl@0: void GraphicAbortMessage(TInt aError); sl@0: TInt GraphicFetchHeaderMessage(); sl@0: private: sl@0: TInt doWindowGroupList(TInt aPriority, RArray* aWindowListCh, TInt aNumOpcode, TInt aListOpcode) const; sl@0: TInt doWindowGroupList(TInt aScreenNumber, TInt aPriority, CArrayFixFlat* aWindowListId, TInt aNumOpcode, TInt aListOpcode) const; sl@0: TInt doSetHotKey(TInt aOpcode, TInt aType, TUint aKeycode, TUint aModifierMask, TUint aModifiers); sl@0: void doReadEvent(TRequestStatus *aStat, TInt aOpcode); sl@0: sl@0: private: sl@0: void connectL(); sl@0: TInt DoFlush(const TIpcArgs& aIpcArgs); sl@0: TInt DoSyncMsgBuf(const TIpcArgs& aIpcArgs); sl@0: void DirectAcessActivation(TBool aIsNowActive); sl@0: }; sl@0: sl@0: class RWindowGroup; sl@0: class RWsSprite; sl@0: sl@0: sl@0: class RWindowTreeNode : public MWsClientClass sl@0: /** A handle to a node in the server-side window tree. sl@0: sl@0: This handle class is used as the base for both window groups and the windows sl@0: within them; it is not intended for user derivation, and may not be directly sl@0: constructed: use one of the standard derived classes instead. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: friend class RWindowGroup; sl@0: friend class RWindowBase; sl@0: friend class CWindowGc; sl@0: friend class RAnimDll; sl@0: friend class RWsSprite; sl@0: public: sl@0: /** Fade control flags. sl@0: sl@0: These flags define whether fading is applied to all child windows when SetFaded() sl@0: is called on a window. */ sl@0: enum TFadeControl sl@0: { sl@0: /** Include all child windows when fading/un-fading. */ sl@0: EFadeIncludeChildren=ETrue, sl@0: /** Fade only the parent window. sl@0: sl@0: Note that a panic will occur if this value is used when SetFaded() is called sl@0: on a window group. */ sl@0: EFadeWindowOnly=EFalse, sl@0: }; sl@0: protected: sl@0: RWindowTreeNode(); sl@0: RWindowTreeNode(RWsSession &aWs); sl@0: public: sl@0: IMPORT_C void Close(); sl@0: IMPORT_C void Destroy(); sl@0: IMPORT_C TUint32 ClientHandle() const; sl@0: IMPORT_C TUint32 Parent() const; sl@0: IMPORT_C TUint32 PrevSibling() const; sl@0: IMPORT_C TUint32 NextSibling() const; sl@0: IMPORT_C TUint32 Child() const; sl@0: IMPORT_C TInt OrdinalPriority() const; sl@0: IMPORT_C TInt OrdinalPosition() const; sl@0: IMPORT_C TInt FullOrdinalPosition() const; sl@0: IMPORT_C void SetOrdinalPosition(TInt aPos); sl@0: IMPORT_C void SetOrdinalPosition(TInt aPos,TInt aOrdinalPriority); sl@0: IMPORT_C TInt ScreenNumber() const; sl@0: IMPORT_C TInt WindowGroupId() const; sl@0: IMPORT_C TInt SetPointerCursor(TInt aCursorNumber); sl@0: IMPORT_C void SetCustomPointerCursor(const RWsPointerCursor &aPointerCursor); sl@0: IMPORT_C TInt EnableOnEvents(TEventControl aCircumstances=EEventControlOnlyWithKeyboardFocus); sl@0: IMPORT_C void DisableOnEvents(); sl@0: IMPORT_C TInt EnableGroupChangeEvents(); sl@0: IMPORT_C void DisableGroupChangeEvents(); sl@0: IMPORT_C TInt EnableFocusChangeEvents(); sl@0: IMPORT_C void DisableFocusChangeEvents(); sl@0: IMPORT_C TInt EnableGroupListChangeEvents(); sl@0: IMPORT_C void DisableGroupListChangeEvents(); sl@0: IMPORT_C TInt EnableVisibilityChangeEvents(); sl@0: IMPORT_C void DisableVisibilityChangeEvents(); sl@0: IMPORT_C TInt EnableErrorMessages(TEventControl aCircumstances); sl@0: IMPORT_C void DisableErrorMessages(); sl@0: IMPORT_C TInt EnableModifierChangedEvents(TUint aModifierMask, TEventControl aCircumstances); sl@0: IMPORT_C void DisableModifierChangedEvents(); sl@0: IMPORT_C void SetNonFading(TBool aNonFading); sl@0: IMPORT_C void SetFaded(TBool aFaded,TFadeControl aIncludeChildren); sl@0: IMPORT_C void SetFaded(TBool aFaded,TFadeControl aIncludeChildren,TUint8 aBlackMap,TUint8 aWhiteMap); sl@0: IMPORT_C void ClearPointerCursor(); sl@0: IMPORT_C RWsSession* Session() const; sl@0: protected: sl@0: __DECLARE_TEST; sl@0: }; sl@0: sl@0: sl@0: class TSurfaceId; sl@0: class TSurfaceConfiguration; sl@0: sl@0: class RWindowBase : public RWindowTreeNode sl@0: /** Client-side handle to a server-side window. sl@0: sl@0: The server-side windows of handles derived from this class can be displayed sl@0: on the device's screen, and associated with pointer events. sl@0: sl@0: This class is not for user derivation; however derived classes form part of sl@0: the Window Server API. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: /** Capture behaviour flags. sl@0: sl@0: @see SetPointerCapture() sl@0: @see EEventDragDrop */ sl@0: enum TCaptureFlags sl@0: { sl@0: // Flags, these can be combined to customise pointer capture sl@0: /** If set, capture is enabled, disabled otherwise. */ sl@0: TCaptureFlagEnabled=0x01, sl@0: /** If set, drag-drop events are sent to the window in which the pointer was lifted. sl@0: Drag-drop is a tap-drag-lift sequence. */ sl@0: TCaptureFlagDragDrop=0x02, sl@0: /** Capture events from windows belonging to any group, not just the group of the sl@0: window on which the flag was set */ sl@0: TCaptureFlagAllGroups=0x04, sl@0: // States, made up of a set of flags sl@0: /** Equivalent to disabling all the above flags. */ sl@0: TCaptureDisabled=0, sl@0: /** Equivalent to TCaptureFlagEnabled. */ sl@0: TCaptureEnabled=TCaptureFlagEnabled, sl@0: /** Equivalent to the OR of the first three flags. */ sl@0: TCaptureDragDrop=TCaptureFlagEnabled|TCaptureFlagDragDrop|TCaptureFlagAllGroups, sl@0: }; sl@0: protected: sl@0: RWindowBase(); sl@0: RWindowBase(RWsSession &aWs); sl@0: public: sl@0: IMPORT_C void Activate(); sl@0: IMPORT_C void SetPosition(const TPoint &point); sl@0: IMPORT_C TInt SetSizeErr(const TSize &size); sl@0: IMPORT_C TInt SetExtentErr(const TPoint &point,const TSize &size); sl@0: IMPORT_C TSize Size() const; sl@0: IMPORT_C TPoint InquireOffset(const RWindowTreeNode &aWindow) const; sl@0: IMPORT_C void PointerFilter(TUint32 aFilterMask, TUint32 aFilter); sl@0: IMPORT_C void SetPointerGrab(TBool aState); sl@0: IMPORT_C void ClaimPointerGrab(TBool aSendUpEvent=ETrue); sl@0: IMPORT_C TInt ClaimPointerGrab(const TUint8 aPointerNumber, const TBool aSendUpEvent=ETrue); sl@0: IMPORT_C void SetPointerCapture(TInt aFlags); sl@0: IMPORT_C void SetPointerCapturePriority(TInt aPriority); sl@0: IMPORT_C TInt GetPointerCapturePriority() const; sl@0: IMPORT_C void SetVisible(TBool aState); sl@0: IMPORT_C void SetShadowHeight(TInt aHeight); sl@0: IMPORT_C void SetShadowDisabled(TBool aState); sl@0: IMPORT_C TPoint Position() const; sl@0: IMPORT_C TPoint AbsPosition() const; sl@0: IMPORT_C TInt SetCornerType(TCornerType aCornerType, TInt aCornerFlags=0); sl@0: IMPORT_C TInt SetShape(const TRegion &aRegion); sl@0: IMPORT_C TInt SetRequiredDisplayMode(TDisplayMode aMode); sl@0: IMPORT_C TDisplayMode DisplayMode() const; sl@0: IMPORT_C void EnableBackup(TUint aBackupType=EWindowBackupAreaBehind); sl@0: IMPORT_C void RequestPointerRepeatEvent(TTimeIntervalMicroSeconds32 aTime,const TRect &aRect); sl@0: IMPORT_C void CancelPointerRepeatEventRequest(); sl@0: IMPORT_C TInt RequestPointerRepeatEvent(TTimeIntervalMicroSeconds32 aTime,const TRect &aRect, const TUint8 aPointerNumber); //< @prototype sl@0: IMPORT_C TInt CancelPointerRepeatEventRequest(const TUint8 aPointerNumber); //< @prototype sl@0: IMPORT_C TInt AllocPointerMoveBuffer(TInt aMaxPoints, TUint aFlags); sl@0: IMPORT_C void FreePointerMoveBuffer(); sl@0: IMPORT_C void EnablePointerMoveBuffer(); sl@0: IMPORT_C void DisablePointerMoveBuffer(); sl@0: IMPORT_C TInt RetrievePointerMoveBuffer(TDes8 &aBuf) const; sl@0: IMPORT_C void DiscardPointerMoveBuffer(); sl@0: IMPORT_C TInt AddKeyRect(const TRect &aRect, TInt aScanCode, TBool aActivatedByPointerSwitchOn); sl@0: IMPORT_C void RemoveAllKeyRects(); sl@0: IMPORT_C TInt PasswordWindow(TPasswordMode aPasswordMode); sl@0: IMPORT_C void FadeBehind(TBool aFade); sl@0: IMPORT_C TBool IsFaded() const; sl@0: IMPORT_C TBool IsNonFading() const; sl@0: IMPORT_C TInt MoveToGroup(TInt aIdentifier); sl@0: IMPORT_C TInt SetBackgroundSurface(const TSurfaceId& aSurface); sl@0: IMPORT_C TInt SetBackgroundSurface(const TSurfaceConfiguration& aConfiguration, TBool aTriggerRedraw); sl@0: IMPORT_C void RemoveBackgroundSurface(TBool aTriggerRedraw); sl@0: IMPORT_C TInt GetBackgroundSurface(TSurfaceConfiguration& aConfiguration) const; sl@0: IMPORT_C void SetSurfaceTransparency(TBool aSurfaceTransparency); sl@0: IMPORT_C TRgb KeyColor() const; sl@0: IMPORT_C void EnableAdvancedPointers(); sl@0: IMPORT_C void SetPurpose(TInt aPurpose); sl@0: IMPORT_C void SendEffectCommand(TInt aTfxCmd, const TDesC8& aTfxCmdData=KNullDesC8); sl@0: IMPORT_C void OverrideEffects(TInt aAction, const TFileName& aResourceDir, const TFileName& aFilenameOutgoing, const TFileName& aFilenameIncoming, TBitFlags aFlags=0); sl@0: IMPORT_C TInt FixNativeOrientation(); sl@0: IMPORT_C TSize SizeForEgl() const; sl@0: protected: sl@0: TInt construct(const RWindowTreeNode &parent,TUint32 aHandle, TInt aType, TDisplayMode aDisplayMode); sl@0: }; sl@0: sl@0: sl@0: class RBlankWindow : public RWindowBase sl@0: /** Blank window. sl@0: sl@0: A blank window may have its extent and colour changed, but nothing else may sl@0: be drawn to it. Blank windows provide no functionality that is not provided sl@0: by the RWindow class. However, they are useful when the application requires sl@0: a window that cannot be drawn to, for example a container window. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: IMPORT_C RBlankWindow(); sl@0: IMPORT_C RBlankWindow(RWsSession &aWs); sl@0: IMPORT_C TInt Construct(const RWindowTreeNode &parent, TUint32 aHandle); sl@0: IMPORT_C void SetColor(TRgb aColor); sl@0: IMPORT_C void SetColor(); sl@0: IMPORT_C void SetSize(const TSize &size); sl@0: IMPORT_C void SetExtent(const TPoint &point,const TSize &size); sl@0: }; sl@0: sl@0: sl@0: class RDrawableWindow : public RWindowBase sl@0: /** Handle to a drawable window. sl@0: sl@0: This class cannot be constructed directly. sl@0: The two concrete derived classes, RWindow and RBackedUpWindow, allow sl@0: drawing but use different protocols because RWindow relies on the client to sl@0: redraw invalid areas. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: protected: sl@0: RDrawableWindow(); sl@0: RDrawableWindow(RWsSession &aWs); sl@0: public: sl@0: IMPORT_C void Scroll(const TPoint &aOffset); sl@0: IMPORT_C void Scroll(const TRect &aClipRect, const TPoint &aOffset); sl@0: IMPORT_C void Scroll(const TPoint &aOffset, const TRect &aRect); sl@0: IMPORT_C void Scroll(const TRect &aClipRect, const TPoint &aOffset, const TRect &aRect); sl@0: IMPORT_C TRect GetDrawRect() const; sl@0: protected: sl@0: void SetDrawRect(const TRect &aRect); sl@0: private: sl@0: void doScroll(const TRect &aClipRect, const TPoint &aOffset, const TRect &aRect, TInt aOpcode); sl@0: sl@0: TRect iDrawRect; sl@0: }; sl@0: sl@0: /** Transparency policies sl@0: sl@0: These policies are to control the behaviour of a transparent window. sl@0: @publishedAll sl@0: @released sl@0: @see RWindow::SetTransparencyPolicy() */ sl@0: enum TWsTransparencyPolicy { sl@0: /** Default behaviour. */ sl@0: ETransparencyDefault, sl@0: /** Freeze the content of underneath the transparent window to prevent redraw everytime sl@0: the overlying window changes. */ sl@0: ETransparencyFreezeUnder, sl@0: }; sl@0: sl@0: class RWindow : public RDrawableWindow sl@0: /** Handle to a standard window. sl@0: sl@0: An RWindow is a handle to a server-side window which can be displayed and sl@0: drawn to, and whose redraws are performed by the application. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: IMPORT_C RWindow(); sl@0: IMPORT_C RWindow(RWsSession &aWs); sl@0: IMPORT_C TInt Construct(const RWindowTreeNode &parent,TUint32 aHandle); sl@0: IMPORT_C void BeginRedraw(); sl@0: IMPORT_C void BeginRedraw(const TRect &aRect); sl@0: IMPORT_C void EndRedraw(); sl@0: IMPORT_C void Invalidate(); sl@0: IMPORT_C void Invalidate(const TRect &aRect); sl@0: IMPORT_C void GetInvalidRegion(RRegion &aRegion) const; sl@0: IMPORT_C void SetBackgroundColor(TRgb aColor); sl@0: IMPORT_C void SetBackgroundColor(); sl@0: IMPORT_C void SetSize(const TSize &size); sl@0: IMPORT_C void SetExtent(const TPoint &point,const TSize &size); sl@0: IMPORT_C void HandleTransparencyUpdate(); sl@0: IMPORT_C TInt SetTransparencyFactor(const TRgb& aTransparencyFactor); sl@0: IMPORT_C TInt SetTransparencyBitmap(const CFbsBitmap& aTransparencyBitmap); sl@0: IMPORT_C TInt SetTransparencyWsBitmap(const CWsBitmap& aTransparencyBitmap); sl@0: IMPORT_C void SetNonTransparent(); sl@0: IMPORT_C void EnableRedrawStore(TBool aEnabled); sl@0: IMPORT_C TInt SetTransparencyAlphaChannel(); sl@0: IMPORT_C TInt SetTransparentRegion(const TRegion& aRegion); sl@0: IMPORT_C TInt SetTransparencyPolicy(TWsTransparencyPolicy aPolicy); sl@0: IMPORT_C TBool IsRedrawStoreEnabled() const; sl@0: IMPORT_C void EnableOSB(TBool); sl@0: IMPORT_C void ClearRedrawStore(); sl@0: }; sl@0: sl@0: sl@0: class RBackedUpWindow : public RDrawableWindow sl@0: /** Client-side handle to a drawable window with a backup bitmap. sl@0: sl@0: A backed-up window is associated with a backup bitmap which retains the contents sl@0: of the window. When an area of the window is invalidated, the window server sl@0: uses the bitmap directly to update the window without requiring an application sl@0: redraw. The backup bitmap is owned by the font and bitmap server and resides sl@0: on the font and bitmap server's shared heap, which is accessible to all client sl@0: programs: functions are provided to allow the client application to access sl@0: this bitmap directly and perform updates to the window under application control. sl@0: sl@0: @publishedAll sl@0: @deprecated sl@0: */ sl@0: { sl@0: public: sl@0: IMPORT_C RBackedUpWindow(); sl@0: IMPORT_C RBackedUpWindow(RWsSession &aWs); sl@0: IMPORT_C TInt Construct(const RWindowTreeNode &parent,TDisplayMode aDisplayMode, TUint32 aHandle); sl@0: IMPORT_C TInt BitmapHandle() const; sl@0: IMPORT_C void UpdateScreen(); sl@0: IMPORT_C void UpdateScreen(const TRegion &aRegion); sl@0: IMPORT_C void UpdateBackupBitmap(); sl@0: IMPORT_C void MaintainBackup(); sl@0: }; sl@0: sl@0: sl@0: class RWindowGroup : public RWindowTreeNode sl@0: /** Client-side handle to a server-side window group. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: IMPORT_C RWindowGroup(); sl@0: IMPORT_C RWindowGroup(RWsSession &aWs); sl@0: IMPORT_C TInt Construct(TUint32 aClientHandle); sl@0: IMPORT_C TInt Construct(TUint32 aClientHandle,CWsScreenDevice* aScreenDevice); sl@0: IMPORT_C TInt Construct(TUint32 aClientHandle,TBool aIsFocusable,CWsScreenDevice* aScreenDevice); sl@0: IMPORT_C TInt Construct(TUint32 aClientHandle,TBool aIsFocusable); sl@0: IMPORT_C TInt ConstructChildApp(TInt aIdOfParentWindowGroup,TUint32 aClientHandle); sl@0: IMPORT_C TInt ConstructChildApp(TInt aIdOfParentWindowGroup,TUint32 aClientHandle,TBool aIsFocusable); sl@0: IMPORT_C void AllowProcessToCreateChildWindowGroups(TUid aProcessSID); sl@0: IMPORT_C void EnableReceiptOfFocus(TBool aState); sl@0: IMPORT_C void AutoForeground(TBool aState); sl@0: IMPORT_C void SetOrdinalPriorityAdjust(TInt aAdjust); sl@0: IMPORT_C TInt SetOrdinalPositionErr(TInt aPos,TInt aOrdinalPriority); sl@0: IMPORT_C TInt32 CaptureKey(TUint aKeycode, TUint aModifierMask, TUint aModifier); sl@0: IMPORT_C TInt32 CaptureKey(TUint aKeycode, TUint aModifierMask, TUint aModifier, TInt aPriority); sl@0: IMPORT_C void CancelCaptureKey(TInt32 aCaptureKey); sl@0: IMPORT_C TInt32 CaptureKeyUpAndDowns(TUint aScanCode, TUint aModifierMask, TUint aModifier); sl@0: IMPORT_C TInt32 CaptureKeyUpAndDowns(TUint aScanCode, TUint aModifierMask, TUint aModifier, TInt aPriority); sl@0: IMPORT_C void CancelCaptureKeyUpAndDowns(TInt32 aCaptureKey); sl@0: IMPORT_C TInt32 CaptureLongKey(TUint aInputKeyCode,TUint aOutputKeyCode,TUint aModifierMask,TUint aModifier sl@0: ,TInt aPriority,TUint aFlags); sl@0: IMPORT_C TInt32 CaptureLongKey(TTimeIntervalMicroSeconds32 aRepeatTime,TUint aInputKeyCode,TUint aOutputKeyCode sl@0: ,TUint aModifierMask,TUint aModifier,TInt aPriority,TUint aFlags); sl@0: IMPORT_C void CancelCaptureLongKey(TInt32 aCaptureKey); sl@0: IMPORT_C TInt AddPriorityKey(TUint aKeycode, TUint aModifierMask, TUint aModifier); sl@0: IMPORT_C void RemovePriorityKey(TUint aKeycode, TUint aModifierMask, TUint aModifier); sl@0: IMPORT_C void SetTextCursor(RWindowBase &aWin, const TPoint &aPos, const TTextCursor &aCursor); sl@0: IMPORT_C void SetTextCursor(RWindowBase &aWin, const TPoint &aPos, const TTextCursor &aCursor, const TRect &aClipRect); sl@0: IMPORT_C void CancelTextCursor(); sl@0: IMPORT_C void SetOwningWindowGroup(TInt aIdentifier); sl@0: IMPORT_C void DefaultOwningWindow(); sl@0: IMPORT_C TInt SetName(const TDesC &aName); sl@0: IMPORT_C TInt Name(TDes &aWindowName) const; sl@0: IMPORT_C TInt Identifier() const; sl@0: IMPORT_C void DisableKeyClick(TBool aState); sl@0: IMPORT_C TInt EnableScreenChangeEvents(); sl@0: IMPORT_C void DisableScreenChangeEvents(); sl@0: IMPORT_C void SimulatePointerEvent(TRawEvent aEvent); sl@0: IMPORT_C void SimulateAdvancedPointerEvent(TRawEvent aEvent); sl@0: IMPORT_C TInt ClearChildGroup(); sl@0: IMPORT_C TInt SetChildGroup(TInt aId); sl@0: private: sl@0: TInt32 doCaptureKey(TUint aKey, TUint aModifierMask, TUint aModifiers, TInt aPriority, TInt aOpcode); sl@0: void doCancelCaptureKey(TInt32 aCaptureKeyHandle, TInt aOpcode); sl@0: TInt Construct(TInt aIdOfParentWindowGroup, TUint32 aClientHandle, TBool aIsFocusable, CWsScreenDevice* aScreenDevice); sl@0: }; sl@0: sl@0: sl@0: class CWsBitmap : public CFbsBitmap, public MWsClientClass sl@0: /** Window server bitmap. sl@0: sl@0: This is a bitmap to which the window server already has a handle. Functions sl@0: which take a window server bitmap are faster than equivalent functions which sl@0: take a CFbsBitmap. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: IMPORT_C CWsBitmap(); sl@0: IMPORT_C CWsBitmap(RWsSession &aWs); sl@0: IMPORT_C ~CWsBitmap(); sl@0: IMPORT_C TInt Create(const TSize& aSizeInPixels,TDisplayMode aDispMode); sl@0: IMPORT_C TInt Duplicate(TInt aHandle); sl@0: IMPORT_C TInt Load(const TDesC& aFileName,TInt32 aId,TBool aShareIfLoaded=ETrue); sl@0: IMPORT_C void InternalizeL(RReadStream& aStream); sl@0: IMPORT_C void Reset(); sl@0: private: sl@0: TInt createWsBitmap(TInt aErr); sl@0: }; sl@0: sl@0: class RWsGraphicMsgBuf; sl@0: sl@0: class TWsGraphicMsgFixedBase sl@0: /** Base class for fixed-size messages to be attached to CWindowGc::DrawWsGraphic commands sl@0: @publishedAll sl@0: @released sl@0: */ { sl@0: public: sl@0: IMPORT_C TPtrC8 Pckg() const; sl@0: IMPORT_C TUid TypeId() const; sl@0: IMPORT_C TInt Size() const; sl@0: protected: sl@0: IMPORT_C TWsGraphicMsgFixedBase(TUid aTypeId,TInt aSizeOfDerived); sl@0: private: sl@0: const TUid iTypeId; sl@0: const TInt iSize; sl@0: }; sl@0: sl@0: class RWsGraphicMsgBuf: private RBuf8 sl@0: /** Utility class for building data buffers to be attached to CWindowGc::DrawWsGraphic commands sl@0: Useful when there is more than one piece of data to be attached to the draw command sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: IMPORT_C RWsGraphicMsgBuf(); sl@0: using RBuf8::Close; sl@0: using RBuf8::CleanupClosePushL; sl@0: IMPORT_C TInt Append(TUid aTypeId,const TDesC8& aData); sl@0: IMPORT_C TInt Append(TUid aTypeId,const TDesC16& aData); sl@0: IMPORT_C TInt Append(TUid aTypeId,TInt aLen,TPtr8& aPtr); sl@0: IMPORT_C TInt Append(const TWsGraphicMsgFixedBase& aMsg); sl@0: IMPORT_C void Remove(TInt aIndex); sl@0: IMPORT_C TInt Count() const; sl@0: IMPORT_C TUid TypeId(TInt aIndex) const; sl@0: IMPORT_C TPtrC8 Data(TInt aIndex) const; sl@0: IMPORT_C TPtr8 Data(TInt aIndex); sl@0: IMPORT_C void GetFixedMsg(TWsGraphicMsgFixedBase& aMsg,TInt aIndex) const; sl@0: IMPORT_C const TDesC8& Pckg() const; sl@0: private: sl@0: TInt ExpandForAppend(TInt aDataLen); sl@0: void WriteHeader(TUid aUid,TInt aLen); sl@0: TInt IntAt(TInt aOfs) const; sl@0: private: sl@0: TInt iRMsgBufSpare[2]; sl@0: }; sl@0: sl@0: sl@0: class CWindowGc : public CBitmapContext, public MWsClientClass sl@0: /** Window graphics context. sl@0: sl@0: Most window graphics context drawing functions map to equivalent CFbsBitGc sl@0: functions. They are implemented on the screen with any co-ordinates being sl@0: relative to the top left corner of the window. However extra clipping is applied. sl@0: The drawing will always be clipped to the visible part of the window. In addition sl@0: it will be clipped to the non-invalid part if you are not doing a redraw and sl@0: to the region being validated if you are doing a redraw. sl@0: sl@0: Note: sl@0: sl@0: In general, server side functions which encounter conditions which would normally sl@0: cause a leave, do not leave but instead return an error value indicating the sl@0: leave condition. In this way the leave can be handled on the appropriate side sl@0: of the client/server boundary. For example, a client can choose to wrap server sl@0: calls with User::LeaveIfError(), which causes a leave with the specified sl@0: error. sl@0: sl@0: The above advice is true of many functions in this class, and in its derived sl@0: classes. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see CGraphicsContext */ sl@0: { sl@0: friend class CWsScreenDevice; sl@0: public: sl@0: /** Defines possible clockwise rotation values. sl@0: sl@0: WARNING: Enum for internal and partner use ONLY. Compatibility is not guaranteed in future releases. sl@0: sl@0: @prototype sl@0: */ sl@0: enum TGraphicsRotation sl@0: { sl@0: /** No rotation. */ sl@0: EGraphicsRotationNone, sl@0: /** A 90 degree rotation. */ sl@0: EGraphicsRotation90, sl@0: /** A 180 degree rotation. */ sl@0: EGraphicsRotation180, sl@0: /** A 270 degree rotation. */ sl@0: EGraphicsRotation270 sl@0: }; sl@0: sl@0: IMPORT_C CWindowGc(CWsScreenDevice *aDevice); sl@0: IMPORT_C virtual ~CWindowGc(); sl@0: IMPORT_C virtual TInt Construct(); sl@0: IMPORT_C virtual void Activate(RDrawableWindow &aDevice); sl@0: IMPORT_C virtual void Deactivate(); sl@0: //====================FROM CGraphicsContext.H=============================== sl@0: IMPORT_C virtual CGraphicsDevice* Device() const; sl@0: IMPORT_C virtual void SetOrigin(const TPoint &aPoint=TPoint(0,0)); sl@0: IMPORT_C virtual void SetDrawMode(TDrawMode aDrawingMode); sl@0: IMPORT_C virtual void SetClippingRect(const TRect& aRect); sl@0: IMPORT_C virtual void CancelClippingRect(); sl@0: IMPORT_C virtual void Reset(); sl@0: sl@0: IMPORT_C virtual void UseFont(const CFont *aFont); sl@0: IMPORT_C virtual void DiscardFont(); sl@0: IMPORT_C virtual void SetUnderlineStyle(TFontUnderline aUnderlineStyle); sl@0: IMPORT_C virtual void SetStrikethroughStyle(TFontStrikethrough aStrikethroughStyle); sl@0: // Used to do justified text properly sl@0: IMPORT_C virtual void SetWordJustification(TInt aExcessWidth,TInt aNumGaps); sl@0: // Used primarily to get accurate WYSIWYG sl@0: IMPORT_C virtual void SetCharJustification(TInt aExcessWidth,TInt aNumChars); sl@0: sl@0: IMPORT_C virtual void SetPenColor(const TRgb &aColor); sl@0: IMPORT_C virtual void SetPenStyle(TPenStyle aPenStyle); sl@0: IMPORT_C virtual void SetPenSize(const TSize& aSize); sl@0: sl@0: IMPORT_C virtual void SetBrushColor(const TRgb &aColor); sl@0: IMPORT_C virtual void SetBrushStyle(TBrushStyle aBrushStyle); sl@0: IMPORT_C virtual void SetBrushOrigin(const TPoint &aOrigin); sl@0: IMPORT_C virtual void UseBrushPattern(const CFbsBitmap *aDevice); sl@0: IMPORT_C virtual void DiscardBrushPattern(); sl@0: // sl@0: // Move the internal position, as used by DrawLineTo & DrawLineBy, and set by MoveTo, sl@0: // MoveBy, DrawLine, DrawLineTo, DrawLineBy and DrawPolyline sl@0: IMPORT_C virtual void MoveTo(const TPoint &aPoint); sl@0: IMPORT_C virtual void MoveBy(const TPoint &aPoint); sl@0: IMPORT_C virtual void Plot(const TPoint &aPoint); sl@0: // sl@0: // Line drawing subject to pen color, width and style and draw mode sl@0: IMPORT_C virtual void DrawArc(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd); sl@0: IMPORT_C virtual void DrawLine(const TPoint &aPoint1,const TPoint &aPoint2); sl@0: IMPORT_C virtual void DrawLineTo(const TPoint &aPoint); sl@0: IMPORT_C virtual void DrawLineBy(const TPoint &aPoint); sl@0: IMPORT_C virtual void DrawPolyLine(const CArrayFix *aPointList); sl@0: IMPORT_C virtual void DrawPolyLine(const TPoint* aPointList,TInt aNumPoints); sl@0: // sl@0: // Filled outlines sl@0: // Outlines subject to pen color, width and style and draw mode sl@0: // (set pen to ENullPen for no outline) sl@0: // Fill subject to brush style (color, hash or pattern) and origin and sl@0: // drawing mode (set brush to ENullBrush for no fill) sl@0: IMPORT_C virtual void DrawPie(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd); sl@0: IMPORT_C virtual void DrawEllipse(const TRect &aRect); sl@0: IMPORT_C virtual void DrawRect(const TRect &aRect); sl@0: IMPORT_C virtual void DrawRoundRect(const TRect &aRect,const TSize &aEllipse); sl@0: IMPORT_C virtual TInt DrawPolygon(const CArrayFix *aPointList,TFillRule aFillRule=EAlternate); sl@0: IMPORT_C virtual TInt DrawPolygon(const TPoint* aPointList,TInt aNumPoints,TFillRule aFillRule=EAlternate); sl@0: // sl@0: // Uses the bitmap's Twips size and does a "stretch" blit in general sl@0: IMPORT_C virtual void DrawBitmap(const TPoint &aTopLeft, const CFbsBitmap *aDevice); sl@0: IMPORT_C virtual void DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aDevice); sl@0: IMPORT_C virtual void DrawBitmap(const TRect &aDestRect, const CFbsBitmap *aDevice, const TRect &aSourceRect); sl@0: IMPORT_C virtual void DrawBitmapMasked(const TRect& aDestRect, const CFbsBitmap* aBitmap, const TRect& aSourceRect, const CFbsBitmap* aMaskBitmap, TBool aInvertMask); sl@0: IMPORT_C virtual void DrawBitmapMasked(const TRect& aDestRect, const CWsBitmap* aBitmap, const TRect& aSourceRect, const CWsBitmap* aMaskBitmap, TBool aInvertMask); sl@0: sl@0: // Required as not all DrawText and DrawTextVertical functions are implemented in CWindowGc sl@0: using CBitmapContext::DrawText; sl@0: using CBitmapContext::DrawTextVertical; sl@0: // sl@0: // Text drawing subject to drawing mode sl@0: // Subject to used font, pen color, drawing mode, sl@0: // word and char justification sl@0: IMPORT_C virtual void DrawText(const TDesC &aBuf,const TPoint &aPos); sl@0: // sl@0: // Subject to same as above plus brush for background sl@0: // (set brush to ENullBrush for no effect on background) sl@0: IMPORT_C virtual void DrawText(const TDesC &aBuf,const TRect &aBox,TInt aBaselineOffset,TTextAlign aHoriz=ELeft,TInt aLeftMrg=0); sl@0: //================Extra functions from CBitmapContext============== sl@0: IMPORT_C virtual void Clear(); sl@0: IMPORT_C virtual void Clear(const TRect &aRect); sl@0: IMPORT_C virtual void CopyRect(const TPoint &anOffset,const TRect &aRect); sl@0: IMPORT_C virtual void BitBlt(const TPoint &aPos, const CFbsBitmap *aBitmap); sl@0: IMPORT_C virtual void BitBlt(const TPoint &aDestination, const CFbsBitmap *aBitmap, const TRect &aSource); sl@0: IMPORT_C virtual void BitBltMasked(const TPoint& aPoint,const CFbsBitmap* aBitmap,const TRect& aSourceRect,const CFbsBitmap* aMaskBitmap,TBool aInvertMask); sl@0: IMPORT_C virtual void BitBlt(const TPoint &aPoint, const CWsBitmap *aBitmap); sl@0: IMPORT_C virtual void BitBlt(const TPoint &aDestination, const CWsBitmap *aBitmap, const TRect &aSource); sl@0: IMPORT_C virtual void BitBltMasked(const TPoint& aPoint,const CWsBitmap *aBitmap,const TRect& aSourceRect,const CWsBitmap *aMaskBitmap,TBool aInvertMask); sl@0: IMPORT_C virtual void MapColors(const TRect& aRect,const TRgb* aColors,TInt aNumPairs=2,TBool aMapForwards=ETrue); sl@0: sl@0: IMPORT_C virtual void DrawTextVertical(const TDesC& aText,const TPoint& aPos,TBool aUp); sl@0: IMPORT_C virtual void DrawTextVertical(const TDesC& aText,const TRect& aBox,TInt aBaselineOffset,TBool aUp,TTextAlign aVert=ELeft,TInt aMargin=0); sl@0: //=================Extra functions specific to wserv GDI============== sl@0: IMPORT_C virtual void SetDitherOrigin(const TPoint& aPoint); sl@0: IMPORT_C virtual TInt SetClippingRegion(const TRegion &aRegion); sl@0: IMPORT_C virtual void CancelClippingRegion(); sl@0: IMPORT_C virtual void SetOpaque(TBool aDrawOpaque=ETrue); sl@0: //=================Functions also supplied by CFbsBitGc============== sl@0: IMPORT_C virtual void SetFaded(TBool aFaded); sl@0: IMPORT_C virtual void SetFadingParameters(TUint8 aBlackMap,TUint8 aWhiteMap); sl@0: IMPORT_C virtual TInt AlphaBlendBitmaps(const TPoint& aDestPt, const CFbsBitmap* aSrcBmp, const TRect& aSrcRect, const CFbsBitmap* aAlphaBmp, const TPoint& aAlphaPt); sl@0: IMPORT_C virtual TInt AlphaBlendBitmaps(const TPoint& aDestPt, const CWsBitmap* aSrcBmp, const TRect& aSrcRect, const CWsBitmap* aAlphaBmp, const TPoint& aAlphaPt); sl@0: // sl@0: IMPORT_C TAny* Interface(TUid aInterfaceId); sl@0: IMPORT_C const TAny* Interface(TUid aInterfaceId) const; sl@0: sl@0: protected: sl@0: IMPORT_C TInt APIExtension(TUid aUid, TAny*& aOutput, TAny* aInput); sl@0: sl@0: private: sl@0: sl@0: IMPORT_C void Reserved_CGraphicsContext_2(); sl@0: sl@0: IMPORT_C void Reserved_CBitmapContext_1(); sl@0: IMPORT_C void Reserved_CBitmapContext_2(); sl@0: IMPORT_C void Reserved_CBitmapContext_3(); sl@0: sl@0: public: sl@0: IMPORT_C virtual void DrawWsGraphic(const TWsGraphicId& aId,const TRect& aDestRect); sl@0: IMPORT_C virtual void DrawWsGraphic(const TWsGraphicId& aId,const TRect& aDestRect,const TDesC8& aData); sl@0: private: sl@0: IMPORT_C virtual void Reserved_CWindowGc_3(); sl@0: IMPORT_C virtual void Reserved_CWindowGc_4(); sl@0: IMPORT_C virtual void Reserved_CWindowGc_5(); sl@0: sl@0: //============================================================= sl@0: private: // Private code sl@0: TRgb Color(TInt aOpcode)const; sl@0: void SetJustification(TInt aExcessWidth,TInt aNumGaps, TInt aOpcode); sl@0: void DrawArcOrPie(const TRect &aRect,const TPoint &aStart,const TPoint &aEnd, TInt aOpcode); sl@0: void doDrawPolyLine(const CArrayFix *aPointArray, const TPoint* aPointList,TInt aNumPoints); sl@0: TInt doDrawPolygon(const CArrayFix *aPointArray,const TPoint* aPointList,TInt aNumPoints,TFillRule aFillRule); sl@0: void WriteTextPos(TInt aOpcode,TInt aOpcodePtr,const TPoint &aPos,const TDesC &aBuf) const; sl@0: void WriteTextCommand(TAny *aCmd, TInt aLen,const TDesC &aBuf,TInt aOpcode,TInt aOpcodePtr) const; sl@0: void WriteTextCommand(TAny *aCmd, TInt aLen,const TDesC8 &aBuf,TInt aOpcode,TInt aOpcodePtr) const; sl@0: TInt APIExGetUnderlineMetrics(TAny*& aOutput); sl@0: TInt APIExSetShadowColor(TAny* aShadowColor); sl@0: TInt APIExGetShadowColor(TAny*& aOutput); sl@0: // New DrawText API's that take in context sl@0: TInt APIExDrawText(const TDesC &aBuf,const TTextParameters* aParam,const TPoint &aPos); sl@0: TInt APIExDrawText(const TDesC &aBuf,const TTextParameters* aParam,const TRect &aBox,TInt aBaselineOffset,TTextAlign aHoriz=ELeft,TInt aLeftMrg=0); sl@0: TInt APIExDrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TPoint& aPos,TBool aUp); sl@0: TInt APIExDrawTextVertical(const TDesC& aText,const TTextParameters* aParam,const TRect& aBox,TInt aBaselineOffset,TBool aUp,TTextAlign aVert=ELeft,TInt aMargin=0); sl@0: TInt APIExInterface(TAny*& aInterface, TUid aInterfaceId); sl@0: sl@0: void DrawResource(const TPoint& aPos, const RWsDrawableSource& aSource, TGraphicsRotation aRotation=EGraphicsRotationNone); sl@0: void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, TGraphicsRotation aRotation=EGraphicsRotationNone); sl@0: void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TRect& aSrcRect, TGraphicsRotation aRotation=EGraphicsRotationNone); sl@0: void DrawResource(const TRect& aDestRect, const RWsDrawableSource& aSource, const TDesC8& aParam); sl@0: sl@0: private: // Private data sl@0: class CPimpl; sl@0: CPimpl* iPimpl; sl@0: CWsScreenDevice *iDevice; sl@0: }; sl@0: sl@0: sl@0: class CWsScreenDevice : public CBitmapDevice, public MWsClientClass sl@0: /** Software device screen. sl@0: sl@0: An object of this class can be used to enquire or set parameters of the software sl@0: screen, and determine the physical limits of the device. sl@0: sl@0: CWsScreenDevice gives access to the list of screen modes. These are the combinations sl@0: of screen rotation and screen size supported by the device. One of them is sl@0: selected as the current screen mode. The possible screen modes are initialised sl@0: in wsini.ini. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see CFbsScreenDevice */ sl@0: { sl@0: public: sl@0: /** Whether or not to include sprites when comparing areas of the screen*/ sl@0: enum TSpriteInCompare sl@0: { sl@0: /** This enum can be specified as the 3rd parameter to CWsScreenDevice::RectCompare(const TRect &aRect1, sl@0: const TRect &aRect2,TUint aFlags). sl@0: When called with the value ERemoveSprite if there are any sprites visible in the areas of the screen being compared then these sl@0: will not be included in the comparison. sl@0: The function CWsScreenDevice::RectCompare(const TRect &aRect1,const TRect &aRect2) will not include sl@0: sprites in the comparison. sl@0: */ sl@0: ERemoveSprite=0, sl@0: /** This enum can be specified as the 3rd parameter to CWsScreenDevice::RectCompare(const TRect &aRect1, sl@0: const TRect &aRect2,TUint aFlags). sl@0: When called with the value EIncludeSprite if there are any sprites visible in the areas of the screen being compared then these sl@0: will be included in the comparison.*/ sl@0: EIncludeSprite=1, sl@0: /** This enum can be specified as the 3rd parameter to CWsScreenDevice::RectCompare(const TRect &aRect1, sl@0: const TRect &aRect2,TUint aFlags). sl@0: When called with the value EIncludeTextCursor if there are any text cursors visible in the areas of the screen being compared then these sl@0: will be included in the comparison.*/ sl@0: EIncludeTextCursor=2 sl@0: }; sl@0: public: sl@0: IMPORT_C CWsScreenDevice(); sl@0: IMPORT_C CWsScreenDevice(RWsSession &aWs); sl@0: IMPORT_C ~CWsScreenDevice(); sl@0: IMPORT_C TInt Construct(); sl@0: IMPORT_C TInt Construct( TInt aDefaultScreenNumber ) ; sl@0: IMPORT_C TAny* GetInterface(TUint aInterfaceId); sl@0: inline const TAny* GetInterface(TUint aInterfaceId) const; sl@0: IMPORT_C TBool IsModeDynamic(TInt aSizeMode) const; sl@0: IMPORT_C TBool IsCurrentModeDynamic() const; sl@0: //==== From CGraphicsDevice ====// sl@0: IMPORT_C TDisplayMode DisplayMode() const; sl@0: IMPORT_C TSize SizeInPixels() const; sl@0: IMPORT_C TSize SizeInTwips() const; sl@0: IMPORT_C TInt HorizontalTwipsToPixels(TInt aTwips) const; sl@0: IMPORT_C TInt VerticalTwipsToPixels(TInt aTwips) const; sl@0: IMPORT_C TInt HorizontalPixelsToTwips(TInt aPixels) const; sl@0: IMPORT_C TInt VerticalPixelsToTwips(TInt aPixels) const; sl@0: IMPORT_C TRect PointerRect() const; sl@0: IMPORT_C TInt CreateContext(CGraphicsContext *&aGc); sl@0: inline TInt CreateContext(CWindowGc*& aGc); sl@0: IMPORT_C virtual TInt GetNearestFontInTwips(CFont*& aFont,const TFontSpec& aFontSpec); sl@0: IMPORT_C virtual TInt GetNearestFontToDesignHeightInTwips(CFont*& aFont,const TFontSpec& aFontSpec); sl@0: IMPORT_C virtual TInt GetNearestFontToMaxHeightInTwips(CFont*& aFont,const TFontSpec& aFontSpec,TInt aMaxHeight); sl@0: IMPORT_C TInt NumTypefaces() const; sl@0: IMPORT_C void TypefaceSupport(TTypefaceSupport& aTypefaceSupport,TInt aTypefaceIndex) const; sl@0: IMPORT_C TInt FontHeightInTwips(TInt aTypefaceIndex,TInt aHeightIndex) const; sl@0: // ==== From CBitmapDevice ====// sl@0: IMPORT_C void GetPixel(TRgb& aColor,const TPoint& aPixel) const; sl@0: IMPORT_C void GetScanLine(TDes8& aScanLine,const TPoint& aStartPixel,TInt aPixelLength, TDisplayMode aDispMode) const; sl@0: IMPORT_C TInt AddFile(const TDesC& aName,TInt& aId); sl@0: IMPORT_C void RemoveFile(TInt aId=0); sl@0: IMPORT_C virtual TInt GetNearestFontInPixels(CFont*& aFont,const TFontSpec& aFontSpec); sl@0: IMPORT_C virtual TInt GetNearestFontToDesignHeightInPixels(CFont*& aFont,const TFontSpec& aFontSpec); sl@0: IMPORT_C virtual TInt GetNearestFontToMaxHeightInPixels(CFont*& aFont,const TFontSpec& aFontSpec,TInt aMaxHeight); sl@0: IMPORT_C TInt FontHeightInPixels(TInt aTypefaceIndex,TInt aHeightIndex) const; sl@0: IMPORT_C void ReleaseFont(CFont* aFont); sl@0: //===== From CFbsScreenDevice ====// sl@0: IMPORT_C void PaletteAttributes(TBool& aModifiable,TInt& aNumEntries) const; sl@0: IMPORT_C void SetPalette(CPalette* aPalette); sl@0: IMPORT_C TInt GetPalette(CPalette*& aPalette) const; sl@0: //===== Extra functions ====// sl@0: IMPORT_C TInt SetCustomPalette(const CPalette* aPalette); sl@0: IMPORT_C TInt GetFontById(CFont*& aFont,TUid aUid,const TAlgStyle& aAlgStyle); sl@0: IMPORT_C TBool RectCompare(const TRect &aRect1,const TRect &aRect2) const; sl@0: IMPORT_C TBool RectCompare(const TRect& aRect1,const TRect &aRect2,TUint aFlags) const; sl@0: IMPORT_C TInt CopyScreenToBitmap(const CFbsBitmap *aBitmap) const; sl@0: IMPORT_C TInt CopyScreenToBitmap(const CFbsBitmap *aBitmap, const TRect &aRect) const; sl@0: IMPORT_C TInt SetBackLight(TBool aBackLight); sl@0: //===== Screen Rotation functions ====// sl@0: IMPORT_C void SetScreenSizeAndRotation(const TPixelsTwipsAndRotation &aSizeAndRotation); sl@0: IMPORT_C void GetDefaultScreenSizeAndRotation(TPixelsTwipsAndRotation &aSizeAndRotation) const; sl@0: IMPORT_C void SetScreenSizeAndRotation(const TPixelsAndRotation &aSizeAndRotation); sl@0: IMPORT_C void GetDefaultScreenSizeAndRotation(TPixelsAndRotation &aSizeAndRotation) const; sl@0: IMPORT_C TScreenModeEnforcement ScreenModeEnforcement() const; sl@0: IMPORT_C void SetScreenModeEnforcement(TScreenModeEnforcement aMode) const; sl@0: IMPORT_C void GetScreenModeSizeAndRotation(TInt aMode, TPixelsTwipsAndRotation &aSizeAndRotation) const; sl@0: IMPORT_C void GetScreenModeSizeAndRotation(TInt aMode, TPixelsAndRotation &aSizeAndRotation) const; sl@0: IMPORT_C void SetCurrentRotations(TInt aMode, CFbsBitGc::TGraphicsOrientation aRotation) const; sl@0: IMPORT_C TInt GetRotationsList(TInt aMode, CArrayFixFlat *aRotationList) const; sl@0: IMPORT_C TInt NumScreenModes() const; sl@0: IMPORT_C void SetScreenMode(TInt aMode); sl@0: IMPORT_C TInt CurrentScreenMode() const; sl@0: IMPORT_C void SetAppScreenMode(TInt aMode); sl@0: IMPORT_C TPoint GetDefaultScreenModeOrigin() const; sl@0: IMPORT_C TPoint GetScreenModeOrigin(TInt aMode) const; sl@0: IMPORT_C TSize GetCurrentScreenModeScale() const; sl@0: IMPORT_C TSize GetScreenModeScale(TInt aMode) const; sl@0: IMPORT_C TPoint GetCurrentScreenModeScaledOrigin() const; sl@0: IMPORT_C TPoint GetScreenModeScaledOrigin(TInt aMode) const; sl@0: IMPORT_C TInt GetScreenSizeModeList(RArray* aModeList) const; sl@0: IMPORT_C TDisplayMode GetScreenModeDisplayMode(const TInt &aMode) const; sl@0: //===== Used for testing purpose only ====// sl@0: IMPORT_C TSizeMode GetCurrentScreenModeAttributes() const; sl@0: IMPORT_C void SetCurrentScreenModeAttributes(const TSizeMode &aModeAtt); sl@0: IMPORT_C TInt GetScreenNumber() const; sl@0: private: sl@0: CFbsTypefaceStore* TypeFaceStore()const; sl@0: TSize DisplaySizeInPixels()const; sl@0: TSize PhysicalScreenSizeInTwips()const; sl@0: private: // Private data sl@0: class CScrDevExtension; //Implements extension interfaces, including and replacing typeface store sl@0: CScrDevExtension* iExtension; sl@0: TSize iPhysicalScreenSizeInTwips; sl@0: TSize iDisplaySizeInPixels; sl@0: friend class CWindowGc; sl@0: }; sl@0: sl@0: sl@0: class RWsSpriteBase : public MWsClientClass sl@0: // Client side class base class for sprites and pointer cursors sl@0: /** Sprite base class. sl@0: sl@0: Unless stated otherwise, references to sprites in the documentation for this class also sl@0: apply to pointer cursors. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see RWsSprite sl@0: @see RWsPointerCursor */ sl@0: { sl@0: protected: sl@0: IMPORT_C RWsSpriteBase(); sl@0: IMPORT_C RWsSpriteBase(RWsSession &aWs); sl@0: public: sl@0: IMPORT_C TInt Activate(); sl@0: IMPORT_C TInt AppendMember(const TSpriteMember &aMemberData); sl@0: IMPORT_C void UpdateMember(TInt aIndex); sl@0: IMPORT_C TInt UpdateMember(TInt aIndex, const TSpriteMember &aMemberData); sl@0: IMPORT_C void Close(); sl@0: }; sl@0: sl@0: sl@0: class RWsSprite : public RWsSpriteBase sl@0: /** Sprite. sl@0: sl@0: This class defines functions to create and initialise a sprite, and to set sl@0: its position. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: IMPORT_C RWsSprite(); sl@0: IMPORT_C RWsSprite(RWsSession &aWs); sl@0: IMPORT_C TInt Construct(RWindowTreeNode &aWindow, const TPoint &aPos, TInt aFlags); sl@0: IMPORT_C void SetPosition(const TPoint &aPos); sl@0: }; sl@0: sl@0: sl@0: class RWsPointerCursor : public RWsSpriteBase sl@0: /** Pointer cursor. sl@0: sl@0: The pointer cursor is created in a similar way to a sprite. After creating it, sl@0: one or more sprite members containing the bitmaps to be displayed are added. sl@0: sl@0: After a pointer cursor has been created and activated, it does not become sl@0: visible until the application calls RWindowTreeNode::SetPointerCursor() or sl@0: RWindowTreeNode::SetCustomPointerCursor(). The pointer cursor's origin automatically sl@0: tracks the position of the pointing device, or position of emulated single pointer if there sl@0: are more pointers in the system (see documentation of RWindowBase::EnableAdvancedPointers() sl@0: for more details), and the origin forms the pointer cursor's "hot spot", i.e., the point sl@0: whose co-ordinates are sent to the client if a pointer event occurs. sl@0: If the pointer cursor's bitmap needs to extend to the left or upwards from the pointer sl@0: position, its sprite member should be given a negative offset in TSpriteMember::iOffset. sl@0: sl@0: Note: sl@0: sl@0: Pointer cursors are rarely used in pure pen architectures, but they are supported sl@0: for mouse or tablet use. sl@0: sl@0: @see RWindowBase::EnableAdvancedPointers() sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: IMPORT_C RWsPointerCursor(); sl@0: IMPORT_C RWsPointerCursor(RWsSession &aWs); sl@0: IMPORT_C TInt Construct(TInt aFlags); sl@0: }; sl@0: sl@0: sl@0: class RAnim; sl@0: sl@0: sl@0: class RAnimDll : public MWsClientClass sl@0: /** Client-side interface to the server-side animation DLL. sl@0: sl@0: This is the client side class matching the server side CAnimDLL class. It sl@0: provides functions to create, load, close and destroy a server-side CAnimDll sl@0: object. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see CreateCAnimDllL() sl@0: @see CAnimDll */ sl@0: { sl@0: public: sl@0: IMPORT_C RAnimDll(); sl@0: IMPORT_C virtual ~RAnimDll(); sl@0: IMPORT_C RAnimDll(RWsSession &aWs); sl@0: IMPORT_C TInt Load(const TDesC &aFileName); sl@0: IMPORT_C void Destroy(); sl@0: IMPORT_C virtual void Close(); sl@0: private: sl@0: TInt CommandReply(TInt aHandle, TInt aOpcode, const TIpcArgs* aIpcArgs=NULL); sl@0: TInt CommandReply(TInt aHandle, TInt aOpcode, const TDesC8& aArgs, const TIpcArgs* aIpcArgs=NULL); sl@0: void Command(TInt aHandle, TInt aOpcode, const TPtrC8 &aArgs); sl@0: void Command(TInt aHandle, TInt aOpcode); sl@0: void AsyncCommandReply(TRequestStatus& aStatus, TInt aOpcode, TIpcArgs& aIpcArgs); sl@0: TInt CreateInstance(TInt32& aHandle, const MWsClientClass &aDevice, TInt aType, const TDesC8 &aArgs, TInt aOpcode, const TIpcArgs* aIpcArgs); sl@0: void DestroyInstance(TInt aHandle); sl@0: private: sl@0: friend class RAnim; sl@0: }; sl@0: sl@0: sl@0: class RAnim sl@0: /** Client-side handle to a server-side animation class. sl@0: sl@0: This class should be sub-classed to provide a client side interface to the sl@0: server side animation DLL. The server side animation DLL is derived from CAnim. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: IMPORT_C virtual ~RAnim(); sl@0: IMPORT_C virtual void Close(); sl@0: IMPORT_C void Destroy(); sl@0: protected: sl@0: IMPORT_C RAnim(); sl@0: IMPORT_C RAnim(RAnimDll &aDll); sl@0: IMPORT_C TInt Construct(const RWindowBase &aDevice, TInt aType, const TDesC8 &aParams); sl@0: IMPORT_C TInt Construct(const RWindowBase &aDevice, TInt aType, const TDesC8 &aParams, const TIpcArgs& aIpcArgs); sl@0: IMPORT_C TInt Construct(const RWsSprite &aDevice, TInt aType, const TDesC8 &aParams); sl@0: IMPORT_C TInt Construct(const RWsSprite &aDevice, TInt aType, const TDesC8 &aParams, const TIpcArgs& aIpcArgs); sl@0: IMPORT_C TInt CommandReply(TInt aOpcode); sl@0: IMPORT_C TInt CommandReply(TInt aOpcode, const TPtrC8 &aArgs); sl@0: IMPORT_C TInt CommandReply(TInt aOpcode, const TDesC8& aArgs, const TIpcArgs& aIpcArgs); sl@0: IMPORT_C void Command(TInt aOpcode, const TPtrC8 &aArgs); sl@0: IMPORT_C void Command(TInt aOpcode); sl@0: IMPORT_C void AsyncCommandReply(TRequestStatus& aRequestStatus,TInt aOpcode, const TIpcArgs& aIpcArgs); sl@0: private: sl@0: TInt32 iHandle; sl@0: RAnimDll *iAnimDll; sl@0: }; sl@0: sl@0: class CDsaMsgQueue; sl@0: sl@0: class RDirectScreenAccess : public MWsClientClass sl@0: /** The interface between an application that directly accesses the screen and sl@0: the window server. sl@0: sl@0: Note that most applications that need to access the screen directly should sl@0: use CDirectScreenAccess instead. RDirectScreenAccess only needs to be used sl@0: directly by applications without access to an active scheduler. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: /** Provides the reason why direct screen access must terminate. This enum is used sl@0: in the MAbortDirectScreenAccess::AbortNow() and MDirectScreenAccess::Restart() sl@0: functions. sl@0: sl@0: The first value (ETerminateCancel) indicates that direct screen access is sl@0: being terminated by the application. The final three values indicate that sl@0: direct screen access is being terminated by the window server. Note that sl@0: for users of CDirectScreenAccess, the termination code is not important sl@0: because these issues are dealt with by CDirectScreenAccess::StartL(). */ sl@0: enum TTerminationReasons sl@0: { sl@0: /** The application has finished direct screen access. */ sl@0: ETerminateCancel, sl@0: /** A window is about to come in front of a part of the area that is being used sl@0: for direct screen access. */ sl@0: ETerminateRegion, sl@0: /** The screen's color depth (as enumerated by TDisplayMode) is about to change. */ sl@0: ETerminateScreenMode, sl@0: /** The current screen mode (the combination of screen rotation and screen size) sl@0: is about to change. */ sl@0: ETerminateRotation, sl@0: }; sl@0: /** The priority of the active object that responds to notification that direct sl@0: screen access must stop. */ sl@0: enum TPriority sl@0: { sl@0: /** A suggested value for the priority of the active object that responds to notification sl@0: from the window server that direct screen access must stop. This is also the sl@0: value used by CDirectScreenAccess for this purpose. */ sl@0: EPriorityVeryHigh=2000, sl@0: }; sl@0: public: sl@0: IMPORT_C RDirectScreenAccess(); sl@0: IMPORT_C RDirectScreenAccess(RWsSession& aWs); sl@0: IMPORT_C TInt Construct(); sl@0: IMPORT_C TInt Construct(TBool aRegionTrackingOnly); sl@0: IMPORT_C TInt Request(RRegion*& aRegion,TRequestStatus& aStatus,const RWindowBase& aWindow); sl@0: IMPORT_C void Completed(); sl@0: IMPORT_C void Cancel(); sl@0: IMPORT_C void Close(); sl@0: private: sl@0: RWsSession* iWs; sl@0: CDsaMsgQueue* iMsgQueue; sl@0: // To maintain BC we need the following sl@0: RThread iWsThread; sl@0: TRequestStatus* iDummyRequest; sl@0: }; sl@0: sl@0: sl@0: class MAbortDirectScreenAccess sl@0: /** The interface for terminating direct screen access. sl@0: sl@0: An object of a class which implements this interface should be passed to CDirectScreenAccess::NewL(). sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see MDirectScreenAccess */ sl@0: { sl@0: public: sl@0: /** This function is called by the window server when direct screen access must sl@0: stop (for example because a dialogue is moved in front of the area where direct sl@0: screen access is taking place). sl@0: sl@0: In response to this, direct screen access must stop immediately. In simple cases, sl@0: this will involve cancelling the active object that is driving the drawing to the sl@0: screen. sl@0: sl@0: No attempt to call a Window Server API function can be made from sl@0: AbortNow(), because then a temporary deadlock will occur. This is because WSERV sl@0: is waiting to receive the client's acknowledgment that it has aborted, and so will sl@0: not be able to service the call. As soon as the restriction no longer applies, sl@0: the function Restart() will be called. sl@0: sl@0: @param aReason The reason why direct screen access was terminated. */ sl@0: virtual void AbortNow(RDirectScreenAccess::TTerminationReasons aReason)=0; sl@0: }; sl@0: sl@0: sl@0: class MDirectScreenAccess : public MAbortDirectScreenAccess sl@0: /** The interface for restarting direct screen access. sl@0: sl@0: The Restart() function is called by the window server as soon as direct screen sl@0: access can resume. It is called after the window server has called AbortNow(). sl@0: sl@0: An object of the derived class is passed to CDirectScreenAccess::NewL(). sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see CDirectScreenAccess::NewL() */ sl@0: { sl@0: public: sl@0: /** This function is called by the window server as soon as direct screen access sl@0: can resume. sl@0: sl@0: This function should call CDirectScreenAccess::StartL() within a trap harness. sl@0: If this leaves, e.g. through lack of memory, direct screen access cannot be sl@0: restarted. StartL() re-calculates the clipping region, so that if direct screen sl@0: access was aborted because another window appeared in front of it, that window sl@0: will not be overwritten when direct screen access resumes. sl@0: sl@0: In this function, you can resume calls to Window Server Client Side API functions. sl@0: sl@0: @param aReason Provides the reason why direct screen access was terminated. */ sl@0: virtual void Restart(RDirectScreenAccess::TTerminationReasons aReason)=0; sl@0: }; sl@0: sl@0: sl@0: class CDirectScreenAccess : public CActive sl@0: /** An active object used to start direct screen access. sl@0: sl@0: Direct screen access is a way of drawing to the screen without using the window sl@0: server. As this avoids client-server communication, it is much faster, and sl@0: may be useful for games and video. Note that some interaction with the window sl@0: server is needed in order to prevent the application from drawing over other sl@0: application's data. sl@0: sl@0: The object's (private) RunL() function is called by the window server in order sl@0: to abort direct screen access. This might occur when another window needs sl@0: to be displayed in front or when the window with direct screen access is moved. sl@0: The active object's priority is RDirectScreenAccess::EPriorityVeryHigh so sl@0: that direct screen access will be aborted as quickly as possible. sl@0: sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: public: sl@0: IMPORT_C static CDirectScreenAccess* NewL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWin,MDirectScreenAccess& aAbort); sl@0: IMPORT_C static CDirectScreenAccess* NewL(RWsSession& aWs,CWsScreenDevice& aScreenDevice,RWindowBase& aWin,MDirectScreenAccess& aAbort,TBool aRegionTrackingOnly); sl@0: ~CDirectScreenAccess(); sl@0: IMPORT_C void StartL(); sl@0: inline CFbsBitGc* Gc(); sl@0: inline CFbsScreenDevice*& ScreenDevice(); sl@0: inline RRegion* DrawingRegion(); sl@0: private: sl@0: enum TFlags sl@0: { sl@0: EDirectCheckModeChange = 0x01, sl@0: EDirectCheckSizeModeChange = 0x02, sl@0: EDirectRegionTrackingOnly = 0x04, sl@0: }; sl@0: private: sl@0: inline CDirectScreenAccess(RWsSession& aWs,CWsScreenDevice* aScreenDevice,RWindowBase& aWindow,MDirectScreenAccess& aAbort); sl@0: void ConstructL(RWsSession& aWs,TBool aRegionTrackingOnly); sl@0: void CreateScreenObjectsL(TDisplayMode aCurrentMode); sl@0: void UpdateSizeAndRotation(CFbsBitGc* aGc); sl@0: static TInt Restart(TAny* aDirect); sl@0: void Restart(); sl@0: //Pure virtual functions from CActive sl@0: void DoCancel(); sl@0: void RunL(); sl@0: private: sl@0: CFbsBitGc* iGc; sl@0: CFbsScreenDevice* iScreenDevice; sl@0: RRegion* iDrawingRegion; sl@0: RWindowBase& iWindow; sl@0: CWsScreenDevice* iWsScreenDevice; sl@0: MDirectScreenAccess& iAbort; sl@0: RDirectScreenAccess iDirectAccess; sl@0: RDirectScreenAccess::TTerminationReasons iReason; sl@0: CIdle* iRestart; sl@0: TSize iScreenSize; sl@0: TBool iAborting; sl@0: TUint iFlags; sl@0: TInt iScreenNumber; sl@0: }; sl@0: sl@0: sl@0: class RSoundPlugIn : public MWsClientClass sl@0: /** Client interface to the key or pointer click plug-in DLL. sl@0: sl@0: The plug-in DLL implements the CClickMaker class. sl@0: sl@0: @publishedAll sl@0: @released sl@0: @see CClickMaker */ sl@0: { sl@0: public: sl@0: /** A possible return value for CommandReply(). */ sl@0: enum sl@0: { sl@0: /** The value returned by CommandReply() if no plug-in is loaded, sl@0: or if the plug-in identified by the aUid parameter in Construct() is not loaded. sl@0: Its value is set to KMinTInt so that it should not clash with any other expected sl@0: return value from this function. */ sl@0: ESoundWrongPlugIn=KMinTInt sl@0: }; sl@0: public: sl@0: IMPORT_C RSoundPlugIn(); sl@0: IMPORT_C RSoundPlugIn(RWsSession &aWs); sl@0: IMPORT_C TInt Construct(TUid aUid=KNullUid); sl@0: IMPORT_C void Close(); sl@0: IMPORT_C void Destroy(); sl@0: IMPORT_C TBool IsLoaded(TBool& aIsChangeable) const; sl@0: IMPORT_C TInt Unload(); sl@0: IMPORT_C TInt Load(const TDesC &aFileName); sl@0: IMPORT_C void SetKeyClick(TBool aEnabled); sl@0: IMPORT_C void SetPenClick(TBool aEnabled); sl@0: IMPORT_C TBool KeyClickEnabled() const; sl@0: IMPORT_C TBool PenClickEnabled() const; sl@0: IMPORT_C TInt CommandReply(TInt aOpcode, const TPtrC8 &aArgs); sl@0: }; sl@0: sl@0: inline TInt MWsClientClass::WsHandle() const sl@0: /** Gets the server side handle for the object. sl@0: sl@0: @return The server-side handle for the object. */ sl@0: {return(iWsHandle);} sl@0: sl@0: inline const TAny* CWsScreenDevice::GetInterface(TUint aInterfaceId) const sl@0: { sl@0: return const_cast(this)->GetInterface(aInterfaceId); sl@0: } sl@0: sl@0: inline TInt CWsScreenDevice::CreateContext(CWindowGc *&aGc) sl@0: /** Creates a graphics context for this device. sl@0: sl@0: This function always causes a flush of the window server buffer. sl@0: sl@0: @param aGc On successful return, contains a new graphics context referring sl@0: to this screen device. sl@0: @return KErrNone if successful, otherwise one of the system-wide error codes. sl@0: @see CGraphicsDevice::CreateContext() */ sl@0: {return(CreateContext((CGraphicsContext *&)aGc));} sl@0: sl@0: inline TUint TWsRedrawEvent::Handle() const sl@0: /** Gets the handle of the window which is the target of the redraw event. sl@0: sl@0: This is the handle that was passed to the window's Construct() function: typically sl@0: it will be a pointer to the object owning the window, providing access to sl@0: its member functions. sl@0: sl@0: @return The window's handle. */ sl@0: {return(iHandle);} sl@0: sl@0: inline TRect TWsRedrawEvent::Rect() const sl@0: /** Gets the rectangle to redraw. sl@0: sl@0: @return The rectangle that needs redrawing. Co-ordinates are relative to sl@0: the window whose handle is given by Handle(). */ sl@0: {return(iRect);} sl@0: sl@0: inline TWsEvent::TWsEvent() sl@0: /** Constructor. Zero Initialise Data sl@0: @publishedAll sl@0: @released */ sl@0: { sl@0: iType=0; sl@0: iHandle=0; sl@0: iTime=0; sl@0: Mem::FillZ(iEventData,EWsEventDataSize); sl@0: } sl@0: sl@0: inline TAdvancedPointerEvent* TWsEvent::Pointer() const sl@0: /** Gets the pointer event. sl@0: sl@0: This method can be used to get information about the pointer event if Type() sl@0: returns an event of type EEventPointer or EEventDragDrop. sl@0: sl@0: If the event has been received by the window without advanced pointer events enabled, sl@0: this method will return a pointer to TPointerEvent with additional fields of sl@0: TAdvancedPointerEvent being cleared to 0. sl@0: sl@0: @return Structure containing advanced pointer event data. sl@0: @see TPointerEvent::AdvancedPointerEvent() sl@0: @see RWindowBase::EnableAdvancedPointers() */ sl@0: {return((TAdvancedPointerEvent *)&iEventData);} sl@0: sl@0: inline TInt TAdvancedPointerEvent::PointerNumber() const sl@0: /** Gets the pointer number of the pointer whose state change is described by this event. sl@0: sl@0: As soon as the pointer (for example a finger) is detected by the device's sensors, sl@0: it is assigned a pointer number. Then all events related to this pointer always sl@0: use the same pointer number. When the device loses track of the pointer, sl@0: TPointerEvent::EOutOfRange is sent with its pointer number and the number is released sl@0: - from this time it may be re-used to identify another pointer coming into range. sl@0: sl@0: On a particular device, the pointer number is always an integer in the range 0 to sl@0: HALData::EPointerNumberOfPointers - 1. If the device doesn't provide value for sl@0: this attribute, it is assumed to be 1. sl@0: sl@0: Please note that in order to receive events from multiple pointers in a window, the method sl@0: RWindowBase::EnableAdvancedPointers() has to be called for this window's instance sl@0: before it is activated. Otherwise this window will only receive TPointerEvents from one sl@0: emulated pointer, which will always have pointer number 0. sl@0: sl@0: @return Pointer number of the pointer whose state change is described by this event. sl@0: @see RWindowBase::EnableAdvancedPointers() sl@0: @see HALData::EPointerNumberOfPointers */ sl@0: { sl@0: return IsAdvancedPointerEvent() ? DoGetPointerNumber() : ENonAdvancedPointerPointerNumber; sl@0: } sl@0: sl@0: inline TInt TAdvancedPointerEvent::Proximity() const sl@0: /** Gets the proximity of the pointer to the screen's surface. sl@0: Proximity units may vary between devices and may be non-linear. sl@0: Returned value will be a negative integer as the maximum supported proximity sl@0: range in Symbian OS is from KMinTInt to 0, where KMinTInt means the highest sl@0: proximity that Symbian OS can support and 0 means touching the screen. sl@0: HALData attributes provide more information about proximity support on particular sl@0: device. sl@0: sl@0: On platforms without pointer proximity support, proximity is always assumed to be 0. sl@0: sl@0: @return Proximity of the pointer to the screen's surface. sl@0: @see TAdvancedPointerEvent::Position3D() sl@0: @see TAdvancedPointerEvent::ProximityAndPressure() sl@0: @see HALData::EPointer3DMaxProximity sl@0: @see HALData::EPointer3DProximityStep */ sl@0: { sl@0: return IsAdvancedPointerEvent() ? DoGetProximity() : ENonAdvancedPointerZCoordinate; sl@0: } sl@0: sl@0: inline TInt TAdvancedPointerEvent::Pressure() const sl@0: /** Gets the pressure applied by the pointer to the screen. sl@0: Pressure units may vary between devices and may be non-linear. sl@0: Returned value will be a positive integer as the maximum supported pressure range sl@0: in Symbian OS is from 0 to KMaxTInt. HALData attributes provide more information sl@0: about pressure support on particular device. sl@0: sl@0: On platforms without pointer pressure support, pressure is always assumed to be 0. sl@0: sl@0: @return Pressure applied by the pointer to the screen. sl@0: @see TAdvancedPointerEvent::Pressure3D() sl@0: @see TAdvancedPointerEvent::ProximityAndPressure() sl@0: @see HALData::EPointer3DMaxPressure sl@0: @see HALData::EPointer3DPressureStep */ sl@0: { sl@0: return IsAdvancedPointerEvent() ? DoGetPressure() : ENonAdvancedPointerZCoordinate; sl@0: } sl@0: sl@0: inline TInt TAdvancedPointerEvent::ProximityAndPressure() const sl@0: /** Gets pressure applied by the pointer to the screen and proximity of the pointer sl@0: to the screen as one value. This is possible because the pointer is never in proximity sl@0: to the screen and pressing the screen at the same time. sl@0: sl@0: @return The value of proximity if the pointer is in proximity to the screen; proximity sl@0: is always represented as negative TInt. The value of pressure if the pointer sl@0: is touching the screen; pressure is always represented as positive TInt. sl@0: @see TAdvancedPointerEvent::Proximity() sl@0: @see TAdvancedPointerEvent::Pressure() sl@0: @see TAdvancedPointerEvent::PositionAndPressure3D() */ sl@0: {return IsAdvancedPointerEvent() ? DoGetProximityAndPressure() : ENonAdvancedPointerZCoordinate;} sl@0: sl@0: inline TPoint3D TAdvancedPointerEvent::PositionAndPressure3D() const sl@0: /** sl@0: @return Pointer's X and Y coordinates plus combined proximity and pressure as sl@0: Z coordinate. sl@0: @see TAdvancedPointerEvent::ProximityAndPressure() */ sl@0: { sl@0: TPoint3D point3D; sl@0: point3D.iX=iPosition.iX; sl@0: point3D.iY=iPosition.iY; sl@0: point3D.iZ=ProximityAndPressure(); sl@0: return point3D; sl@0: } sl@0: sl@0: inline TPoint3D TAdvancedPointerEvent::Position3D() const sl@0: /** sl@0: @return Pointer's X and Y coordinates plus pointer's proximity to the screen as sl@0: Z coordinate. Please note that returned Z coordinate will be always negative or 0. sl@0: @see TAdvancedPointerEvent::Proximity() */ sl@0: { sl@0: TPoint3D point3D; sl@0: point3D.iX=iPosition.iX; sl@0: point3D.iY=iPosition.iY; sl@0: point3D.iZ=IsAdvancedPointerEvent() ? DoGetProximity() : ENonAdvancedPointerZCoordinate; sl@0: return point3D; sl@0: } sl@0: sl@0: inline TPoint3D TAdvancedPointerEvent::Pressure3D() const sl@0: /** sl@0: @return Pointer's X and Y coordinates plus pressure applied by the pointer to the screen sl@0: as Z coordinate. sl@0: @see TAdvancedPointerEvent::Pressure() */ sl@0: { sl@0: TPoint3D point3D; sl@0: point3D.iX=iPosition.iX; sl@0: point3D.iY=iPosition.iY; sl@0: point3D.iZ=IsAdvancedPointerEvent() ? DoGetPressure() : ENonAdvancedPointerZCoordinate; sl@0: return point3D; sl@0: } sl@0: sl@0: inline TKeyEvent *TWsEvent::Key() const sl@0: /** Gets the key event. sl@0: sl@0: This function can be used to get information about the key event if Type() sl@0: returns an event of type EEventKey, EEventKeyUp or EEventKeyDown. sl@0: sl@0: @return Structure containing key event data */ sl@0: {return((TKeyEvent *)&iEventData);} sl@0: sl@0: inline TWsVisibilityChangedEvent* TWsEvent::VisibilityChanged() sl@0: /** Gets information about the visibility changed event. sl@0: sl@0: This function can be used to get information about the visibility changed event sl@0: if Type() returns an event of type EEventWindowVisibilityChanged. sl@0: sl@0: @return Structure containing visibility changed event data */ sl@0: { return reinterpret_cast(iEventData); } sl@0: sl@0: inline const TWsVisibilityChangedEvent* TWsEvent::VisibilityChanged() const sl@0: /** Gets information about the visibility changed event. sl@0: sl@0: This function can be used to get information about the visibility changed event sl@0: if Type() returns an event of type EEventWindowVisibilityChanged. sl@0: sl@0: @return Structure containing visibility changed event data */ sl@0: { return reinterpret_cast(iEventData); } sl@0: sl@0: inline TWsDisplayChangedEvent* TWsEvent::DisplayChanged() sl@0: /** Gets information about the display changed event. sl@0: sl@0: This function can be used to get information about the display changed event sl@0: if Type() returns an event of type EEventDisplayChanged. sl@0: sl@0: @return Structure containing display changed event data */ sl@0: { return reinterpret_cast(iEventData); } sl@0: sl@0: inline const TWsDisplayChangedEvent* TWsEvent::DisplayChanged() const sl@0: /** Gets information about the display changed event. sl@0: sl@0: This function can be used to get information about the display changed event sl@0: if Type() returns an event of type EEventDisplayChanged. sl@0: sl@0: @return Structure containing display changed event data */ sl@0: { return reinterpret_cast(iEventData); } sl@0: sl@0: inline TModifiersChangedEvent *TWsEvent::ModifiersChanged() const sl@0: /** Gets information about the modifier changed event. sl@0: sl@0: This function can be used to get information about the modifier changed event sl@0: if Type() returns an event of type EEventModifiersChanged. sl@0: sl@0: @return Structure containing modifier changed event data */ sl@0: {return((TModifiersChangedEvent *)&iEventData);} sl@0: sl@0: inline TWsErrorMessage *TWsEvent::ErrorMessage() const sl@0: /** Gets an error event. sl@0: sl@0: This function can be used to get information about the error event if Type() sl@0: returns an event of type EEventErrorMessage. sl@0: sl@0: @return The error event. */ sl@0: {return((TWsErrorMessage *)&iEventData);} sl@0: sl@0: inline TUint8 *TWsEvent::EventData() const sl@0: /** Gets information about the event. sl@0: sl@0: This function gives you direct access to the event data as a whole. The event sl@0: can be a key or pointer event or it could be a new special event that only sl@0: you and another application know about. You are limited to EWsEventDataSize sl@0: bytes worth of data. sl@0: sl@0: @return A pointer to the event data. */ sl@0: {return((TUint8 *)&iEventData);} sl@0: sl@0: inline TInt TWsEvent::Type() const sl@0: /** Gets the type of event that occurred. sl@0: sl@0: @return The event type. Event types are defined in TEventCode. */ sl@0: {return(iType);} sl@0: sl@0: inline TUint TWsEvent::Handle() const sl@0: /** Gets the window handle. sl@0: sl@0: This is the handle that was passed to the window's Construct() function: typically sl@0: it will be a pointer to the client-side object owning the window, providing sl@0: access to its member functions. sl@0: sl@0: @return The window handle. */ sl@0: {return(iHandle);} sl@0: sl@0: inline TTime TWsEvent::Time() const sl@0: /** Gets the time when the event occurred. sl@0: sl@0: @return The time when the event occurred. */ sl@0: {return(iTime);} sl@0: sl@0: inline void TWsEvent::SetType(TInt aType) sl@0: /** Sets the event type. sl@0: sl@0: @param aType The event type. Event types are defined in TEventCode. */ sl@0: {iType=aType;} sl@0: sl@0: inline void TWsEvent::SetHandle(TUint aHandle) sl@0: /** Sets the event handle. sl@0: sl@0: This is the client handle of the window that is being sent the event. sl@0: sl@0: @param aHandle The event handle. */ sl@0: {iHandle=aHandle;} sl@0: sl@0: inline void TWsEvent::SetTimeNow() sl@0: /** Sets the event time to the current time. */ sl@0: {iTime.UniversalTime();} sl@0: sl@0: inline TInt *TWsEvent::Int() const sl@0: /** Gets the event data as a TInt. sl@0: sl@0: For TWsEvents of type EEventPointerEnter and EEventPointerExit this is the pointer number sl@0: of the pointer that entered/exited the window. Please note that on platforms that sl@0: use the older Symbian OS, without multipointer support, pointer number is not initialized sl@0: for EEventPointerEnter and EEventPointerExit and thus it is random. sl@0: sl@0: If the value of the attribute returned from HALData::EPointerNumberOfPointers is greater than 1, sl@0: then the system has multipointer support. sl@0: sl@0: @see HALData::EPointerNumberOfPointers sl@0: @see HAL::Get(TAttribute,TInt&) sl@0: */ sl@0: { return (TInt*)&iEventData; } sl@0: sl@0: inline TUint TWsPriorityKeyEvent::Handle() const sl@0: /** Gets the handle for the window group which added the priority key. sl@0: sl@0: This is the handle that was passed to the window group's Construct() function. sl@0: Since most applications have only one window group, however, this function sl@0: is rarely used. sl@0: sl@0: @return The window group handle. */ sl@0: {return(iHandle);} sl@0: sl@0: inline TKeyEvent *TWsPriorityKeyEvent::Key() const sl@0: /** Gets the priority key event. sl@0: sl@0: @return Structure containing priority key event data */ sl@0: {return((TKeyEvent *)&iEventData);} sl@0: sl@0: inline void TWsPriorityKeyEvent::SetHandle(TUint aHandle) sl@0: /** Sets the window group event handle. sl@0: sl@0: This is the client handle of the window that is being sent the event. sl@0: sl@0: @param aHandle The event handle. */ sl@0: {iHandle=aHandle;} sl@0: sl@0: inline CDirectScreenAccess::CDirectScreenAccess(RWsSession& aWs,CWsScreenDevice* aScreenDevice,RWindowBase& aWindow,MDirectScreenAccess& aAbort) sl@0: :CActive(RDirectScreenAccess::EPriorityVeryHigh), iWindow(aWindow), iAbort(aAbort), iDirectAccess(aWs) sl@0: {iWsScreenDevice=aScreenDevice;} sl@0: sl@0: inline CFbsBitGc* CDirectScreenAccess::Gc() sl@0: /** Gets the graphics context for drawing to the screen. sl@0: sl@0: This is set up by calling StartL(). Its origin is set so that you should use sl@0: window coordinates to specify which part of the screen to draw to and its sl@0: clipping region is set to the visible part of the window. sl@0: sl@0: Code built to run on the Emulator must call CFbsScreenDevice::Update() in sl@0: order to see the results of drawing to this graphics context, but this may sl@0: not be required on all target hardware. sl@0: sl@0: @return The graphics context for drawing to the screen. */ sl@0: { return iGc; } sl@0: sl@0: inline CFbsScreenDevice*& CDirectScreenAccess::ScreenDevice() sl@0: /** Gets the screen device to draw to. sl@0: sl@0: You should not use this screen device to create fonts because the object is sl@0: deleted and recreated when direct screen access is aborted and restarted. sl@0: Instead, create and use your own CFbsScreenDevice object to create fonts. sl@0: sl@0: @return The target screen device. */ sl@0: { return iScreenDevice; } sl@0: sl@0: inline RRegion* CDirectScreenAccess::DrawingRegion() sl@0: /** Gets the clipping region to draw to. sl@0: sl@0: You must not draw outside of this region. sl@0: sl@0: The clipping region is calculated when StartL() is called, and is only updated sl@0: if StartL() is called again. sl@0: sl@0: The region is specified in screen coordinates. This can be useful if you need sl@0: to reapply the clipping region to the graphics context (CFbsBitGc::SetClippingRegion()). sl@0: sl@0: @return The clipping region to draw to. */ sl@0: { return iDrawingRegion; } sl@0: sl@0: #endif //__W32STD_H__