View Javadoc

1   /*
2    * This file is part of Domingo
3    * an Open Source Java-API to Lotus Notes/Domino
4    * hosted at http://domingo.sourceforge.net
5    *
6    * Copyright (c) 2003-2007 Beck et al. projects GmbH Munich, Germany (http://www.bea.de)
7    *
8    * This library is free software; you can redistribute it and/or
9    * modify it under the terms of the GNU Lesser General Public
10   * License as published by the Free Software Foundation; either
11   * version 2.1 of the License, or (at your option) any later version.
12   *
13   * This library is distributed in the hope that it will be useful,
14   * but WITHOUT ANY WARRANTY; without even the implied warranty of
15   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   * Lesser General Public License for more details.
17   *
18   * You should have received a copy of the GNU Lesser General Public
19   * License along with this library; if not, write to the Free Software
20   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
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 }