?? igraphicswrapper.java
字號:
package de.tsr.jsol.gui;
import javax.microedition.lcdui.*;
public interface IGraphicsWrapper {
public void drawRect( int x, int y, int w, int h );
public void drawString( String text, int x, int y, int anchor );
public void setColor( int r, int g, int b );
public void clearRect( int x, int y, int w, int h );
public void fillRect( int x, int y, int w, int h);
public void setStrokeStyle( int style );
public void drawImage(Image img, int x, int y, int anchor);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -