116
|
1 |
/*
|
|
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description :
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
#ifndef TSRESOURCEMANAGER_H
|
|
18 |
#define TSRESOURCEMANAGER_H
|
|
19 |
|
125
|
20 |
class RApaLsSession;
|
|
21 |
class RWsSession;
|
|
22 |
class MTsWindowGroupsMonitor;
|
127
|
23 |
class MTsIconProvider;
|
|
24 |
class CTsIdList;
|
116
|
25 |
|
|
26 |
/**
|
125
|
27 |
* Interface declare methods to access initialized OS resources
|
116
|
28 |
*/
|
|
29 |
class MTsResourceManager
|
125
|
30 |
{
|
116
|
31 |
public:
|
|
32 |
/**
|
|
33 |
* Access to initialized window server session
|
|
34 |
*/
|
|
35 |
virtual RWsSession& WsSession() =0;
|
|
36 |
|
|
37 |
/**
|
|
38 |
* Access to initilaized APA session
|
|
39 |
*/
|
|
40 |
virtual RApaLsSession& ApaSession() =0;
|
|
41 |
|
|
42 |
/**
|
125
|
43 |
* Access to window groups monitor
|
116
|
44 |
*/
|
125
|
45 |
virtual MTsWindowGroupsMonitor& WsMonitor() =0;
|
127
|
46 |
|
|
47 |
/**
|
|
48 |
* Access to icon provider
|
|
49 |
*/
|
|
50 |
virtual MTsIconProvider& IconProvider() =0;
|
|
51 |
|
|
52 |
virtual const CTsIdList& ApplicationsBlackList() const =0;
|
125
|
53 |
};
|
116
|
54 |
#endif // TSRESOURCEMANAGER_H
|