📄 hicon.java
字号:
package org.havi.ui;
public class HIcon extends HStaticIcon implements HNavigable {
private static HGraphicLook mydefaultlook;
private HSound gainFocusSound;
private HSound loseFocusSound;
private int[] navigationKeys;
public HIcon() {
}
public HIcon(java.awt.Image image) {
}
public HIcon(java.awt.Image image, int x, int y, int width, int height) {
}
public HIcon(java.awt.Image imageNormal, java.awt.Image imageFocus, int x, int y, int width, int height) {
}
public static void setDefaultLook( HGraphicLook hlook) {
mydefaultlook = hlook;
}
public static HGraphicLook getDefaultLook() {
return mydefaultlook;
}
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -