亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? cframe.java

?? java版ace,java程序員值得一看
?? JAVA
字號:
/* * Copyright 1996 Jan Newmarch, University of Canberra. * Permission to use, copy, modify, and distribute this * software and its documentation for any purpose and without * fee is hereby granted, provided that the above copyright * notice appear in all copies.  The author * makes no representations about the suitability of this * software for any purpose.  It is provided "as is" without * express or implied warranty. */package awtCommand;import java.awt.*;public class CFrame extends Frame {    protected Command destroyCommand = null,		      deiconifyCommand = null,		      iconifyCommand = null,		      movedCommand = null;    protected Command gotFocusCommand = null,		      lostFocusCommand = null;    protected Command mouseDownCommand = null,		      mouseDragCommand = null,		      mouseEnterCommand = null,		      mouseExitCommand = null,		      mouseMoveCommand = null,		      mouseUpCommand = null;    protected Command keyUpCommand = null,		      keyDownCommand = null;    protected Command actionCommand = null;    protected Command scrollAbsoluteCommand = null,	      	      lineDownCommand = null,	      	      lineUpCommand = null,	      	      pageDownCommand = null,	      	      pageUpCommand = null;    protected Command selectCommand 	= null,		      deselectCommand 	= null;    /**     * Constructs a new, initially invisible CFrame.     */    public CFrame() {	super();    }    /**     * Constructs a new, initially invisible CFrame with the     * specified title.     */    public CFrame(String title) {	super(title);    }    /**      * Handles the event     */    public boolean handleEvent(Event evt) {	switch (evt.id) {	    case Event.WINDOW_DESTROY:		return windowDestroy(evt);	    case Event.WINDOW_DEICONIFY:		return windowDeiconify(evt);	    case Event.WINDOW_ICONIFY:		return windowIconify(evt);	    case Event.WINDOW_MOVED:		return windowMoved(evt);	    case Event.SCROLL_ABSOLUTE:		return scrollAbsolute(evt, evt.arg);	    case Event.SCROLL_LINE_DOWN:		return lineDown(evt, evt.arg);	    case Event.SCROLL_LINE_UP:		return lineUp(evt, evt.arg);	    case Event.SCROLL_PAGE_DOWN:		return pageDown(evt, evt.arg);	    case Event.SCROLL_PAGE_UP:		return pageUp(evt, evt.arg);	    case Event.LIST_SELECT:		return select(evt, evt.arg);	    case Event.LIST_DESELECT:		return deselect(evt, evt.arg);	    default:		return super.handleEvent(evt);	}    }    /*     * event handling methods     */    /**      * Called if the dialog's window is destroyed. This results in a call to     * the destroyCommand object with <code>what</code> set to null     */    public boolean windowDestroy(Event evt) {	if (destroyCommand != null)	    destroyCommand.execute(this, evt, null);	return false;    }    /**      * Called if the dialog's window is deiconified. This results in a call to     * the deiconifyCommand object with <code>what</code> set to null      */    public boolean windowDeiconify(Event evt) {	if (deiconifyCommand != null)	    deiconifyCommand.execute(this, evt, null);	return false;    }    /**      * Called if the dialog is iconified. This results in a call to     * the iconifyCommand object with <code>what</code> set to null      */    public boolean windowIconify(Event evt) {	if (iconifyCommand != null)	    iconifyCommand.execute(this, evt, null);	return false;    }    /**      * Called if the dialog's window is moved. This results in a call to     * the movedCommand object with <code>what</code> set to Point(x, y)      */    public boolean windowMoved(Event evt) {	if (movedCommand != null)	    movedCommand.execute(this, evt, new Point(evt.x, evt.y));	return false;    }    /*     * I don't know where what objects this next set should belong     * to. Putting them at the top is ok for now     */    /**     * Called if the window gains focus. This results in a call to     * the gotFocusCommand object with <code>what</code> set to null.     */    public boolean gotFocus(Event evt, Object what) {	if (gotFocusCommand != null)	    gotFocusCommand.execute(this, evt, what);	return false;    }    /**     * Called if the window loses focus. This results in a call to     * the lostFocusCommand object with <code>what</code> set to null.     */     public boolean lostFocus(Event evt, Object what) {	if (lostFocusCommand != null)	    lostFocusCommand.execute(this, evt, what);	return false;    }    /**     * Called if the mouse is down.     * This results in a call to the mouseDownCommand object with      * <code>what</code> set to Point(x, y)     */    public boolean mouseDown(Event evt, int x, int y) {	if (mouseDownCommand != null)	    mouseDownCommand.execute(this, evt, new Point(x, y));	return false;    }    /**     * Called if the mouse is dragged.     * This results in a call to the mouseDragCommand object with      * <code>what</code> set to Point(x, y)     */    public boolean mouseDrag(Event evt, int x, int y) {	if (mouseDragCommand != null)	    mouseDragCommand.execute(this, evt, new Point(x, y));	return false;    }    /**     * Called if the mouse enters the window.     * This results in a call to the mouseEnterCommand object with      * <code>what</code> set to Point(x, y)     */     public boolean mouseEnter(Event evt, int x, int y) {	if (mouseEnterCommand != null)	    mouseEnterCommand.execute(this, evt, new Point(x, y));	return false;    }    /**     * Called if the mouse moves inside the window.     * This results in a call to the mouseMoveCommand object with      * <code>what</code> set to Point(x, y)     */    public boolean mouseMove(Event evt, int x, int y) {	if (mouseExitCommand != null)	    mouseExitCommand.execute(this, evt, new Point(x, y));	return false;    }    /**     * Called if the mouse is up.     * This results in a call to the mouseUpCommand object with      * <code>what</code> set to Point(x, y)     */    public boolean mouseUp(Event evt, int x, int y) {	if (mouseUpCommand != null)	    mouseUpCommand.execute(this, evt, new Point(x, y));	return false;    }    /**     * Called if a character is pressed.     * This results in a call to the keyDownCommand object with      * <code>what</code> set to Integer(key).     */    public boolean keyDown(Event evt, int key) {	if (keyDownCommand != null)	    keyDownCommand.execute(this, evt, new Integer(key));	return false;    }    /**     * Called if a character is released.     * This results in a call to the keyUpCommand object with      * <code>what</code> set to Integer(key).     */    public boolean keyUp(Event evt, int key) {	if (keyUpCommand != null)	    keyUpCommand.execute(this, evt, new Integer(key));	return false;    }    /**     * Called when an ACTION_EVENT is generated.     * This results in a call to the actionCommand object      * with <code>what</code> set to the event's arg.     */    public boolean action(Event evt, Object what) {	if (actionCommand != null)	    actionCommand.execute(this, evt, what);	return false;    }    /**     * Called when a scrollbar is dragged.     * This results in a call to the scrollAbsoluteCommand object     * with <code>what</code> set to the slider location value.     */    public boolean scrollAbsolute(Event evt, Object what) {        if (scrollAbsoluteCommand != null)            scrollAbsoluteCommand.execute(this, evt, what);	return false;    }    /**     * Called when a scrollbar is incremented down.     * This results in a call to the lineDownCommand object     * with <code>what</code> set to the slider location value.     */    public boolean lineDown(Event evt, Object what) {        if (lineDownCommand != null)            lineDownCommand.execute(this, evt, what);	return false;    }    /**     * Called when a scrollbar is incremented up.     * This results in a call to the lineUpCommand object     * with <code>what</code> set to the slider location value.     */    public boolean lineUp(Event evt, Object what) {        if (lineUpCommand != null)            lineUpCommand.execute(this, evt, what);	return false;    }    /**     * Called when a scrollbar pages up.     * This results in a call to the pageUpCommand object     * with <code>what</code> set to the slider location value.     */    public boolean pageUp(Event evt, Object what) {        if (pageUpCommand != null)            pageUpCommand.execute(this, evt, what);	return false;    }    /**     * Called when a scrollbar pages down.     * This results in a call to the pageDownCommand object     * with <code>what</code> set to the slider location value.     */    public boolean pageDown(Event evt, Object what) {        if (pageDownCommand != null)            pageDownCommand.execute(this, evt, what);	return false;    }    /**      * Called if the mouse selects an item in a List.      * This results in a call to the selectCommand object      * with <code>what</code> set to the selected index.     */    public boolean select(Event evt, Object what) {        if (selectCommand != null)            selectCommand.execute(this, evt, what);	return false;    }    /**      * Called if the mouse deselects an item in a List.      * This results in a call to the deselectCommand object      * with <code>what</code> set to the deselected index.     */    public boolean deselect(Event evt, Object what) {        if (deselectCommand != null)            deselectCommand.execute(this, evt, what);	return false;    }    /*     * set...Command methods     */     /**     * Sets the destroyCommand object.     */    public void setDestroyCommand(Command c) {	destroyCommand = c;    }    /**     * Sets the deiconifyCommand object.     */    public void setDeiconifyCommand(Command c) {	deiconifyCommand = c;    }    /**     * Sets the iconifyCommand object.     */    public void setIconifyCommand(Command c) {	iconifyCommand = c;    }    /**     * Sets the movedCommand object.     */    public void setMovedCommand(Command c) {	movedCommand = c;    }    /**     * Sets the mouseDownCommand object.     */    public void setMouseDownCommand(Command c) {	mouseDownCommand = c;    }    /**     * Sets the moueDragCommand object.     */    public void setMouseDragCommand(Command c) {	mouseDragCommand = c;    }    /**     * Sets the mouseEnterCommand object.     */    public void setMouseEnterCommand(Command c) {	mouseEnterCommand = c;    }    /**     * Sets the mouseExitCommand object.     */    public void setMouseExitCommand(Command c) {	mouseExitCommand = c;    }    /**     * Sets the mouseMoveCommand object.     */    public void setMouseMoveCommand(Command c) {	mouseMoveCommand = c;    }    /**     * Sets the mouseUpCommand object.     */    public void setMouseUpCommand(Command c) {	mouseUpCommand = c;    }    /**     * Sets the keyDownCommand object.     */    public void setKeyDownCommand(Command c) {	keyDownCommand = c;    }    /**     * Sets the keyUpCommand object.     */    public void setKeyUpCommand(Command c) {	keyUpCommand = c;    }   /**    * Sets the actionCommand object.    */    public void setActionCommand(Command action) {	actionCommand = action;    }    /**     * Sets the scrollAbsoluteCommand.     */    public void setScrollAbsoluteCommand(Command c) {	scrollAbsoluteCommand = c;    }    /**     * Sets the lineUpCommand.     */    public void setLineUpCommand(Command c) {	lineUpCommand = c;    }    /**     * Sets the lineDownCommand.     */    public void setLineDownCommand(Command c) {	lineDownCommand = c;    }    /**     * Sets the pageUpCommand.     */    public void setPageUpCommand(Command c) {	pageUpCommand = c;    }    /**     * Sets the pageDownCommand.     */    public void setPageDownCommand(Command c) {	pageDownCommand = c;    }    /**     * Sets the selectCommand.     */    public void setSelectCommand(Command select) {	selectCommand = select;    }    public void setGotFocusCommand(Command c) { 	 gotFocusCommand = c ;     }     /**     * Sets the deselectCommand.     */    public void setDeselectCommand(Command deselect) {	deselectCommand = deselect;    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
蜜臀久久久久久久| 美国av一区二区| 偷拍日韩校园综合在线| 国产一区欧美日韩| 在线观看日韩毛片| 欧美精品一区二区三区四区| 亚洲美女精品一区| 国产精品1024| 欧美大片日本大片免费观看| 一区二区视频在线看| 国产在线国偷精品产拍免费yy| 色综合中文字幕国产 | 亚洲图片激情小说| 激情成人综合网| 91麻豆精品久久久久蜜臀| 亚洲欧美激情视频在线观看一区二区三区| 久久国产三级精品| 欧美日韩一区二区三区不卡 | 欧美极品少妇xxxxⅹ高跟鞋| 日本不卡的三区四区五区| 91久久精品网| 一区二区三区在线影院| 色婷婷综合久色| 亚洲欧美中日韩| 丁香天五香天堂综合| 久久综合网色—综合色88| 麻豆视频一区二区| 日韩精品一区在线| 九九九久久久精品| 日韩欧美另类在线| 看电影不卡的网站| 日韩一区和二区| 男人的j进女人的j一区| 国产91色综合久久免费分享| 日韩一级片网站| 亚洲成人777| 在线亚洲一区观看| 亚洲色图制服诱惑| 国产自产高清不卡| 精品国产免费人成电影在线观看四季 | 国产精品无遮挡| 国产乱人伦偷精品视频免下载| 4438成人网| 日韩成人一级片| 欧美日韩在线播放三区| 亚洲综合激情另类小说区| 粉嫩av亚洲一区二区图片| 国产午夜精品美女毛片视频| 国产精品一级在线| 国产午夜精品理论片a级大结局| 国内精品伊人久久久久影院对白| 日韩欧美国产精品一区| 免费人成在线不卡| 日韩一级免费观看| 国产在线视频不卡二| 久久精品一区二区三区不卡| 激情成人综合网| 欧美在线啊v一区| 丝袜美腿亚洲综合| 日韩精品在线一区二区| 国产精品综合在线视频| 国产精品毛片无遮挡高清| youjizz久久| 亚洲夂夂婷婷色拍ww47| 91精品国产黑色紧身裤美女| 六月丁香综合在线视频| 国产午夜久久久久| 不卡av在线免费观看| 亚洲一区二区av在线| 91精品国产91久久久久久最新毛片| 美女免费视频一区| 欧美国产日韩亚洲一区| 色猫猫国产区一区二在线视频| 亚洲一区二区三区四区中文字幕| 69堂国产成人免费视频| 国产福利91精品一区| 亚洲婷婷在线视频| 欧美高清视频一二三区| 国产一区美女在线| **欧美大码日韩| 欧美人体做爰大胆视频| 风间由美一区二区三区在线观看| 国产日韩欧美一区二区三区乱码| av在线免费不卡| 韩国三级电影一区二区| 亚洲人成精品久久久久久| 欧美一区二区视频免费观看| 成人免费三级在线| 午夜国产不卡在线观看视频| 久久蜜桃av一区精品变态类天堂| 一本色道久久加勒比精品| 日日噜噜夜夜狠狠视频欧美人| 久久嫩草精品久久久久| 日本久久一区二区三区| 国产精品一二三四五| 一区二区在线观看视频在线观看| 精品欧美一区二区久久| 在线免费观看成人短视频| 国产一区二区三区免费看| 亚洲激情男女视频| 精品福利av导航| 欧美美女bb生活片| 美女视频黄久久| 亚洲va欧美va人人爽| 国产精品久久久久一区二区三区共| 日韩亚洲电影在线| 欧美日韩中文国产| 色婷婷av一区二区| jlzzjlzz亚洲女人18| 精品一区二区三区日韩| 亚洲va国产天堂va久久en| 国产欧美久久久精品影院| 日韩精品一区二| 欧美电影在线免费观看| 91美女片黄在线观看| 国产成人精品三级| 国产在线麻豆精品观看| 美腿丝袜在线亚洲一区| 午夜视频一区二区三区| 亚洲视频中文字幕| 国产精品久久久久aaaa樱花 | 国产成人在线视频网站| 国产精品1024| 国产精品888| 国产麻豆视频精品| 国内成人免费视频| 狠狠色伊人亚洲综合成人| 日韩av一级片| 香蕉影视欧美成人| 日韩精品色哟哟| 视频一区在线视频| 婷婷国产v国产偷v亚洲高清| 日本午夜精品一区二区三区电影| 亚洲成a人片在线观看中文| 亚洲国产精品天堂| 午夜一区二区三区视频| 五月天丁香久久| 日本大胆欧美人术艺术动态| 日本va欧美va瓶| 精品国产免费一区二区三区四区| 日韩激情av在线| 亚洲va欧美va国产va天堂影院| 亚洲a一区二区| 日韩高清国产一区在线| 欧美aⅴ一区二区三区视频| 麻豆精品一区二区av白丝在线| 蜜臀a∨国产成人精品| 激情欧美一区二区三区在线观看| 国产99久久久国产精品潘金网站| 国产成人午夜精品影院观看视频 | 丁香啪啪综合成人亚洲小说| 一二三区精品福利视频| 日本一区二区三区国色天香| 中文乱码免费一区二区| 亚洲精品国产第一综合99久久| 亚洲与欧洲av电影| 亚洲人亚洲人成电影网站色| 日日夜夜精品视频天天综合网| 国内精品嫩模私拍在线| 99精品国产99久久久久久白柏| 在线中文字幕一区二区| 在线不卡a资源高清| 欧美亚洲国产一区二区三区va| 成人福利视频在线| 91色在线porny| 6080国产精品一区二区| 国产农村妇女毛片精品久久麻豆| 国产精品久久久久久久久久免费看 | 国产亚洲欧美日韩在线一区| 欧美一区永久视频免费观看| 欧美国产一区二区| 偷偷要91色婷婷| 色综合久久综合网欧美综合网| 欧美日韩在线直播| 亚洲精品在线网站| 一区二区高清视频在线观看| 国产精品一区一区| 在线欧美一区二区| 国产亚洲欧美日韩俺去了| 香蕉av福利精品导航| 国产精品亚洲一区二区三区在线| 95精品视频在线| 欧美福利视频导航| 一区二区三区中文在线| 国产很黄免费观看久久| 一区二区三区四区在线播放| 美美哒免费高清在线观看视频一区二区 | 天堂久久一区二区三区| 成人黄页毛片网站| 久久综合给合久久狠狠狠97色69| 亚洲国产日韩一级| 成人高清在线视频| 久久久久九九视频| 青青草国产精品97视觉盛宴| 成人黄色综合网站| 国产女主播在线一区二区| 久久99久久99精品免视看婷婷 | 欧洲视频一区二区| 精品入口麻豆88视频| 午夜欧美2019年伦理|