1.00 lecture 16 the swing event model 1. 2 gui event model operating system (windows, jvm) runs the...

27
1.00 Lecture 16 The Swing Event Model The Swing Event Model 1

Upload: austen-dickerson

Post on 01-Jan-2016

213 views

Category:

Documents


0 download

TRANSCRIPT

1.00 Lecture 16

The Swing Event ModelThe Swing Event Model

1

2

GUI Event Model

• Operating system (Windows, JVM) runs the show: – Monitors keystroke, mouse, other I/O events from sources – Dispatches event messages to programs that need to know – Each program decides what to do when the event occurs

• This is the reverse of console-oriented programming, where the program asks the operating system (OS) to get input when it wants it

3

Sources and Listeners

• Event sources: menus, buttons, scrollbars, etc. – Have methods allowing event listeners to register with them

– When event occurs, source sends message (an event object)

to all registered listener objects

– EventObject is the superclass • ActionEvent, MouseEvent, etc. are subclasses that we

use

• Event listeners: objects in your program that respond to events – Event delegation allows programmer to pick the object

4

Event Delegation

• Java® runtime system generates AWTEvent

objects when user does something with

mouse or keyboard• UI components allow you to subscribe to

these events so, when an event you

subscribed for happens, a method in your

code is called.• We use a JButton in the following example

5

Events: JButton Example• Import java.awt.event.* package – Provides classes for different types of events and a set of interfaces• Create a JButton object and add it to panel• Create object (can be the panel) to implement the ActionListener interface. To qualify, the class must have a method void actionPerformed(ActionEvent e) – The actionPerformed method has the code you want executed whenever the button is pushed. • Tell the JButton object to send an ActionEvent to the object that is the ActionListener. If obj is the listener, and b is a reference to the JButton object b.addActionListener(obj);

6

Button Example

import java.awt.*; import javax.swing.*;import java.awt.event.*;

public class Button1 { public static void main(String[] args) { BFrame frame= new BFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.show(); } }class BFrame extends JFrame { public BFrame() { setTitle("Button Example"); setSize(XSIZE, YSIZE); ButtonPanel panel= new ButtonPanel(); Container contentPane= get ContentPane(); contentPane.add(panel); } public static final int XSIZE= 200; public static final int YSIZE= 200; }

7

Button Example, p.2

