java-AWT教程

整理文档很辛苦,赏杯茶钱您下走!

免费阅读已结束,点击下载阅读编辑剩下 ...

阅读已结束,您可以下载文档离线阅读编辑

资源描述

5.2.1事件类与AWT有关的所有事件类都由java.awt.AWTEvent类派生,它也是EventObject类的子类。AWT事件共有10类,可以归为两大类:低级事件和高级事件。java.util.EventObject类是所有事件对象的基础父类,所有事件都是由它派生出来的。AWT的相关事件继承于java.awt.AWTEvent类,这些AWT事件分为两大类:低级事件和高级事件,低级事件是指基于组件和容器的事件,当一个组件上发生事件,如:鼠标的进入,点击,拖放等,或组件的窗口开关等,触发了组件事件。高级事件是基于语义的事件,它可以不和特定的动作相关联,而依赖于触发此事件的类,如在TextField中按Enter键会触发ActionEvent事件,滑动滚动条会触发AdjustmentEvent事件,或是选中项目列表的某一条就会触发ItemEvent事件。◇低级事件ComponentEvent(组件事件:组件尺寸的变化,移动)ContainerEvent(容器事件:组件增加,移动)WindowEvent(窗口事件:关闭窗口,窗口闭合,图标化)FocusEvent(焦点事件:焦点的获得和丢失)KeyEvent(键盘事件:键按下、释放)MouseEvent(鼠标事件:鼠标单击,移动)◇高级事件(语义事件)ActionEvent(动作事件:按钮按下,TextField中按Enter键)AdjustmentEvent(调节事件:在滚动条上移动滑块以调节数值)ItemEvent(项目事件:选择项目,不选择项目改变)TextEvent(文本事件,文本对象改变)5.2.2事件监听器每类事件都有对应的事件监听器,监听器是接口,根据动作来定义方法。例如,与键盘事件KeyEvent相对应的接口是:publicinterfaceKeyListenerextendsEventListener{publicvoidkeyPressed(KeyEventev);publicvoidkeyReleased(KeyEventev);publicvoidkeyTyped(KeyEventev);}注意到在本接口中有三个方法,那么java运行时系统何时调用哪个方法?其实根据这三个方法的方法名就能够知道应该是什么时候调用哪个方法执行了。当键盘刚按下去时,将调用keyPressed()方法执行,当键盘抬起来时,将调用keyReleased()方法执行,当键盘敲击一次时,将调用keyTyped()方法执行。又例如窗口事件接口:publicinterfaceWindowListenerextendsEventListener{publicvoidwindowClosing(WindowEvente);//把退出窗口的语句写在本方法中publicvoidwindowOpened(WindowEvente);//窗口打开时调用publicvoidwindowIconified(WindowEvente);//窗口图标化时调用publicvoidwindowDeiconified(WindowEvente);//窗口非图标化时调用publicvoidwindowClosed(WindowEvente);//窗口关闭时调用publicvoidwindowActivated(WindowEvente);//窗口激活时调用publicvoidwindowDeactivated(WindowEvente);//窗口非激活时调用}AWT的组件类中提供注册和注销监听器的方法:◇注册监听器:publicvoidadd(listener);◇注销监听器:publicvoidremove(listener);例如Button类:(查API)publicclassButtonextendsComponent{……publicsynchronizedvoidaddActionListener(ActionListenerl);publicsynchronizedvoidremoveActionListener(ActionListenerl);……}5.2.3AWT事件及其相应的监听器接口(1)5.2.3AWT事件及其相应的监听器接口(2)例5.10说明事件处理模型的应用。例5.10importjava.awt.*;importjava.awt.event.*;publicclassThreeListenerimplementsMouseMotionListener,MouseListener,WindowListener{//实现了三个接口privateFramef;privateTextFieldtf;publicstaticvoidmain(Stringargs[]){ThreeListenertwo=newThreeListener();two.go();}publicvoidgo(){f=newFrame(Threelistenersexample);f.add(newLabel(Clickanddragthemouse),North);tf=newTextField(30);f.add(tf,South);//使用缺省的布局管理器f.addMouseMotionListener(this);//注册监听器MouseMotionListenerf.addMouseListener(this);//注册监听器MouseListenerf.addWindowListener(this);//注册监听器WindowListenerf.setSize(300,200);f.setVisible(true);}publicvoidmouseDragged(MouseEvente){//实现mouseDragged方法Strings=Mousedragging:X=+e.getX()+Y=+e.getY();tf.setText(s);}publicvoidmouseMoved(MouseEvente){}//对其不感兴趣的方法可以方法体为空publicvoidmouseClicked(MouseEvente){}publicvoidmouseEntered(MouseEvente){Strings=Themouseentered;tf.setText(s);}publicvoidmouseExited(MouseEvente){Strings=Themousehasleftthebuilding;tf.setText(s);}publicvoidmousePressed(MouseEvente){}publicvoidmouseReleased(MouseEvente){}publicvoidwindowClosing(WindowEvente){//为了使窗口能正常关闭,程序正常退出,需要实现windowClosing方法System.exit(1);}publicvoidwindowOpened(WindowEvente){}//对其不感兴趣的方法可以方法体为空publicvoidwindowIconified(WindowEvente){}publicvoidwindowDeiconified(WindowEvente){}publicvoidwindowClosed(WindowEvente){}publicvoidwindowActivated(WindowEvente){}publicvoidwindowDeactivated(WindowEvente){}}上例中有如下几个特点:1.可以声明多个接口,接口之间用逗号隔开。……implementsMouseMotionListener,MouseListener,WindowListener;2.可以由同一个对象监听一个事件源上发生的多种事件:f.addMouseMotionListener(this);f.addMouseListener(this);f.addWindowListener(this);则对象f上发生的多个事件都将被同一个监听器接收和处理。3.事件处理者和事件源处在同一个类中。本例中事件源是Framef,事件处理者是类ThreeListener,其中事件源Framef是类ThreeListener的成员变量。4.可以通过事件对象获得详细资料,比如本例中就通过事件对象获得了鼠标发生时的坐标值。publicvoidmouseDragged(MouseEvente){Strings=Mousedragging:X=+e.getX()+Y=+e.getY();tf.setText(s);}Java语言类的层次非常分明,因而只支持单继承,为了实现多重继承的能力,Java用接口来实现,一个类可以实现多个接口,这种机制比多重继承具有更简单、灵活、更强的功能。在AWT中就经常用到声明和实现多个接口。记住无论实现了几个接口,接口中已定义的方法必须一一实现,如果对某事件不感兴趣,可以不具体实现其方法,而用空的方法体来代替。但却必须所有方法都要写上。5.2.4事件适配器Java语言为一些Listener接口提供了适配器(Adapter)类。可以通过继承事件所对应的Adapter类,重写需要方法,无关方法不用实现。事件适配器为我们提供了一种简单的实现监听器的手段,可以缩短程序代码。但是,由于java的单一继承机制,当需要多种监听器或此类已有父类时,就无法采用事件适配器了。1.事件适配器--EventAdapter下例中采用了鼠标适配器:importjava.awt.*;importjava.awt.event.*;publicclassMouseClickHandlerextendsMouseAdaper{publicvoidmouseClicked(MouseEvente)//只实现需要的方法{……}}java.awt.event包中定义的事件适配器类包括以下几个:1.ComponentAdapter(组件适配器)2.ContainerAdapter(容器适配器)3.FocusAdapter(焦点适配器)4.KeyAdapter(键盘适配器)5.MouseAdapter(鼠标适配器)6.MouseMotionAdapter(鼠标运动适配器)7.WindowAdapter(窗口适配器)2.用内部类实现事件处理内部类(innerclass)是被定义于另一个类中的类,使用内部类的主要原因是由于:◇一个内部类的对象可访问外部类的成员方法和变量,包括私有的成员。◇实现事件监听器时,采用内部类、匿名类编程非常容易实现其功能。◇编写事件驱动程序,内部类很方便。因此内部类所能够应用的地方往往是在AWT的事件处理机制中。例5.11importjava.awt.*;importjava.awt.event.*;publicclassInnerClass{privateFramef;privateTextFieldtf;publicInnerClass(){f=newFrame(Innerclassesexample);tf=newTextField(30);}publicvoidilaunchFrame(){Labellabel=newLabel(Clickanddragthemouse);f.add(label,BorderLayout.NORTH);f.add(tf,BorderLayout.SOUTH);f.addMouseMotionListener(newMyMouseMotionListener());/*参数为内部类对象*/f.setSize(300,200);f.setVisible(true);}classMyMouseMotionListenerextendsMouseMotionAdapter{/*内部类开始*/publicvoidmouseDragged(MouseEvente){Strings=Mousedraggi

1 / 11
下载文档,编辑使用

©2015-2020 m.777doc.com 三七文档.

备案号:鲁ICP备2024069028号-1 客服联系 QQ:2149211541

×
保存成功