Liang,Introduction to Java Programming,revised by Dai-kaiyu 1 Chapter 12 Event-Driven Programming 找出画中真谛 — 保罗. 塞尚.

Slides:



Advertisements
Similar presentations
Event-Driven Programming You might have realized in creating a GUI and clicking on the JButtons that nothing happens Clicking on a JButton causes the JVM.
Advertisements

Managing Input Events in Swing Week 5 Workshop Lyn Bartram.
Event Handling. In this class we will cover: Basics of event handling The AWT event hierarchy Semantic and low-level events in the AWT.
Event Handling Events and Listeners Timers and Animation.
Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved Chapter 15 Event-Driven Programming.
Liang, Introduction to Java Programming, Sixth Edition, (c) 2007 Pearson Education, Inc. All rights reserved Chapter 14 Event-Driven Programming.
Events ● Anything that happens in a GUI is an event. For example: – User clicks a button, presses return when typing text, or chooses a menu item ( ActionEvent.
Event-Driven Programming Event:  A signal to the program that something has happened.  It can be triggered either by external user actions, such as mouse.
Event-Driven Programming
Unit 12 Object-oriented programming: Event-driven programming for GUI Jin Sa.
Event Handling n Events: an event is an object that describes a state change in a source. n Event Sources: A source is an object that generates an event.
1 Gui Programming (Part I) Graphical User Interfaces (Part I) l Introduction to events. l A Brief history. l Event sources and listeners. l The delegation.
1 UFCE3T-15-M Object- oriented Design and Programming Block 3 GUI Programming Jin Sa.
Intermediate Java1 An example that uses inner classes Week Four Continued.
Liang, Introduction to Java Programming, Ninth Edition, (c) 2013 Pearson Education, Inc. All rights reserved. 1 Chapter 16 Event-Driven Programming.
1 Event-Driven Programming Just like designing GUIs, you also will probably not write Java code like the program examples given in these notes. You will.
Chapter 12 Applets and Advanced Graphics  The Applet Class  The HTML Tag F Passing Parameters to Applets F Conversions Between Applications and Applets.
GUI Programming in Java: Event Handling & More Components Corresponds with Chapter 14, Chapter 15.
More Event Handling Adapters Anonymous Listeners Pop menus Validating User Input.
1 Chapter 10 Getting Started with Graphics Programming F Graphics Class Hierarchy F Frames –Creating frames, centering frames, adding components to frames.
Java GUI’s are event driven, meaning they generate events when the user interacts with the program. Typical events are moving the mouse, clicking a mouse.
Liang, Introduction to Java Programming, Sixth Edition, (c) 2007 Pearson Education, Inc. All rights reserved Chapter 14 Event-Driven Programming.
Chapter 10: Applets and Advanced Graphics The Applet Class The Applet Class The HTML Tag The HTML Tag Passing Parameters to Applets Passing Parameters.
Dale Roberts GUI Programming using Java - Event Handling Dale Roberts, Lecturer Computer Science, IUPUI Department of Computer.
 2002 Prentice Hall, Inc. All rights reserved Introduction Graphical User Interface (GUI) –Gives program distinctive “look” and “feel” –Provides.
– Advanced Programming P ROGRAMMING IN Lecture 21 Introduction to Swing.
1 Outline 1 Introduction 2 Overview of Swing Components 3 JLabel 4 Event Handling 5 TextFields 6 How Event Handling Works 7 JButton 8 JCheckBox and JRadioButton.
Graphic User Interface. Graphic User Interface (GUI) Most of us interact with computers using GUIs. GUIs are visual representations of the actions you.
COMP 321 Week 2. Outline Event-Driven Programming Events, Event Sources, Event Listeners Button and Timer Events Mouse Events, Adapters.
Omer Boyaci.  GUIs are event driven.  When the user interacts with a GUI component, the interaction—known as an event—drives the program to perform.
Liang, Introduction to Java Programming, Fifth Edition, (c) 2005 Pearson Education, Inc. All rights reserved Chapter 12 Event-Driven Programming.
Pravin Yannawar, DOCS, NMU Jalgaon. Basic Java : Event handling in AWT and Swing 2 Objectives of This Session Explain the Event handling mechanism & demonstrate.
© Copyright by Deitel & Associates, Inc. and Pearson Education Inc. All Rights Reserved. 1 Outline 21.1 Test-Driving the Painter Application.
Event Handling. 2 GUIs are event driven –Generate events when user interacts with GUI e.g., moving mouse, pressing button, typing in text field, etc.
CS-1020 Dr. Mark L. Hornick 1 Event-Driven Programming.
Anonymous Classes An anonymous class is a local class that does not have a name. An anonymous class allows an object to be created using an expression.
Lesson 6 Programming Techniques Event Handling /EvH/ AUBG ICoSCIS Team Assoc. Prof. Stoyan Bonev March, , 2013 SWU, Blagoevgrad.
Object Oriented Programming.  Interface  Event Handling.
Event Handling. The signals that a program receives from the operating system as a result of the actions are called events. A window based program is.
Agenda Introduction. Event Model. Creating GUI Application. Event Examples.
Liang, Introduction to Java Programming, Eighth Edition, (c) 2011 Pearson Education, Inc. All rights reserved Chapter 14 Abstract Classes.
Events in JAVA Needed for Applets and GUI based programs. Applet uses GUI to interact with user. Most of the events are generated by Mouse, Keyboard.
Creating User Interfaces Event-Driven Programming.
Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All rights reserved. 1 Chapter 15 Event-Driven Programming and.
Event-Driven Programming CSCI 201L Jeffrey Miller, Ph.D. HTTP :// WWW - SCF. USC. EDU /~ CSCI 201 USC CSCI 201L.
Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All rights reserved. 1 Chapter 15 Event-Driven Programming and.
Event-Driven Programming F Procedural programming is executed in procedural order. F In event-driven programming, code is executed upon activation of events.
1 Event Handling – Lecture 4 Prepared by: Ahmad Ramin Rahimee Assistant Professor ICTI.
EVENT-DRIVEN PROGRAMMING Subject:T0934 / Multimedia Programming Foundation Session:2 Tahun:2009 Versi:1/0.
What Is an Event? Events – Objects that describe what happened Event sources – The generator of an event Event handlers – A method that receives an event.
1 Chapter 3 Event-Driven Programming. 2 Objectives F To explain the concept of event-driven programming (§12.2). F To understand event, event source,
CSI 3125, Preliminaries, page 1 Event Handling. CSI 3125, Preliminaries, page 2 Event Handling An Event Change in the state of an object is known as event.
Mouse Events GUI. Types of Events  Below, are some of the many kinds of events, swing components generate. Act causing EventListener Type User clicks.
Chapter 10 - Writing Graphical User Interfaces1 Chapter 10 Writing Graphical User Interfaces.
Sep 181 Example Program DemoTranslateEnglishGUI.java.
TENTH LECTURE Event and listener. Events and Listeners An event can be defined as a type of signal to the program that something has happened. The event.
Dept. of CSIE, National University of Tainan 10/21/2012 Responding to User Input.
Prepared by: Dr. Abdallah Mohamed, AOU-KW Unit7: Event-driven programming 1.
Events and Event Handling
Chapter 14 Event-Driven Programming
CompSci 230 S Programming Techniques
Programming in Java, 2e Sachin Malhotra Saurabh Choudhary.
CHAPTER Reacting to the user.
Chapter 12 Event-Driven Programming
Event Handling Chapter 2 Objectives
Programming in Java Event Handling
GUI Programming III: Events
Event-driven programming for GUI
Chapter 16 Event-Driven Programming
Chapter 15 Event-Driven Programming and Animations Part 1
Presentation transcript:

Liang,Introduction to Java Programming,revised by Dai-kaiyu 1 Chapter 12 Event-Driven Programming 找出画中真谛 — 保罗. 塞尚

Liang,Introduction to Java Programming,revised by Dai-kaiyu 2 Objectives To explain the concept of event-driven programming (§12.2). To understand event, event source, and event classes (§12.2). To declare listener classes and write the code to handle events (§11.3). To register listener objects in the source object (§11.3). To understand how an event is handled (§11.3). To write programs to deal with ActionEvent (§11.3). To write programs to deal with MouseEvent (§11.4). To write programs to deal with KeyEvent (§11.5). To use the Timer class to control animations (§11.6 Optional).

Liang,Introduction to Java Programming,revised by Dai-kaiyu 3 Procedural vs. Event-Driven Programming Procedural programming is executed in procedural order. In OO GUI programming, code is executed upon activation of events. GUIs are event driven  Generate events when user interacts with GUI e.g., moving mouse, pressing button, typing in text field, etc. Class java.awt.AWTEvent

Liang,Introduction to Java Programming,revised by Dai-kaiyu 4 Events An event can be defined as a type of signal to the program that something has happened. The event is generated by external user actions such as mouse movements, mouse clicks, and keystrokes, or by the operating system, such as a timer.

Liang,Introduction to Java Programming,revised by Dai-kaiyu 5 Event Classes

Liang,Introduction to Java Programming,revised by Dai-kaiyu 6 Event Information An event object contains whatever properties are pertinent to the event. You can identify the source object of the event using the getSource() instance method in the EventObject class. The subclasses of EventObject deal with special types of events, such as button actions, window events, component events, mouse movements, and keystrokes. Table 12.1 lists external user actions, source objects, and event types generated.

Liang,Introduction to Java Programming,revised by Dai-kaiyu 7 Selected User Actions SourceEvent Type User ActionObjectGenerated Click a button JButtonActionEvent Click a check box JCheckBoxItemEvent, ActionEvent Click a radio button JRadioButtonItemEvent, ActionEvent Press return on a text field JTextFieldActionEvent Select a new item JComboBoxItemEvent, ActionEvent Window opened, closed, etc. WindowWindowEvent Mouse pressed, released, etc. ComponentMouseEvent Key released, pressed, etc. ComponentKeyEvent

Liang,Introduction to Java Programming,revised by Dai-kaiyu 8 Event-Handling Model Event-handling model  Three parts Event source GUI component with which user interacts Event object Encapsulates information about event that occurred Event listener Receives event object when notified, then responds  Programmer must perform two tasks Register event listener for event source Implement event-handling method (event handler)

Liang,Introduction to Java Programming,revised by Dai-kaiyu 9 The Delegation Model

Liang,Introduction to Java Programming,revised by Dai-kaiyu 10 How Event Handling Works Two open questions from  How did event handler get registered? Answer: Through component’s method addActionListener  How does component know to call actionPerformed ? Answer: Event is dispatched only to listeners of appropriate type Each event type has corresponding event-listener interface  Event ID specifies event type that occurred For example: MouseEvent event’s ID spedify which method of the seven events will be handler

Liang,Introduction to Java Programming,revised by Dai-kaiyu 11 The Delegation Model: Example ListenerClass listener = new ListenerClass(); JButton jbt = new JButton("OK"); jbt.addActionListener(listener);

Liang,Introduction to Java Programming,revised by Dai-kaiyu 12 Event-listener interfaces of package java.awt.event

Liang,Introduction to Java Programming,revised by Dai-kaiyu 13 Selected Event Handlers Event ClassListener InterfaceListener Methods (Handlers) ActionEventActionListeneractionPerformed(ActionEvent) ItemEventItemListeneritemStateChanged(ItemEvent) WindowEventWindowListenerwindowClosing(WindowEvent) windowOpened(WindowEvent) windowIconified(WindowEvent) windowDeiconified(WindowEvent) windowClosed(WindowEvent) windowActivated(WindowEvent) windowDeactivated(WindowEvent) ContainerEventContainerListenercomponentAdded(ContainerEvent) componentRemoved(ContainerEvent) MouseEventMouseListenermousePressed(MouseEvent) mouseReleased(MouseEvent) mouseClicked(MouseEvent) mouseExited(MouseEvent) mouseEntered(MouseEvent) KeyEventKeyListenerkeyPressed(KeyEvent) keyReleased(KeyEvent) keyTypeed(KeyEvent)

Liang,Introduction to Java Programming,revised by Dai-kaiyu 14 java.awt.event.ActionEvent

Liang,Introduction to Java Programming,revised by Dai-kaiyu 15 Example 12.1 Handling Simple Action Events Objective: Display two buttons OK and Cancel in the window. A message is displayed on the console to indicate which button is clicked, when a button is clicked. TestActionEvent Run

Liang,Introduction to Java Programming,revised by Dai-kaiyu 16 Example 12.2 Handling Window Events TestWindowEvent Run  Objective: Demonstrate handling the window events. Any subclass of the Window class can generate the following window events: window opened, closing, closed, activated, deactivated, iconified, and deiconified. This program creates a frame, listens to the window events, and displays a message to indicate the occurring event.

Liang,Introduction to Java Programming,revised by Dai-kaiyu 17 Example 12.3 Multiple Listeners for a Single Source TestMultipleListener Run F Objective: This example modifies Example 12.1 to add a new listener for each button. The two buttons OK and Cancel use the frame class as the listener. This example creates a new listener class as an additional listener for the action events on the buttons. When a button is clicked, both listeners respond to the action event.

Liang,Introduction to Java Programming,revised by Dai-kaiyu 18 MouseEvent

Liang,Introduction to Java Programming,revised by Dai-kaiyu 19 Handling Mouse Events Java provides two listener interfaces, MouseListener and MouseMotionListener, to handle mouse events. The MouseListener listens for actions such as when the mouse is pressed, released, entered, exited, or clicked. The MouseMotionListener listens for actions such as dragging or moving the mouse.

Liang,Introduction to Java Programming,revised by Dai-kaiyu 20 Handling Mouse Events

Liang,Introduction to Java Programming,revised by Dai-kaiyu 21 Example 12.4 Moving Message Using Mouse Objective: Create a program to display a message in a panel. You can use the mouse to move the message. The message moves as the mouse drags and is always displayed at the mouse point. MoveMessageDemoRun

Liang,Introduction to Java Programming,revised by Dai-kaiyu 22 Example 12.5 Handling Complex Mouse Events Objective: Create a program for drawing using a mouse. Draw by dragging with the left mouse button pressed; erase by dragging with the right button pressed. ScribbleDemoRun

Liang,Introduction to Java Programming,revised by Dai-kaiyu 23 Adapter Classes Adapter class  Implements interface  Provides default implementation of each interface method  Used when all methods in interface is not needed

Liang,Introduction to Java Programming,revised by Dai-kaiyu 24 Event adapter classes and the interfaces they implement.

Liang,Introduction to Java Programming,revised by Dai-kaiyu 25 1 // Fig : Painter.java 2 // Using class MouseMotionAdapter. 3 4 // Java core packages 5 import java.awt.*; 6 import java.awt.event.*; 7 8 // Java extension packages 9 import javax.swing.*; public class Painter extends JFrame { 12 private int xValue = -10, yValue = -10; // set up GUI and register mouse event handler 15 public Painter() 16 { 17 super( "A simple paint program" ); // create a label and place it in SOUTH of BorderLayout 20 getContentPane().add( 21 new Label( "Drag the mouse to draw" ), 22 BorderLayout.SOUTH ); addMouseMotionListener( // anonymous inner class 27 new MouseMotionAdapter() { // store drag coordinates and repaint 30 public void mouseDragged( MouseEvent event ) 31 { 32 xValue = event.getX(); 33 yValue = event.getY(); 34 repaint(); 35 } Register MouseMotionListener to listen for window’s mouse-motion events Override method mouseDragged, but not method mouseMoved Store coordinates where mouse was dragged, then repaint JFrame

Liang,Introduction to Java Programming,revised by Dai-kaiyu } // end anonymous inner class ); // end call to addMouseMotionListener setSize( 300, 150 ); 42 setVisible( true ); 43 } // draw oval in a 4-by-4 bounding box at the specified 46 // location on the window 47 public void paint( Graphics g ) 48 { 49 // we purposely did not call super.paint( g ) here to 50 // prevent repainting g.fillOval( xValue, yValue, 4, 4 ); 53 } // execute application 56 public static void main( String args[] ) 57 { 58 Painter application = new Painter(); application.addWindowListener( // adapter to handle only windowClosing event 63 new WindowAdapter() { public void windowClosing( WindowEvent event ) 66 { 67 System.exit( 0 ); 68 } 69 Draw circle of diameter 4 where user dragged cursor super.paint( g ) will clear the background of the window. Then will not keep the previous voals. Showcase

