1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/nonnga/SERVER/OBJECT.H Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,107 @@
1.4 +// Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Definition of base class for all objects
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __OBJECT_H__
1.22 +#define __OBJECT_H__
1.23 +
1.24 +#include <e32std.h>
1.25 +#include <e32base.h>
1.26 +#include "w32cmd.h"
1.27 +#include "screen.h"
1.28 +
1.29 +class CWsClient;
1.30 +class CWsRootWindow;
1.31 +
1.32 +/**
1.33 +CWsObject is the base class for the server-side objects that are visible to the client.
1.34 +
1.35 +The client refers to these objects via a handle that is passed to it by the server.
1.36 +The association between handles and CWsObject instances is stored by the TWsObject class.
1.37 +
1.38 +Derived classes must implement the CommandL() function so that it handles the requests
1.39 +the client sent.
1.40 +
1.41 +Each client session has a list of all its CWsObject instances. When creating an instance of
1.42 +a class derived from CWsObject the NewObjL() function must be called to add the new
1.43 +object to the list. The CWsObject destructor takes care of removing the object from the list.
1.44 +
1.45 +@see TWsObject
1.46 +@see CWsClient
1.47 +@internalComponent
1.48 +@released
1.49 +*/
1.50 +class CWsObject : public CBase
1.51 + {
1.52 +public:
1.53 + CWsObject(CWsClient* aOwner,WH_HANDLES aType);
1.54 + ~CWsObject();
1.55 + virtual void CommandL(TInt aOpcode, const TAny *aCmdData)=0;
1.56 + virtual void CloseObject();
1.57 + TInt LogHandle() const;
1.58 + void NewObjL();
1.59 + void RemoveFromIndex();
1.60 + inline WH_HANDLES Type() const;
1.61 + inline CWsClient *WsOwner() const;
1.62 + inline void SetWsOwner(CWsClient *aOwner);
1.63 + void OwnerPanic(TClientPanic aPanic) const;
1.64 +protected:
1.65 + void SetReply(TInt aReply);
1.66 +
1.67 +private:
1.68 + WH_HANDLES iType;
1.69 +protected:
1.70 + /** Each client has a list of all its CWsObject instances. The CWsObject
1.71 + has a pointer to its owner so that it can update the list when it is created and
1.72 + when it is destroyed. */
1.73 + CWsClient *iWsOwner;
1.74 + };
1.75 +
1.76 +class CWsScreenObject : public CWsObject
1.77 + {
1.78 +public:
1.79 + inline CWsScreenObject(CWsClient *aOwner,WH_HANDLES aType,CScreen* aScreen);
1.80 + inline CScreen* Screen() const;
1.81 + inline CWsRootWindow* RootWindow() const;
1.82 +
1.83 +protected:
1.84 + CScreen* iScreen;
1.85 + };
1.86 +
1.87 +
1.88 +//
1.89 +// inlines //
1.90 +//
1.91 +
1.92 +//
1.93 +// CWsObject
1.94 +//
1.95 +inline CWsClient *CWsObject::WsOwner() const
1.96 + {return(iWsOwner);}
1.97 +inline void CWsObject::SetWsOwner(CWsClient *aOwner)
1.98 + {iWsOwner=aOwner;}
1.99 +inline WH_HANDLES CWsObject::Type() const
1.100 + {return(iType);}
1.101 +//
1.102 +// CWsScreenObject
1.103 +//
1.104 +inline CWsScreenObject::CWsScreenObject(CWsClient *aOwner,WH_HANDLES aType,CScreen* aScreen) : CWsObject(aOwner,aType), iScreen(aScreen)
1.105 + {}
1.106 +inline CScreen* CWsScreenObject::Screen() const
1.107 + {return iScreen;}
1.108 +inline CWsRootWindow* CWsScreenObject::RootWindow() const
1.109 + {return iScreen->RootWindow();}
1.110 +#endif