Update contrib.
1 // Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Definition of base class for all objects
30 CWsObject is the base class for the server-side objects that are visible to the client.
32 The client refers to these objects via a handle that is passed to it by the server.
33 The association between handles and CWsObject instances is stored by the TWsObject class.
35 Derived classes must implement the CommandL() function so that it handles the requests
38 Each client session has a list of all its CWsObject instances. When creating an instance of
39 a class derived from CWsObject the NewObjL() function must be called to add the new
40 object to the list. The CWsObject destructor takes care of removing the object from the list.
47 class CWsObject : public CBase
50 CWsObject(CWsClient* aOwner,WH_HANDLES aType);
52 virtual void CommandL(TInt aOpcode, const TAny *aCmdData)=0;
53 virtual void CloseObject();
54 TInt LogHandle() const;
56 void RemoveFromIndex();
57 inline WH_HANDLES Type() const;
58 inline CWsClient *WsOwner() const;
59 inline void SetWsOwner(CWsClient *aOwner);
60 void OwnerPanic(TClientPanic aPanic) const;
62 void SetReply(TInt aReply);
67 /** Each client has a list of all its CWsObject instances. The CWsObject
68 has a pointer to its owner so that it can update the list when it is created and
69 when it is destroyed. */
73 class CWsScreenObject : public CWsObject
76 inline CWsScreenObject(CWsClient *aOwner,WH_HANDLES aType,CScreen* aScreen);
77 inline CScreen* Screen() const;
78 inline CWsRootWindow* RootWindow() const;
92 inline CWsClient *CWsObject::WsOwner() const
94 inline void CWsObject::SetWsOwner(CWsClient *aOwner)
96 inline WH_HANDLES CWsObject::Type() const
101 inline CWsScreenObject::CWsScreenObject(CWsClient *aOwner,WH_HANDLES aType,CScreen* aScreen) : CWsObject(aOwner,aType), iScreen(aScreen)
103 inline CScreen* CWsScreenObject::Screen() const
105 inline CWsRootWindow* CWsScreenObject::RootWindow() const
106 {return iScreen->RootWindow();}