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 TSWINDOWGROUPSOBSERVER_H
|
|
18 |
#define TSWINDOWGROUPSOBSERVER_H
|
|
19 |
|
125
|
20 |
class MTsResourceManager;
|
|
21 |
class MTsRunningApplicationStorage;
|
116
|
22 |
/**
|
|
23 |
* Interface declare mathods to notify about window server events
|
|
24 |
*/
|
|
25 |
class MTsWindowGroupsObserver
|
125
|
26 |
{
|
116
|
27 |
public:
|
|
28 |
/**
|
119
|
29 |
* Method notify about window group changes.
|
|
30 |
* @param aResources - resource manager
|
|
31 |
* @param aStorage - list of running applications
|
116
|
32 |
*/
|
125
|
33 |
virtual void HandleWindowGroupChanged(
|
|
34 |
MTsResourceManager& aResources,
|
|
35 |
const MTsRunningApplicationStorage& aStorage) =0;
|
|
36 |
};
|
116
|
37 |
|
|
38 |
#endif //TSWINDOWGROUPSOBSERVER_H
|