Download presentation
Presentation is loading. Please wait.
1
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 7 Event-Driven Programming and Basic GUI Objects
2
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 7 Objectives After you have read and studied this chapter, you should be able to Define a subclass of the JFrame class, using inheritance. Write graphical user interface (GUI) application programs using JButton, JLabel, ImageIcon, JTextField, and JTextArea objects from the javax.swing package.
3
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 7 Objectives After you have read and studied this chapter, you should be able to Write GUI application programs with menus, using menu objects from the javax.swing package. Write event-driven programs, using Java’s delegation- based event model.
4
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Introduction This chapter covers the graphical user interface (GUI). In Java, GUI-based programs are implemented by using classes from the javax.swing and java.awt packages. The Swing classes provide greater compatibility across different operating systems. They are fully implemented in Java, and behave the same on different operating systems.
5
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Fig. 7.1 Various GUI objects from the javax.swing package.
6
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Introduction AWT classes are implemented by using the native GUI objects. Swing classes support many new functionalities not supported by AWT counterparts. Do not mix the counterparts in the same program because of their differences in implementation.
7
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Introduction To build an effective GUI using objects from the Swing and AWT packages, we must learn a new style of program control called event-driven programming. An event occurs when the user interacts with a GUI object. In event-driven programs, we program objects to respond to these events by defining event- handling methods.
8
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.1 Creating a Subclass of JFrame As we know from Chapter 1, inheritance is a feature we use to define a more specialized class from an existing class. The existing class is the superclass and the specialized class is the subclass.
9
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Fig. 7.2 The inheritance hierarchy of JOptionPane as shown in the API documentation.
10
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.1 Creating a Subclass of JFrame To create a customized user interface, we often define a subclass of the JFrame class. The JFrame class contains rudimentary functionalities to support features found in any frame window.
11
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.1 Creating a Subclass of JFrame /* Chapter 7 Sample Program: Displays a default JFrame window File: Ch7DefaultJFrame.java */ import javax.swing.*; class Ch7DefaultJFrame { public static void main( String[] args ) { JFrame defaultJFrame; defaultJFrame = new JFrame(); defaultJFrame.setVisible(true); }
12
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Fig. 7.3 A default JFrame window appears at the top left corner of the screen.
13
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.1 Creating a Subclass of JFrame To define a subclass of another class, we declare the subclass with the reserved word extends. class Ch7JFrameSubclass1 extends JFrame {... }
14
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.1 Creating a Subclass of JFrame We will also add the following default characteristics: The title is set to My First Subclass. The program terminates when the close box is clicked. The size of the frame is 300 pixels wide by 200 pixels high. The frame is positioned at screen coordinate (150, 250). These properties are set inside the default constructor.
15
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Fig. 7.4 How an instance of Ch7JFrameSubclass1 will appear on the screen.
16
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.1 Creating a Subclass of JFrame Every method of a superclass is inherited by its subclass. Because the subclass-superclass relationships are formed into an inheritance hierarchy, a subclass inherits all methods defined in its ancestor classes.
17
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.1 Creating a Subclass of JFrame Next we will define another subclass called Ch7JFrameSubclass2, which will have a white background. We will define this class as an instantiable main class so we don’t have to define a separate main class.
18
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.1 Creating a Subclass of JFrame To make the background white, we must access the frame’s content pane, the area of the frame excluding the title and menu bars and the border. We access the content pane by calling the frame’s getContentPane method. We change the background color by calling the content pane’s setBackground method.
19
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.1 Creating a Subclass of JFrame /* Chapter 7 Sample Program: A simple subclass of JFrame that changes the background color to white. File: Ch7JFrameSubclass2.java */ import javax.swing.*; import java.awt.*; class Ch7JFrameSubclass2 extends JFrame { private static final int FRAME_WIDTH = 300; private static final int FRAME_HEIGHT = 200; private static final int FRAME_X_ORIGIN = 150; private static final int FRAME_Y_ORIGIN = 250;
20
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.1 Creating a Subclass of JFrame public static void main(String[] args) { Ch7JFrameSubclass2 frame = new Ch7JFrameSubclass2(); frame.setVisible(true); } public Ch7JFrameSubclass2( ) { //set the frame default properties setTitle ( "White Background JFrame Subclass" ); setSize ( FRAME_WIDTH, FRAME_HEIGHT ); setLocation ( FRAME_X_ORIGIN, FRAME_Y_ORIGIN );
21
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.1 Creating a Subclass of JFrame //register 'Exit upon closing' as a default close operation setDefaultCloseOperation( EXIT_ON_CLOSE ); changeBkColor( ); } private void changeBkColor() { Container contentPane = getContentPane(); contentPane.setBackground(Color.white); }
22
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Fig. 7.5 An instance of Ch7JFrameSubclass2 that has a white background.
23
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.2 Placing Buttons on the Content Pane of a Frame There are two approaches to placing GUI objects on a frame’s content pane. One approach uses a layout manager, an object that controls the placement of the GUI objects. The other approach uses absolute positioning to explicitly specify the position and size of GUI objects on the content pane.
24
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.2 Placing Buttons on the Content Pane of a Frame To use absolute positioning, set the layout manager of a frame’s content pane to none by passing null to the setLayout method. contentPane.setLayout(null);
25
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.2 Placing Buttons on the Content Pane of a Frame We then place two buttons at the position and size we want by calling the button’s setBounds method: okButton.setBounds( 75, 125, 80, 30); The first two arguments specify the button’s position. The last two arguments specify the width and height of the button.
26
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.2 Placing Buttons on the Content Pane of a Frame To make a button appear on the frame, add it to the content pane by calling the add method. contentPane.add(okButton);
27
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Fig. 7.6 A sample window when it is first opened and after the CANCEL button is clicked.
28
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Fig. 7.7 The process of creating a button and placing it on a frame.
29
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.3 Handling Button Events An action involving a GUI object, such as clicking a button, is called an event. The mechanism to process events is called event handling.
30
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.3 Handling Button Events The event-handling model of Java is based on the concept known as the delegation-based event model. With this model, event handling is implemented by two types of objects: event source objects event listener objects.
31
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.3 Handling Button Events An event source object is a GUI object where an event occurs. An event source generates events. An event listener object is an object that includes a method that gets executed in response to the generated events. When an event is generated, the system notifies the relevant event listener objects.
32
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.3 Handling Button Events There are many different kinds of events, but the most common one is an action event. For the generated events to be processed, we must associate, or register, event listeners to the event sources. If event sources have no registered listeners, the generated events are ignored.
33
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.3 Handling Button Events An object that can be registered as an action listener must be an instance of a class that is declared specifically for the purpose. We call such classes action listener classes. To associate an action listener to an action event source, we call the event source’s addActionListener method with the action listener as its argument.
34
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.3 Handling Button Events A single listener can be associated to multiple event sources. Likewise, multiple listeners can be associated to a single event source.
35
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.3 Handling Button Events When an event source generates an event, the system checks for matching registered listeners. If there is no matching listener, the event is ignored. If there is a matching listener, the system notifies the listener by calling the listener’s corresponding method.
36
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.3 Handling Button Events In the case of action events, the method called is actionPerformed. To ensure the programmer includes the necessary actionPerformed method in the action listener class, the class must be defined in a specific way. import java.awt.event.*; class ButtonHandler implements ActionListener {... }
37
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.3 Handling Button Events ActionListener is an interface, not a class. Like a class, an interface is a reference data type, but unlike a class, an interface includes only constants and abstract methods. An abstract method has only the method header, or prototype; it has no method body.
38
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.3 Handling Button Events A class that implements a Java interface must provide the method body to all the abstract methods defined in the interface. By requiring an object we pass as an argument to the addActionListener method to be an instance of a class that implements the ActionListener interface, the system ensures that this object will include the necessary actionPerformed method.
39
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.3 Handling Button Events To change the title of the frame, depending on which button is clicked, we use the actionPerformed method. The method model is: public void actionPerformed(ActionEvent evt){ String buttonText = get the text of the event source; JFrame frame = the frame that contains this event source; frame.setTitle(“You clicked “ + buttonText); }
40
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.3 Handling Button Events The first statement may be handled in one of two ways. The first way is via the getActionCommand method of the action event object evt: String buttonText = evt.getActionCommand();
41
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.3 Handling Button Events The second way is via the getSource method of the action event object evt.: JButton clickedButton = (JButton) evt.getSource(); String buttonText = clickedButton.getText(); Note that the object returned by the getSource method may be an instance of any class, so we type cast the returned object to a proper class in order to use the desired method.
42
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.3 Handling Button Events To find the frame that contains the event source, we get the root pane to which the event source belongs, then get the frame that contains this root pane. JRootPane rootPane = clickedButton.getRootPane(); Frame frame = (JFrame) rootPane.getParent();
43
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.3 Handling Button Events A frame window contains nested layers of panes. The topmost pane is called the root pane. The frame can be the event listener of the GUI objects it contains. cancelButton.addActionListener(this); okButton.addActionListener(this);
44
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.4 JLabel, JTextField and JTextArea Classes The Swing GUI classes JLabel, JTextField, and JTextArea all deal with text. A JLabel object displays uneditable text. A JTextField object allows the user to enter a single line of text. A JTextArea object allows the user to enter multiple lines of text. It can also be used for displaying multiple lines of uneditable text.
45
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.4 JLabel, JTextField and JTextArea Classes An instance of JTextField generates action events when the object is active and the user presses the ENTER key. The actionPerformed method must determine which of the three event sources in our example (two buttons and one text field) generated the event.
46
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.4 JLabel, JTextField and JTextArea Classes The instanceof operator determines the class to which the event source belongs. The general model is thus: if (event.getSource() instanceof JButton { //event source is either cancelButton //or okButton... } else { //event source must be inputLine... }
47
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.4 JLabel, JTextField and JTextArea Classes The getText method of JTextField may be used to retrieve the text that the user entered. public void actionPerformed(ActionEvent event) { if (event.getSource() instanceof JButton) { JButton clickedButton = (JButton) event.getSource(); String buttonText = clickedButton.getText(); setTitle(“You clicked ” + buttonText); } else //the event source is inputLine { setTitle(“You entered ‘” + inputLine.getText() + “’”); }
48
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.4 JLabel, JTextField and JTextArea Classes A JLabel object is useful for displaying a label indicating the purpose of another object, such as a JTextField object. prompt = new JLabel(“Please enter your name”);
49
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.4 JLabel, JTextField and JTextArea Classes JLabel objects may also be used to display images. When a JLabel object is created, we can pass an ImageIcon object instead of a string. To create the ImageIcon object, we must specify the filename of the image.
50
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.4 JLabel, JTextField and JTextArea Classes We declare the data member private JLabel image; then create it in the constructor as public Ch7TextFrame2 {... image = new JLabel(new ImageIcon(“cat.gif”); //note that this assumes the.gif is //in the same directory as the program image.setBounds(10, 20, 50, 50); contentPane.add(image);... }
51
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Fig. 7.8 The Ch7TextFrame2 window with one text JLabel, one image JLabel, one JTextField, and two JButton objects.
52
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.4 JLabel, JTextField and JTextArea Classes Next we will declare a JTextArea object: private JTextArea textArea; and add statements to create it inside the constructor: textArea = new JTextArea(); textArea.setBounds(50, 5, 200, 135); textArea.setBorder(BorderFactory.createLineBorder(Colo r.red)); textArea.setEditable(false); contentPane.add(textArea);
53
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.4 JLabel, JTextField and JTextArea Classes We call the createLineBorder method of the BorderFactory class, because by default the rectangle indicating the boundary of the JTextArea object is not shown on the screen. We disable editing of the text area in the statement textArea.setEditable(false);
54
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.4 JLabel, JTextField and JTextArea Classes The append method allows us to add text to the text area without replacing old content. Using the setText method of JTextArea will replace old content with new content.
55
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.4 JLabel, JTextField and JTextArea Classes We want to ensure the program will behave consistently across all operating systems. The control character \n will not permit consistent behavior. Instead, we will implement: private static final String NEWLINE = System.getProperty(“line.separator”); as textArea.append(enteredText + NEWLINE);
56
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Fig. 7.9 The state of a Ch7TextFrame window after six words are entered.
57
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.4 JLabel, JTextField and JTextArea Classes To add scroll bars to the JTextArea object, we amend the earlier code as follows: textArea = new JTextArea(); textArea.setEditable(false); JScrollPane scrollText = new JScrollPane(textArea); scrollText.setBounds(50, 5, 200, 135); scrollText.setBorder(BorderFactory.createLine Border(Color.red)); contentPane.add(scrollText);
58
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Fig. 7.10 A sample Ch7TextFrame3 window when the JScrollPane GUI object is used.
59
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.5 Menus The javax.swing package contains three useful menu-related classes: JMenuBar, JMenu, and JMenuItem. JMenuBar is a bar where the menus are placed. JMenu (such as File or Edit) is a single item in the JMenuBar. JMenuItem (such as Copy, Cut, or Paste) is an individual menu choice in the JMenu.
60
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.5 Menus When a menu item is selected, it generates a menu action event. We process menu selections by registering an action listener to menu items.
61
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.5 Menus The following example will create the two menus below and illustrate how to display and process the menu item selections.
62
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.5 Menus We will follow this sequence of steps: 1.Create a JMenuBar object and attach it to a frame. 2.Create a JMenu object. 3.Create JMenuItem objects and add them to the JMenu object. 4.Attach the JMenu object to the JMenuBar object.
63
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.5 Menus We create a fileMenu object as fileMenu = new JMenu(“File”); The argument to the JMenu constructor is the name of the menu. Menu items appear from the top in the order in which they were added to the menu.
64
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.5 Menus To create and add a menu item New to fileMenu, we execute item = new JMenuItem(“New”); item.addActionListener(this); fileMenu.add(item); And to add a horizontal line as a separator between menu items, we execute fileMenu.addSeparator();
65
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. 7.5 Menus We then attach the menus to a menu bar. We create a JMenuBar object in the constructor, call the frame’s setMenuBar method to attach it to the frame, and add the two JMenu objects to the menu bar. JMenuBar menuBar = new JMenuBar(); setMenuBar(menuBar); menuBar.add(fileMenu); menuBar.add(editMenu);
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.