equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2010 Kanrikogaku Kenkyusho, Ltd. |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of the License "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 * Kanrikogaku Kenkyusho, Ltd. - Initial contribution |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 // Protection against nested includes |
|
19 #ifndef DIRECTPRINTTEXTCAPABILITY_H |
|
20 #define DIRECTPRINTTEXTCAPABILITY_H |
|
21 |
|
22 // User includes |
|
23 #include "directprintbasecapability.h" |
|
24 |
|
25 /** |
|
26 * |
|
27 * Capability type for TInt type of settings |
|
28 * |
|
29 */ |
|
30 class CDirectPrintTextCapability : public CDirectPrintBaseCapability |
|
31 { |
|
32 public: |
|
33 /** Destructor */ |
|
34 virtual ~CDirectPrintTextCapability(); |
|
35 |
|
36 public: // Methods derived from CBaseCapability |
|
37 |
|
38 virtual HBufC* ListBoxTextL(); |
|
39 virtual CDirectPrintBaseCapability* CloneL(); |
|
40 virtual CAknSettingItem* SettingItemLC(TInt aIndex); |
|
41 |
|
42 public: // Data |
|
43 TBuf<50> iText; |
|
44 }; |
|
45 |
|
46 #endif // DIRECTPRINTTEXTCAPABILITY_H |
|
47 |
|
48 // End of File |