64
|
1 |
/*
|
|
2 |
* Copyright (c) 2008 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 |
|
|
18 |
#ifndef _ALFHINTAPI_H_
|
|
19 |
#define _ALFHINTAPI_H_
|
|
20 |
|
|
21 |
#include <graphics/wsgraphicdrawerinterface.h>
|
|
22 |
#include <alfhintpluginuids.h>
|
|
23 |
|
|
24 |
const TInt KAlfHintObjectInterface = 0x200242A5;
|
|
25 |
|
|
26 |
class MAlfHintObserver : public MWsObjectProvider
|
|
27 |
{
|
|
28 |
public:
|
|
29 |
DECLARE_WS_TYPE_ID(KAlfHintObjectInterface)
|
|
30 |
|
|
31 |
virtual void InsertTagL( TInt aTag, TInt32 aParameter = 0 ) = 0;
|
|
32 |
virtual void InsertTagL( TInt aTag, TRect aBoundingRect, TInt aLayerId ) =0;
|
|
33 |
};
|
|
34 |
|
|
35 |
#endif // _ALFHINTAPI_H_
|