25
|
1 |
/*
|
|
2 |
* Copyright (c) 2009-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: Interface definition for Location URL Parser plug-in
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
#ifndef CMRLABEL_H
|
|
19 |
#define CMRLABEL_H
|
|
20 |
|
|
21 |
// INCLUDES
|
|
22 |
#include <eiklabel.h>
|
|
23 |
|
|
24 |
// FORWARD DECLARATIONS
|
|
25 |
|
|
26 |
// CLASS DECLARATIONS
|
|
27 |
|
|
28 |
NONSHARABLE_CLASS( CMRLabel ) : public CEikLabel
|
|
29 |
{
|
|
30 |
public:
|
|
31 |
/**
|
|
32 |
* Static construtor
|
|
33 |
* @param aParent parent control
|
|
34 |
* @return New instance of this class
|
|
35 |
*/
|
|
36 |
IMPORT_C static CMRLabel* NewL( const CCoeControl* aParent = NULL );
|
|
37 |
/**
|
|
38 |
* Destructor
|
|
39 |
*/
|
|
40 |
IMPORT_C ~CMRLabel();
|
|
41 |
|
|
42 |
public: // From base class
|
|
43 |
void FocusChanged(TDrawNow aDrawNow);
|
|
44 |
|
|
45 |
private: // from CCoeControl
|
|
46 |
void SizeChanged();
|
|
47 |
|
|
48 |
private: // Implementation
|
|
49 |
CMRLabel();
|
|
50 |
void ConstructL( const CCoeControl* aParent );
|
|
51 |
|
|
52 |
private: // Data
|
|
53 |
};
|
|
54 |
|
|
55 |
#endif // CMRLABEL_H
|
|
56 |
|
|
57 |
// End of file
|