1 / 61

Lesson 6 Programming Techniques Event Handling /EvH/ AUBG ICoSCIS Team Assoc. Prof. Stoyan Bonev

Lesson 6 Programming Techniques Event Handling /EvH/ AUBG ICoSCIS Team Assoc. Prof. Stoyan Bonev. Lesson 6 Programming Techniques Event Handling /EvH/ AUBG ICoSCIS Team Assoc. Prof. Stoyan Bonev. March, 23 - 24, 2013 SWU, Blagoevgrad. Lesson contents.

errin
Télécharger la présentation

Lesson 6 Programming Techniques Event Handling /EvH/ AUBG ICoSCIS Team Assoc. Prof. Stoyan Bonev

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Lesson 6Programming TechniquesEvent Handling /EvH/AUBG ICoSCIS TeamAssoc. Prof. Stoyan Bonev

  2. Lesson 6Programming TechniquesEvent Handling /EvH/AUBG ICoSCIS TeamAssoc. Prof. Stoyan Bonev March, 23 - 24, 2013 SWU, Blagoevgrad

  3. Lesson contents • EvH – theory • EvH – practice • Demo Programs

  4. EvH – Theory • Event-driven programming • Event • Source • Listener • Respond to user events within any class you create • Prepare your class to accept event messages • Tell your class to expect events to happen • Tell your class how to respond to events

  5. Basic terminology • Event • Occurs when a user takes action on a component, such as clicking the mouse on a JButton object • User might initiate any number of events in any order • Source • Component on which an event is generated • Listener • Object that is interested in an event • Respond to user events within any class you create • Prepare your class to accept event messages • Tell your class to expect events to happen • Tell your class how to respond to events

  6. Handling an Event Clicking a JButton creates an event, known as action event which sends a message to another object known as action listener: When the listener receives the message, it performs some action. Sending a message or an event to a listener object means that a method in the listener object is invoked automatically with the event as argument. Two things are must to be done: For each GUI control, you must specify listener object. In Java, you must register the listener. You must define methods that will invoke when the event is sent to the listener. Normally, you write these methods and you never write the code for their invocation. Java Programming: From Problem Analysis to Program Design, 4e 6

  7. More on EvH • s

  8. Motivations Suppose you wish to write a GUI program that lets user enter the loan amount, annual interest rate, & number of years, and click the Compute Loan button to obtain the monthly payment and total payment. How do you accomplish the task? You have to use event-driven programming to write the code to respond to the button-clicking event.

  9. Motivations Suppose you wish to write a program that animates a rising flag, as shown in Figures below. How do you accomplish the task? An effective way to solve it is to use a timer in event-driven programming, which is the subject of this lecture.

  10. Procedural vs. Event-Driven Programming • Procedural programming is executed in procedural order. • In event-driven programming, code is executed upon activation of events.

  11. Event-Driven ProgrammingPractical Demo IntroductionExample: the ActionListener Interface(open file ProgDemoEvH1.java)

  12. To feel Event-Driven Programming • The case: • 3 buttons (OK, Cancel, Exit) placed into a panel. • Panel placed into a frame. • The program displays 3 buttons in the frame. • A message is displayed on the console and into a message box when a button is clicked.

  13. To respond to a button click, you must write the code to process the button-clicking action • The button is a source object where the action originates. • You need to create an object capable of handling the action event on a button. This object is called a listener. • Button ------------------ Event ------------------ Listener ↑ ↑ ↑ Clicking An event Listener object Button fires is an object processes the action event event

  14. How to understand source & listener • Source is an object, like component button • To be a listener: • The object must be instance of the ActionListener interface. You need a user class to implement the interface ( method actionPeformed()) and to create object of your user defined class. • The object created as a listener must be registered with (i.e. to bind it to) the source using method source.addListener(listener)

  15. How to understand source & listener // Create a button with text OK JButton jbtOK1 = new JButton("OK"); // creating listener as object/instance OK1ListenerClass listenerOK = new OK1ListenerClass(); // registering listener, i.e. binding listener by component jbtOK1.addActionListener(listenerOK); // user specified class to implement interface class OK1ListenerClass implements ActionListener { public void actionPerformed(ActionEvent e) { System.out.println("OK button clicked" ); JOptionPane.showMessageDialog(null,"OK button clicked"); } // end of method } // end of class

  16. The ActionListener Interfaceand Handling GUI Events Source object (e.g., button) Listener object contains a method for processing the event. 16

  17. Trace Execution public class HandleEvent extends JFrame { public HandleEvent() { … OKListenerClass listener1 = new OKListenerClass(); jbtOK.addActionListener(listener1); … } public static void main(String[] args) { … } } class OKListenerClass implements ActionListener { public void actionPerformed(ActionEvent e) { System.out.println("OK button clicked"); } } 17

  18. Event-Driven ProgrammingComprehensive Introduction • .

  19. Java uses a delegation-based model for event handling: a source object fires an event; an object interested in the event, handles it • Button --------------------- Event ------------------- Listener • ↑ ↑ ↑ • Clicking An event Listener object • Button fires is an object processes the • action event event

  20. Event Source • The component that creates an event and fires it, is called • Source object or • Source component • E.g. a button is a source object for a button-clicking action event

  21. Listener • Java uses delegation-based model for EvH: • A source object fires an event, and • An object, interested in the event, handles it. The object is called listener. • For an object to be a listener for an event on a source object, two requirements must meet: • The object must be instance of the corresponding event-listener interface. You need a user class to implement the interface and to create object of your user defined class. • The listener object created must be registered by (i.e. to bind it to) the source using method like source.addListener(listener)

  22. 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. • An event is an instance of EventObject class.

  23. Event Classes

  24. Event Information An event object contains whatever properties are pertinent to the event. You can identify the source object of the event using thegetSource()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 on next page lists external user actions, source objects, and event types generated.

  25. Selected User Actions Source Event TypeUser Action Object Generated Click a button JButton ActionEvent Click a check box JCheckBox ItemEvent, ActionEvent Click a radio button JRadioButton ItemEvent, ActionEvent Press return on a text field JTextField ActionEvent Select a new item JComboBox ItemEvent, ActionEvent Window opened, closed, etc. Window WindowEvent Mouse pressed, released, etc. Component MouseEvent Key released, pressed, etc. Component KeyEvent

  26. The Delegation Model: Example JButton jbt = new JButton("OK"); ActionListener listener = new OKListener(); jbt.addActionListener(listener); Comment: when you click the button, the JButton source object (jbt) fires an ActionEvent event and passes it to invoke the listener’s actionPerformed() method to handle the event

  27. Selected Event Handlers Event Class Listener Interface Listener Methods (Handlers)ActionEvent ActionListener actionPerformed(ActionEvent) ItemEvent ItemListener itemStateChanged(ItemEvent) WindowEvent WindowListener windowClosing(WindowEvent) windowOpened(WindowEvent) windowIconified(WindowEvent) windowDeiconified(WindowEvent) windowClosed(WindowEvent) windowActivated(WindowEvent) windowDeactivated(WindowEvent) ContainerEvent ContainerListener componentAdded(ContainerEvent) componentRemoved(ContainerEvent) MouseEvent MouseListener mousePressed(MouseEvent) mouseReleased(MouseEvent) mouseClicked(MouseEvent) mouseExited(MouseEvent) mouseEntered(MouseEvent) KeyEvent KeyListener keyPressed(KeyEvent) keyReleased(KeyEvent) keyTypeed(KeyEvent)

  28. java.awt.event.ActionEvent

  29. Demo program • Open file ProgDemoEvH1.java • Examine the source text • Three buttons, three classes to implement interface ActionListener, three listeners objects registered to the buttons • Compile • Run • Output – mixture of console output and showMessageDialog

  30. Demo program • Open file ProgDemoEvH1.java • Examine the source text • Modify the program on your choice • Call ActionEvent methods like • getSource() • getActionCommand() • getWhen()

  31. Demo program • Open file ProgDemoMouseEvents.java • Examine the source text • Panel into a frame, one user defined class to implement interface MouseListener and all its methods, one listener object registered to the panel • Compile • Run • Output – console output

  32. MouseEvent

  33. Handling Mouse Events • Java provides two listener interfaces, MouseListener andMouseMotionListener, to handle mouse events. • The MouseListener listens for actions such as when the mouse is pressed, released, entered, exited, or clicked. • The MouseMotionListener listens foractions such as dragging or moving themouse.

  34. Handling Mouse Events

  35. Demo program • Open file ProgDemoMouseEvents.java • Examine the source text • Modify the program on your choice • Call some MouseEvent methods (details before 3 slides)

  36. Demo program • Open file ProgDemoKeyEvents.java • Examine the source text • Panel into a frame, one user defined class to implement interface KeyListener and all its methods, one listener object registered to the panel • Compile • Run • Output – console output and graphic output

  37. Inner Class Listeners A listener class is designed specifically to create a listener object for a GUI component (e.g., a button). It will not be shared by other applications. So, it is appropriate to define the listener class inside the frame class as an inner class.

  38. Inner Classes Inner class: A class is a member of another class. Advantages: In some applications, you can use an inner class to make programs simple. • An inner class can reference the data and methods defined in the outer class in which it nests, so you do not need to pass the reference of the outer class to the constructor of the inner class.

  39. Inner Classes, cont.

  40. Inner Classes (cont.) • Inner classes can make programs simple and concise. • An inner class supports the work of its containing outer class and is compiled into a class named OuterClassName$InnerClassName.class. For example, the inner class InnerClass in OuterClass is compiled into OuterClass$InnerClass.class.

  41. Demo program • Open file ProgDemoKeyEvents.java • Examine the source text • Modify the program on your choice

  42. Handling Keyboard Events To process a keyboard event, use the following handlers in the KeyListener interface: • 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 thenreleased.

  43. The KeyEvent Class • Methods: getKeyChar() method getKeyCode() method • Keys: Home VK_HOME End VK_END Page Up VK_PGUP Page Down VK_PGDN etc...

  44. The KeyEvent Class, cont.

  45. Example: 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.

  46. Demo program • Open file ProgDemoControlRectangle.java • Examine the source text • Three buttons, three classes to implement interface ActionListener and its EvHandler method ActionPerformed(), three listeners objects registered to the buttons • Compile • Run • Output –console output and graphics output

  47. Ideas to modify this demo Circle instead of rectangle.

  48. Ideas to modify this demo String instead of rectangle.

  49. Demo program • Open file ProgDemoControlRectangle.java • Examine the source text • Modify the program on your choice

  50. Demo program • Open file ProgDemoWindowEvents.java • Examine the source text • Panel into a frame, one user defined class to implement interface WindowListener and all its seven methods, one listener object registered to the entire frame or window • Compile • Run • Output – console output

More Related