Update contrib.
1 // Copyright (c) 2010 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.
21 #ifndef MEDIACLIENTWSEVENTOBSERVER_H
22 #define MEDIACLIENTWSEVENTOBSERVER_H
27 class MMediaClientWsEventObserverCallback
30 virtual void MmcweoFocusWindowGroupChanged() = 0;
31 virtual TBool MmcweoIgnoreProcess(TSecureId aId) = 0;
34 NONSHARABLE_CLASS(CMediaClientWsEventObserver) : public CActive
37 static CMediaClientWsEventObserver* NewL(MMediaClientWsEventObserverCallback& aCallback);
38 ~CMediaClientWsEventObserver();
40 TInt FocusWindowGroupId(TInt& aFocusGroupId);
47 CMediaClientWsEventObserver(MMediaClientWsEventObserverCallback& aCallback);
49 void UpdateFocusWindowGroupId(TBool aConstruction);
53 RWindowGroup iWindowGroup;
54 MMediaClientWsEventObserverCallback& iCallback;
60 #endif // MEDIACLIENTWSEVENTOBSERVER_H