⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 st.java

📁 源码为Eclipse开源开发平台桌面开发工具SWT的源代码,
💻 JAVA
字号:
/******************************************************************************* * Copyright (c) 2000, 2003 IBM Corporation and others. * All rights reserved. This program and the accompanying materials  * are made available under the terms of the Common Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/cpl-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>. */public class ST {		/* StyledText key action constants.  Key bindings for the actions are set	 * by the StyledText widget.  @see StyledText#createKeyBindings()	 */	 	/* Navigation Key Actions */		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_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;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -