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

📄 uicolorscheme.java

📁 j2me游戏引擎 j2me游戏引擎
💻 JAVA
字号:
package cn.org.matrix.gmatrix.gameLab.util.ui;

/**
 * UI色彩方案
 * @author cleverpig
 *
 */
public class UIColorScheme {
	//背景颜色
	private int bgColor=0;
	//UI背景景颜色
	private int UIBgColor=0;
	//UI边框颜色
	private int UIBorderColor=0;
	
	/**
	 * 构造方法
	 */
	public UIColorScheme(){
	}
	
	/**
	 * 构造方法
	 * @param bgColor 画面背景颜色
	 * @param UIBgColor UI的背景颜色
	 * @param UIBorderColor UI的边界颜色
	 */
	public UIColorScheme(int bgColor,int UIBgColor,int UIBorderColor){
		this.bgColor=bgColor;
		this.UIBgColor=UIBgColor;
		this.UIBorderColor=UIBorderColor;
	}
	
	public int getBgColor() {
		return bgColor;
	}
	public void setBgColor(int bgColor) {
		this.bgColor = bgColor;
	}
	public int getUIBgColor() {
		return UIBgColor;
	}
	public void setUIBgColor(int bgColor) {
		UIBgColor = bgColor;
	}
	public int getUIBorderColor() {
		return UIBorderColor;
	}
	public void setUIBorderColor(int borderColor) {
		UIBorderColor = borderColor;
	}
}

⌨️ 快捷键说明

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