?? keyrepeattask.java
字號:
// KeyRepeatTask.java
// Andrew Davison, ad@fivedots.coe.psu.ac.th, August 2005
/* This timer task calls ScrollableMessagesBox's
repeatTextMove(), which repeats the current text
movement while the key speifying the movement is
held down.
*/
import java.util.TimerTask;
public class KeyRepeatTask extends TimerTask
{
private ScrollableMessagesBox scroller;
public KeyRepeatTask(ScrollableMessagesBox smb)
{ scroller = smb; }
public void run()
{ scroller.repeatTextMove(); }
} // end of KeyRepeatTask class
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -