1 package com.explosion.expfmodules.texteditor;
2
3 /* =============================================================================
4 *
5 * Copyright 2004 Stephen Cowx
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 *
19 * =============================================================================
20 */
21
22 /***
23 * Author: Stephen Cowx
24 * Date: Dec 9, 2002
25 * Time: 11:54:36 PM
26 */
27
28 public interface TextEditorConstants
29 {
30 public static final String DEFAULTEXTENSION = "defaultextension";
31
32 public static final String WORDWRAP = "wordwrap";
33 public static final String FONT = "font";
34 public static final String COLORS_FOREGROUND = "foreground";
35 public static final String COLORS_BACKGROUND = "background";
36 public static final String COLOR_SELECTEDFORGROUND = "selectedforeground";
37 public static final String COLOR_SELECTEDBACKGROUND = "selectedbackground";
38 public static final String CARET_COLOR = "caretcolour";
39 public static final String UNDOLIST_SIZE = "UndoListSize";
40
41 public static final String TO_UPPER = "TO_UPPER";
42 public static final String TO_LOWER = "TO_LOWER";
43
44 public static final String COMPNAME_EXPF_TEXTAREA = "COMPNAME_EXPF_TEXTAREA";
45
46
47 }