drawconst.java

来自「用Java开发的、实现类似Visio功能的应用程序源码」· Java 代码 · 共 25 行

JAVA
25
字号
/**
 *    $Id:DrawConst.java $
 *
 *    Copyright 2004 ~ 2005  JingFei International Cooperation LTD. All rights reserved. *
 */
package com.jfimagine.jfdraw.draw;


/**
 *  Draw Const class is a const definition list of drawing objects.
 *
 * @author     CookieMaker    
 *
 * @version $Revision: 1.00 $
 */  
public class DrawConst{

   	/** Current draw state.*/
    	public static final int DRAWSTATE_NONE		=0;
    	public static final int DRAWSTATE_DRAW		=1;
    	public static final int DRAWSTATE_ROTATE	=2;
    	public static final int DRAWSTATE_MIRROR	=3;
    	public static final int DRAWSTATE_FLIP		=4;
    	
}

⌨️ 快捷键说明

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