summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/ST.java
blob: e85599e3c38f93ca72d55c2771122a412d4a89ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
/*******************************************************************************
 * Copyright (c) 2000, 2011 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.custom;


/**
 * This class provides access to the public constants provided by <code>StyledText</code>.
 *
 * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
 */
public class ST {
	 
	/*
	 *  Navigation Key Actions. Key bindings for the actions are set
	 *  by the StyledText widget.
	 */	
	public static final int LINE_UP = 16777217; 			// binding = SWT.ARROW_UP
	public static final int LINE_DOWN = 16777218; 		// binding = SWT.ARROW_DOWN
	public static final int LINE_START = 16777223; 		// binding = SWT.HOME
	public static final int LINE_END = 16777224; 		// binding = SWT.END
	public static final int COLUMN_PREVIOUS = 16777219; 	// binding = SWT.ARROW_LEFT
	public static final int COLUMN_NEXT = 16777220; 		// binding = SWT.ARROW_RIGHT
	public static final int PAGE_UP = 16777221; 			// binding = SWT.PAGE_UP
	public static final int PAGE_DOWN = 16777222; 		// binding = SWT.PAGE_DOWN
	public static final int WORD_PREVIOUS = 17039363;	// binding = SWT.MOD1 + SWT.ARROW_LEFT
	public static final int WORD_NEXT = 17039364; 		// binding = SWT.MOD1 + SWT.ARROW_RIGHT
	public static final int TEXT_START = 17039367; 		// binding = SWT.MOD1 + SWT.HOME
	public static final int TEXT_END = 17039368; 		// binding = SWT.MOD1 + SWT.END
	public static final int WINDOW_START = 17039365; 	// binding = SWT.MOD1 + SWT.PAGE_UP
	public static final int WINDOW_END = 17039366; 		// binding = SWT.MOD1 + SWT.PAGE_DOWN

	/* 
	 * Selection Key Actions 
	 */
	public static final int SELECT_ALL = 262209; 				// binding = SWT.MOD1 + 'A'
	public static final int SELECT_LINE_UP = 16908289; 			// binding = SWT.MOD2 + SWT.ARROW_UP
	public static final int SELECT_LINE_DOWN = 16908290; 		// binding = SWT.MOD2 + SWT.ARROW_DOWN
	public static final int SELECT_LINE_START = 16908295; 		// binding = SWT.MOD2 + SWT.HOME
	public static final int SELECT_LINE_END = 16908296; 			// binding = SWT.MOD2 + SWT.END
	public static final int SELECT_COLUMN_PREVIOUS = 16908291;	// binding = SWT.MOD2 + SWT.ARROW_LEFT
	public static final int SELECT_COLUMN_NEXT = 16908292; 		// binding = SWT.MOD2 + SWT.ARROW_RIGHT
	public static final int SELECT_PAGE_UP = 16908293; 			// binding = SWT.MOD2 + SWT.PAGE_UP
	public static final int SELECT_PAGE_DOWN = 16908294; 		// binding = SWT.MOD2 + SWT.PAGE_DOWN
	public static final int SELECT_WORD_PREVIOUS = 17170435;		// binding = SWT.MOD1 + SWT.MOD2 + SWT.ARROW_LEFT
	public static final int SELECT_WORD_NEXT = 17170436; 		// binding = SWT.MOD1 + SWT.MOD2 + SWT.ARROW_RIGHT
	public static final int SELECT_TEXT_START = 17170439; 		// binding = SWT.MOD1 + SWT.MOD2 + SWT.HOME
	public static final int SELECT_TEXT_END = 17170440; 			// binding = SWT.MOD1 + SWT.MOD2 + SWT.END
	public static final int SELECT_WINDOW_START = 17170437; 		// binding = SWT.MOD1 + SWT.MOD2 + SWT.PAGE_UP
	public static final int SELECT_WINDOW_END = 17170438; 		// binding = SWT.MOD1 + SWT.MOD2 + SWT.PAGE_DOWN

