|
1 // Copyright (c) 1997-2009 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". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #if !defined(__TFEP2COM_H__) |
|
17 #define __TFEP2COM_H__ |
|
18 |
|
19 #if !defined(__E32STD_H__) |
|
20 #include <e32std.h> |
|
21 #endif |
|
22 |
|
23 enum {ETimeOutInMicroSeconds=500000}; |
|
24 |
|
25 enum |
|
26 { |
|
27 EIpcSlot=1, // must be at least 1 as the first slot of the TIpcArgs passed to RAnim::CommandReply is reserved |
|
28 EAsyncIpcSlot=2, // must be at least 2 as the first two slots of the TIpcArgs passed to RAnim::AsyncCommandReply are reserved |
|
29 }; |
|
30 |
|
31 enum |
|
32 { |
|
33 EAnimTypeHandWritingRecognizer=100 |
|
34 }; |
|
35 |
|
36 enum |
|
37 { |
|
38 EHandWritingRecognizerCommandFinishConstructionL=200, |
|
39 EHandWritingRecognizerCommandRequestNotificationOfStartOfTransaction, |
|
40 EHandWritingRecognizerCommandCancelRequestForNotificationOfStartOfTransaction, |
|
41 EHandWritingRecognizerCommandRequestCharacters, |
|
42 EHandWritingRecognizerCommandCancelRequestForCharacters, |
|
43 EHandWritingRecognizerCommandSetUpperCase |
|
44 }; |
|
45 |
|
46 struct STstBitmapHandles |
|
47 { |
|
48 inline STstBitmapHandles() :iMain(0), iMask(0) {} |
|
49 inline STstBitmapHandles(TInt aMain, TInt aMask) :iMain(aMain), iMask(aMask) {} |
|
50 TInt iMain; |
|
51 TInt iMask; |
|
52 }; |
|
53 |
|
54 struct STstParametersForHandWritingRecognizerCommandSetUpperCase |
|
55 { |
|
56 TBool iUpperCase; |
|
57 }; |
|
58 |
|
59 #endif |
|
60 |