equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2005-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 |
|
18 /** |
|
19 @test |
|
20 @internalComponent |
|
21 |
|
22 This contains CT_DataDrawTextExtendedParam |
|
23 */ |
|
24 |
|
25 #if (!defined __T_DATA_DRAW_TEXT_EXTENDED_PARAM_H__) |
|
26 #define __T_DATA_DRAW_TEXT_EXTENDED_PARAM_H__ |
|
27 |
|
28 // User Includes |
|
29 #include "T_DataDrawTextParam.h" |
|
30 |
|
31 class CT_DataDrawTextExtendedParam : public CT_DataDrawTextParam |
|
32 { |
|
33 public: |
|
34 CT_DataDrawTextExtendedParam(); |
|
35 ~CT_DataDrawTextExtendedParam(); |
|
36 |
|
37 virtual TAny* GetObject(); |
|
38 virtual void SetObjectL(TAny* aAny); |
|
39 virtual void DisownObjectL(); |
|
40 virtual TBool DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex); |
|
41 |
|
42 protected: |
|
43 virtual CGraphicsContext::TDrawTextParam* GetDrawTextParam() const; |
|
44 |
|
45 void DoCmd_new(); |
|
46 void DoCmd_destructor(); |
|
47 void DoCmd_iParRightToLeft(const TDesC& aSection); |
|
48 |
|
49 private: |
|
50 void DestroyData(); |
|
51 |
|
52 private: |
|
53 CGraphicsContext::TDrawTextExtendedParam* iDrawTextExtendedParam; |
|
54 }; |
|
55 |
|
56 #endif /* __T_DATA_DRAW_TEXT_EXTENDED_PARAM_H__ */ |
|