class ButtonPanel extends JPanel implements ActionListener { public ButtonPanel() { JButton countButton= new JButton(“Advance count"); countLabel=new JLabel("Count= 0"); Font fontShow= new Font("Monospaced", Font.PLAIN, 24); countLabel.setFont(fontShow); countButton.setFont(fontShow); add(countButton); add(countLabel); countButton.addActionListener(this); } public void actionPerformed(ActionEvent e) { i++; countLabel.setText("Count= " + i); } private int i= 0; private JLabel countLabel;}

8

Button Example Framework

ButtonPanel implements ActionListener

countButton countLabel actionPerformed method(event source) (inert) (event listener)

countButton.addActionListener(this)

Button press events

9

Event Listeners

• You may select any object, as long as it implements ActionListener, to be the event listener. Either: – Add actionPerformed method to GUI element class – Create new class as listener – Create ‘inner class’ as listener (covered later)• Next example, ComboBox, has multiple event sources (3) and we must listen and distinguish the 3 types of event – Example displays fonts selected by user – Font family, font style, font size are chosen

10

ComboBoxApp

public class ComboBoxApp extends JFrame { public ComboBoxApp() { setTitle("ComboBox Example"); setDefaultCloseOperation(EXIT_ON_CLOSE); setSize(XSIZE, YSIZE);

ComboPanel panel= new ComboPanel(); Container contentPane= getContentPane(); contentPane.add(panel, "Center" ); } public static final int XSIZE= 600; public static final int YSIZE= 400; }

11

ComboBoxApp, 2

public class ComboBoxApp extends JFrame { public ComboBoxApp() { setTitle("ComboBox Example"); setDefaultCloseOperation(EXIT_ON_CLOSE); setSize(XSIZE, YSIZE);

ComboPanel panel= new ComboPanel(); Container contentPane= getContentPane(); contentPane.add(panel, "Center" ); } public static final int XSIZE= 600; public static final int YSIZE= 400; }

12

ComboBoxApp, 3 JPanel comboPanel = new JPanel( ); comboPanel.add(chFamily); comboPanel.add(chStyle); comboPanel.add(chSize); add( comboPanel, "North" ); add( showFont, "Center" ); chFamily.addActionListener(this); chStyle.addActionListener(this); chSize.addActionListener(this);}

private String curFamily= "Monospaced"; private String curStyle= "PLAIN"; private int curSize= 10;private JLabel showFont; private JComboBox chFamily; private JComboBox chStyle; private JComboBox chSize;

13

ComboBoxApp, 4public void actionPerformed(ActionEvent e) { if (e.getSource( ) == chFamily) curFamily= (String) chFamily.getSelectedItem( ); else if (e.getSource( ) == chStyle) curStyle= (String) chStyle.getSelectedItem( ); else if (e.getSource( ) == chSize) curSize= Integer.parseInt( (String)chSize.getSelectedItem( )); showF

ont.setFont( new Font( curFamily, styleIndex(curStyle), curSize) ); showFon

t.setText(curFamily +" "+ curStyle +" "+ curSize); } public int styleIndex(String s) { if (s.equals("BOLD")) return Font.BOLD; else if (s.equals("ITALIC")) return Font.ITALIC; else return Font.PLAIN; }

14

Event Types

• Semantic events vs low-level events – Semantic events are generally meaningful, often the result of a sequence of low -level events. Examples: • ActionEvent: user action on object (button click) • AdjustmentEvent: value adjusted (scroll bar) • ItemEvent: selectable item changed (combo box) • TextEvent: value of text changed – Low level events announce a direct manipulation of the user input devices, e.g. mouse, keyboard. Examples: • MouseEvent: mouse entered, exited, pressed, released, clicked • MouseMotionEvent: mouse moved, dragged

15

Mousing Example

A. Download Mousing.java to a new directory: – In your web browser go to: Mousing.java

Save the downloaded file in your mounted directory. (Right click, ‘Save Link As’)B. Create a project called Mousing and add the Mousing.java file to your project .C. Mousing is a very simple program that creates a button that liste

ns for both the high level ActionEvent and low level mouse events. It prints them all out. Read the code over so you see how it is put together.

16

Mousing Example, 2

C. You might wonder how to find out what events a component can produce. Look at the Javadoc for JButton and search for addEvent

TypeListener methods. When you find one (and check base classes also), follow the hyperlink to the event listener interface. That will list a set of event types and callbacks tha t the component can generate. Once you have found all the add...Listener methods, you will have found all the events.

D. Compile and run Mousing. Experiment with your mouse to determine under exactly what conditions a button will send an Action

Event. For instance, do you get an ActionEvent as soon as you press the mouse over a button? What does listening for Actio

nEvents gain you over listening for the raw mouse events.

17

Anonymous Inner Classes

• Java® offers a shortcut to class creation

that makes writing event listeners easier.

• We will look at this feature more

thoroughly in Lecture 25.

• The ComboBoxApp listens to 3

JComboBoxes and tests ActionEvents to

determine their source.

• Wouldn't it be easier if there was an

economical way to write a separate action

listener for each one?

18

AnonComboBoxApp

class AnonComboPanel extends JPanel //implements ActionListener { . . . //chFamily.addActionListener(this); chFamily.addActionListener( new ActionListener() { public void actionPerformed( ActionEvent e ) { curFamily= (String) chFamily.getSelectedItem(); showFont.setFont( new Font( curFamily, styleIndex(curStyle), curSize) ); showFont.setText(curFamily + " " + curStyle + " " + curSize); } } ); //chStyle/chSize.addActionListener(this); //no joint actionPerformed() method

19

AnonComboBoxApp, 2

• AnonComboBox no longer implements ActionListener or possesses an actionPerformed method.• The 3 anonymous inner classes take over that function.• It looks as if we are newing an interface, which would be illegal. Actually we are creating an nameless class that will only have a single instance, the one we create right here for the addActionListener() method.• The new constructor call can NOT have arguments.

chFamily.addActionListener( new ActionListener() { . . . } );

20

AnonComboBoxApp, 3

• We must provide an implementation of the actionPerformed() method in the anonymous class.• It can access static and instance members from the enclosing class, even private ones. chFamily.addActionListener( new ActionListener() { public void actionPerformed( ActionEvent e ) { curFamily= (String) chFamily.getSelectedItem( ); showFont.setFont( new Font( curFamily, styleIndex(curStyle), curSize) ); showFont.setText(curFamily + " " + curStyle + " " + curSize); } // end actionPerformed } // end ActionListener );

21

Clock Example

A. Download Clock.java and ClockTest.java and add them to a new project called Clock

B. The Clock class defines (not surprisingly) a clock object. Take a quick look at it but don’t spend too much time trying to understand the details. Here is a summary of the methods:

– Clock(): this is the constructor. All you need to know is that it constructs the GUI (you don’t have to worry about the details for now): • It instantiates two buttons: “Tick”, “Reset”. • It instantiates two Labels (initialized to “12” and “00”) to numerically display the time. • It adds the buttons and labels to the panel.

22

Clock Example

C.(Cont’d) – paintComponent(Graphicsg): this method draws the clock and the hours and minutes hands according to the minutes value (Once again, don’t worry about the details of how this is done. We'll explore this kind of drawing in the next class.) – tick(): this method increments minutes by one then repaints the clock • repaint() will call the paintComponent method which will redraw the clock with the clock hands adjusted to the new minutes value) – reset(): This method resets minutes to zero then repaints the clock. – getMinutes(): Access method that returns minutes.

23

Clock Example

C. (cont’d) To sum up all you need to know about this class (and this is the beauty of OOP) is the behavior dictated by its public methods, that is tick(), getMinutes() and reset() methods, without having to worry about how the clock will draw itself.

D. TestClock Class: extends JFrame. The main method creates an instance of the TestClock which will launch the constructor and will create and add a clock.

E. Compile and run your project. You can see the GUI, but so far the program doesn’t do anything. In this exercise, we’re going to construct the GUI event model for this clock.

24

Making the Clock Tick

A. We need to make the clock tick whenever the user pushes the “Tick” button. Make the necessary changes so that Clock implements the ActionListener interface (see the Button Example). A dialog box might appear when implementing the ActionListener. It will recommend changes in the class. You may either choose process All to confirm the changes, which

will add the actionPerformed method, or close the dialog and manually add this method. Leave the actionPerformed method empty for the moment. Build your project to make sure you didn’t forget anything.

B. Subscribe the ActionListener object (Clock) to tickButton ( a good place to do this is at the end of the Clock constructor).

C. Now write the contents of the actionPerformed method to make the clock hands tick (this should take one line of code). Compile and run. Try the “Tick” button. You should see the clock hands moving. The labels shouldn’t do anything yet.

25

Reset the Clock

A. Now we need the clock to be reset to 12:00 whenever we push the reset button. Subscribe the ActionListener object to the

resetButton .

B. Modify the actionPerformed(ActionEvent e) method so that it can distinguish between events coming from the resetButton and events coming from the tickButton (see ComboBox exercise).

C. Make the clock hands reset to 12:00. Compile and run.

26

Use Anonymous Inner Classes

Now rewrite the event handling to use two anonymous inner classes instead of the single actionPerformed() method. (See the AnonComboBox example).Compile and test.

27

Displaying the Time (Optional)

A. We want to display the current time in the the hourLabel and minuteLabel. In Clock, create a method with the following signature: public void setLabels( ) This method should calculate two variables: • number of integer hours contained in minutes. • number of minutes after removing the number of hours. – Display those two variables in hourLabel and minuteLabel. In order to display a string in a Label, you should make use of setTex

t(String) (e.g. hourLabel.setText(String); Hints: 1. Integer.toString(int) takes an integer as an argument and returns a String. 2. If minutes < 60, then the hour label should show 12. 3. The minute label should always show two digits (e.g. 12:08)B. Call this method from the appropriate location. Compile and run.