	/*
	 *  Modification Key Actions 
	 */
	public static final int CUT = 131199; 			// binding = SWT.MOD2 + SWT.DEL
	public static final int COPY = 17039369; 		// binding = SWT.MOD1 + SWT.INSERT;
	public static final int PASTE = 16908297;		// binding = SWT.MOD2 + SWT.INSERT ;
	public static final int DELETE_PREVIOUS = '\b'; 	// binding = SWT.BS;
	public static final int DELETE_NEXT = 0x7F; 		// binding = SWT.DEL;
	public static final int DELETE_WORD_PREVIOUS = 262152;	// binding = SWT.BS | SWT.MOD1;
	public static final int DELETE_WORD_NEXT = 262271;	// binding = SWT.DEL | SWT.MOD1;

	/* 
	 * Miscellaneous Key Actions 
	 */
	public static final int TOGGLE_OVERWRITE = 16777225; // binding = SWT.INSERT;
	
	/**
	 * TEMPORARY CODE - API SUBJECT TO CHANGE
	 * 
	 * Toggle block selection mode
	 * 
	 * @since 3.5
	 */
	public static final int TOGGLE_BLOCKSELECTION = 16777226;
	
	/**
	 *  Bullet style dot.
	 * 
	 *  @see Bullet
	 *  
	 *  @since 3.2
	 */
	public static final int BULLET_DOT = 1 << 0;

	/**
	 *  Bullet style number.
	 * 
	 *  @see Bullet
	 *  
	 *  @since 3.2
	 */
	public static final int BULLET_NUMBER = 1 << 1;

	/**
	 *  Bullet style lower case letter.
	 * 
	 *  @see Bullet
	 *  
	 *  @since 3.2
	 */
	public static final int BULLET_LETTER_LOWER = 1 << 2;

	/**
	 *  Bullet style upper case letter.
	 * 
	 *  @see Bullet
	 *  
	 *  @since 3.2
	 */
	public static final int BULLET_LETTER_UPPER = 1 << 3;

	/**
	 *  Bullet style text.
	 * 
	 *  @see Bullet
	 *  
	 *  @since 3.2
	 */
	public static final int BULLET_TEXT = 1 << 4;

	/**
	 *  Bullet style custom draw.
	 *  
	 *  @see StyledText#addPaintObjectListener(PaintObjectListener)
	 *  @see StyledText#removePaintObjectListener(PaintObjectListener)
	 *  @see Bullet 
	 *  
	 *  @since 3.2
	 */
	public static final int BULLET_CUSTOM = 1 << 5;
	
	/**
	 *  The ExtendedModify event type (value is 3000).
	 *  
	 *  @since 3.8
	 */
	public static final int ExtendedModify = 3000;

	/**
	 *  The LineGetBackground event type (value is 3001).
	 *  
	 *  @since 3.8
	 */
	public static final int LineGetBackground = 3001;
	
	/**
	 *  The LineGetStyle event type (value is 3002).
	 *  
	 *  @since 3.8
	 */
	public static final int LineGetStyle = 3002;
	
	/**
	 *  The TextChanging event type (value is 3003).
	 *  
	 *  @since 3.8
	 */
	public static final int TextChanging = 3003;
	
	/**
	 *  The TextSet event type (value is 3004).
	 *  
	 *  @since 3.8
	 */
	public static final int TextSet = 3004;
	
	/**
	 *  The VerifyKey event type (value is 3005).
	 *  
	 *  @since 3.8
	 */
	public static final int VerifyKey = 3005;
	
	/**
	 *  The TextChanged event type (value is 3006).
	 *  
	 *  @since 3.8
	 */
	public static final int TextChanged = 3006;
	
	/**
	 *  The LineGetSegments event type (value is 3007).
	 *  
	 *  @since 3.8
	 */
	public static final int LineGetSegments = 3007;
	
	/**
	 *  The PaintObject event type (value is 3008).
	 *  
	 *  @since 3.8
	 */
	public static final int PaintObject = 3008;
	
	/**
	 *  The WordNext event type (value is 3009).
	 *  
	 *  @since 3.8
	 */
	public static final int WordNext = 3009;
	
	/**
	 *  The WordPrevious event type (value is 3010).
	 *  
	 *  @since 3.8
	 */
	public static final int WordPrevious = 3010;
	
	/**
	 *  The CaretMoved event type (value is 3011).
	 *  
	 *  @since 3.8
	 */
	public static final int CaretMoved = 3011;

}