Liang,Introduction to Java Programming,revised by Dai-kaiyu } // end anonymous inner class ); // end call to addWindowListener 73 } } // end class Painter Painter.java

Liang,Introduction to Java Programming,revised by Dai-kaiyu 28 Handling Keyboard Events keyPressed(KeyEvent e) Called when a key is pressed. keyReleased(KeyEvent e) Called when a key is released. keyTyped(KeyEvent e) Called when a key is pressed and then released.invoked when a Unicode character is entered. If the key dosen’t has one (eg modifier key), the keyTyped handler will not be invoked. To process a keyboard event, use the following handlers in the KeyListener interface:

Liang,Introduction to Java Programming,revised by Dai-kaiyu 29 The KeyEvent Class Methods: getKeyChar() method getKeyCode() method Keys: HomeVK_HOME EndVK_End Page UpVK_PGUP Page DownVK_PGDN etc...

Liang,Introduction to Java Programming,revised by Dai-kaiyu 30 The KeyEvent Class, cont.

Liang,Introduction to Java Programming,revised by Dai-kaiyu 31 Example 12.6 Keyboard Events Demo Objective: Display a user-input character. The user can also move the character up, down, left, and right using the arrow keys. KeyboardEventDemo Run

Liang,Introduction to Java Programming,revised by Dai-kaiyu 32 The Timer Class Not all source objects are GUI components. The javax.swing.Timer class is a source component that fires an ActionEvent at a predefined rate. Optional The Timer class can be used to control animations. For example, you can use it to display a moving message. AnimationDemo Run

Liang,Introduction to Java Programming,revised by Dai-kaiyu 33 Clock Animation In Section 11.12, you drew a StillClock to show the current time. The clock does not tick after it is displayed. What can you do to make the clock display a new current time every second? The key to making the clock tick is to repaint it every second with a new current time. You can use a timer to control how to repaint the clock. ClockAnimation Run