1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 package de.bea.domingo;
24
25 /***
26 * Represents a Notes database.
27 *
28 * @author <a href=mailto:kriede@users.sourceforge.net>Kurt Riede</a>
29 */
30 public interface DRichTextStyle extends DBase {
31
32 /*** Text effect constant. */
33 int EFFECTS_NONE = 0;
34
35 /*** Text effect constant. */
36 int EFFECTS_SUPERSCRIPT = 1;
37
38 /*** Text effect constant. */
39 int EFFECTS_SUBSCRIPT = 2;
40
41 /*** Text effect constant. */
42 int EFFECTS_SHADOW = 3;
43
44 /*** Text effect constant. */
45 int EFFECTS_EMBOSS = 4;
46
47 /*** Text effect constant. */
48 int EFFECTS_EXTRUDE = 5;
49
50 /*** Font face constant. */
51 int FONT_ROMAN = 0;
52
53 /*** Font face constant. */
54 int FONT_HELV = 1;
55
56 /*** Font face constant. */
57 int FONT_COURIER = 4;
58
59 /*** Font face constant. */
60 int STYLE_NO_CHANGE = 255;
61
62 /*** Constant: Yes. */
63 int YES = 1;
64
65 /*** Constant: No. */
66 int NO = 0;
67
68 /*** Constant: Maybe. */
69 int MAYBE = 255;
70
71 /*** Color constant. */
72 int COLOR_BLACK = 0;
73
74 /*** Color constant. */
75 int COLOR_WHITE = 1;
76
77 /*** Color constant. */
78 int COLOR_RED = 2;
79
80 /*** Color constant. */
81 int COLOR_GREEN = 3;
82
83 /*** Color constant. */
84 int COLOR_BLUE = 4;
85
86 /*** Color constant. */
87 int COLOR_MAGENTA = 5;
88
89 /*** Color constant. */
90 int COLOR_YELLOW = 6;
91
92 /*** Color constant. */
93 int COLOR_CYAN = 7;
94
95 /*** Color constant. */
96 int COLOR_DARK_RED = 8;
97
98 /*** Color constant. */
99 int COLOR_DARK_GREEN = 9;
100
101 /*** Color constant. */
102 int COLOR_DARK_BLUE = 10;
103
104 /*** Color constant. */
105 int COLOR_DARK_MAGENTA = 11;
106
107 /*** Color constant. */
108 int COLOR_DARK_YELLOW = 12;
109
110 /*** Color constant. */
111 int COLOR_DARK_CYAN = 13;
112
113 /*** Color constant. */
114 int COLOR_GRAY = 14;
115
116 /*** Color constant. */
117 int COLOR_LIGHT_GRAY = 15;
118 }