define.java

来自「很简单的J2ME源码」· Java 代码 · 共 41 行

JAVA
41
字号
/*
 * ConstructDefine.java
 *
 * Created on 2006�?2�?4�?, 下午5:13
 *
 * To change this template, choose Tools | Options and locate the template under
 * the Source Creation and Management node. Right-click the template and choose
 * Open. You can then make changes to the template in the Source Editor.
 */

/**
 *
 * @author Administrator
 */

import javax.microedition.lcdui.*;

public class Define {

	public static final int STATUS_STARTING = 4;
	public static final int STATUS_STARTING_COVER = 1;
	public static final int STATUS_STARTING_WAITING = 2;
	public static final int STATUS_STARTING_DESC = 3;
	public static final int STATUS_OPTIONSETTING = 10;
	public static final int STATUS_PLAYING = 30;
    public static final int STATUS_EXIT = 9999;
    public static final int STARTING_TIMEOUT = 10000;
    public static final int PERDESC_TIMEOUT = 5000;
    public static final Font NORMAL_FONT_STYLE = Font.getFont(Font.FACE_MONOSPACE, Font.STYLE_PLAIN, Font.SIZE_SMALL);
    public static final Font HIGHLIGHT_FONT_STYLE = Font.getFont(Font.FACE_MONOSPACE, Font.STYLE_BOLD, Font.SIZE_SMALL);
    public static final int MENU_BORDER_COLOR = 0xFFFFFF;
	public static final int MENU_BORDER_STYLE = Graphics.SOLID;
    public static final int BACKGROUND_COLOR = 0x000000;
    public static final int CURSOR_POINT_COLOR = 0xFFFFFF;
    public static final int NORMAL_FONT_COLOR = 0xFFFFFF;
    public static final int HIGHLIGHT_FONT_COLOR = 0xFFFFFF;

    public Define() {
    }
}

⌨️ 快捷键说明

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