hanimation.java

来自「MHP java class for Interactive TV use」· Java 代码 · 共 100 行

JAVA
100
字号

package org.havi.ui;


public class HAnimation extends HStaticAnimation implements HNavigable {

	private static HAnimateLook defaultlook;
	private HSound gainFocusSound;
	private HSound loseFocusSound;
	private int[] navigationKeys;


	public HAnimation() {
	}


	public HAnimation(java.awt.Image[] images, int delay, int playMode, int repeatCount, int x, int y, int width, int height) {
	}


	public HAnimation(java.awt.Image[] imagesNormal, java.awt.Image[] imagesFocused, int delay, int playMode, int repeatCount, int x, int y, int width, int height) {
	}


	public HAnimation(java.awt.Image[] images, int delay, int playMode, int repeatCount) {
	}


	public HAnimation(java.awt.Image[] imagesNormal, java.awt.Image[] imagesFocused, int delay, int playMode, int repeatCount) {
	}


	public static void setDefaultLook( HAnimateLook hlook) {
		defaultlook = hlook;
	}


	public static HAnimateLook getDefaultLook() {
		return defaultlook;
	}


	public void setMove(int keyCode, HNavigable target) {
	}


	public HNavigable getMove(int keyCode) {
		return null;

	}


	public void setFocusTraversal( HNavigable up, HNavigable down, HNavigable left, HNavigable right) {
	}


	public boolean isSelected() {
		return false;

	}


	public void setGainFocusSound( HSound sound) {
		this.gainFocusSound = sound;
	}


	public void setLoseFocusSound( HSound sound) {
		this.loseFocusSound = sound;
	}


	public HSound getGainFocusSound() {
		return this.gainFocusSound;
	}


	public HSound getLoseFocusSound() {
		return this.loseFocusSound;
	}


	public void addHFocusListener(org.havi.ui.event.HFocusListener l) {
	}


	public void removeHFocusListener(org.havi.ui.event.HFocusListener l) {
	}


	public int[] getNavigationKeys() {
		return this.navigationKeys;
	}


	public void processHFocusEvent(org.havi.ui.event.HFocusEvent evt) {
	}

}

⌨️ 快捷键说明

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