|
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 // Maximum length for text selection. |
|
15 // |
|
16 // |
|
17 |
|
18 /** |
|
19 @publishedAll |
|
20 @released |
|
21 */ |
|
22 #define KTextSelectionMaxLen 40 |
|
23 |
|
24 /** All font controls. |
|
25 @publishedAll |
|
26 @released |
|
27 */ |
|
28 #define EGulFontControlAll 0x001 |
|
29 |
|
30 /** Font control name. |
|
31 @publishedAll |
|
32 @released |
|
33 */ |
|
34 #define EGulFontControlName 0x002 |
|
35 |
|
36 /** Font control size. |
|
37 @publishedAll |
|
38 @released |
|
39 */ |
|
40 #define EGulFontControlSize 0x004 |
|
41 |
|
42 /** Bold font control. |
|
43 @publishedAll |
|
44 @released |
|
45 */ |
|
46 #define EGulFontControlBold 0x008 |
|
47 |
|
48 /** Italic font control. |
|
49 @publishedAll |
|
50 @released |
|
51 */ |
|
52 #define EGulFontControlItalic 0x010 |
|
53 |
|
54 /** Underline font control. |
|
55 @publishedAll |
|
56 @released |
|
57 */ |
|
58 #define EGulFontControlUnderline 0x020 |
|
59 |
|
60 /** Strikethrough font control. |
|
61 @publishedAll |
|
62 @released |
|
63 */ |
|
64 #define EGulFontControlStrikethrough 0x040 |
|
65 |
|
66 /** Font text color control. |
|
67 @publishedAll |
|
68 @released |
|
69 */ |
|
70 #define EGulFontControlTextColor 0x080 |
|
71 |
|
72 /** Print position font control. |
|
73 @publishedAll |
|
74 @released |
|
75 */ |
|
76 #define EGulFontControlPrintPos 0x100 |
|
77 |
|
78 /** All fonts. |
|
79 @publishedAll |
|
80 @released |
|
81 */ |
|
82 #define EGulAllFonts 0x01 |
|
83 |
|
84 /** Monospace fonts only. |
|
85 @publishedAll |
|
86 @released |
|
87 */ |
|
88 #define EGulMonospaceFontsOnly 0x02 |
|
89 |
|
90 /** No monospace fonts. |
|
91 @publishedAll |
|
92 @released |
|
93 */ |
|
94 #define EGulNoMonospaceFonts 0x04 |
|
95 |
|
96 /** Symbol fonts only. |
|
97 @publishedAll |
|
98 @released |
|
99 */ |
|
100 #define EGulSymbolFontsOnly 0x08 |
|
101 |
|
102 /** No symbol fonts. |
|
103 @publishedAll |
|
104 @released |
|
105 */ |
|
106 #define EGulNoSymbolFonts 0x10 |
|
107 |
|
108 /** No monospace or symbol fonts. |
|
109 @publishedAll |
|
110 @released |
|
111 */ |
|
112 #define EGulNoMonospaceOrSymbolFonts 0x20 |