Graphical User Interfaces 2

Similar documents
Graphical User Interfaces 2

Graphical User Interfaces 2

Method Of Key Event Key Listener must implement three methods, keypressed(), keyreleased() & keytyped(). 1) keypressed() : will run whenever a key is

H212 Introduction to Software Systems Honors

Graphical User Interfaces

Computer Science 210: Data Structures. Intro to Java Graphics

The JFrame Class Frame Windows GRAPHICAL USER INTERFACES. Five steps to displaying a frame: 1) Construct an object of the JFrame class

CSEN401 Computer Programming Lab. Topics: Graphical User Interface Window Interfaces using Swing

GUI in Java TalentHome Solutions

CS 251 Intermediate Programming GUIs: Event Listeners

GUI Event Handlers (Part II)

Java Foundations John Lewis Peter DePasquale Joe Chase Third Edition

G51PRG: Introduction to Programming Second semester Applets and graphics

ว ฒนพงศ ส ทธภ กด Java Programming ( )

Outline. Topic 9: Swing. GUIs Up to now: line-by-line programs: computer displays text user types text AWT. A. Basics

Introduction to the JAVA UI classes Advanced HCI IAT351

CSC 160 LAB 8-1 DIGITAL PICTURE FRAME. 1. Introduction

GUI DYNAMICS Lecture July 26 CS2110 Summer 2011

The AWT Event Model 9

G51PGP Programming Paradigms. Lecture 008 Inner classes, anonymous classes, Swing worker thread

More about JOptionPane Dialog Boxes

ECE 462 Object-Oriented Programming using C++ and Java. Key Inputs in Java Games

PROGRAMMING DESIGN USING JAVA (ITT 303) Unit 7

Programming Languages and Techniques (CIS120)

Example Programs. COSC 3461 User Interfaces. GUI Program Organization. Outline. DemoHelloWorld.java DemoHelloWorld2.java DemoSwing.

Java GUI Design: the Basics

Object-Oriented Programming in Java

GUI 4.1 GUI GUI MouseTest.java import javax.swing.*; import java.awt.*; import java.awt.event.*; /* 1 */

(Incomplete) History of GUIs

GUI Program Organization. Sequential vs. Event-driven Programming. Sequential Programming. Outline

Event Driven Programming

Java for Interfaces and Networks (DT3010, HT10)

Outline. More on the Swing API Graphics: double buffering and timers Model - View - Controller paradigm Applets

Unit 7: Event driven programming

AP Computer Science Unit 13. Still More Graphics and Animation.

Java & Graphical User Interface II. Wang Yang wyang AT njnet.edu.cn

Graphic User Interfaces. - GUI concepts - Swing - AWT

Lecture 19 GUI Events

Handling Mouse and Keyboard Events

Programming Languages and Techniques (CIS120)

CSE 331 Software Design & Implementation

CSE 331 Software Design and Implementation. Lecture 19 GUI Events

SAMPLE EXAM Exam 2 Computer Programming 230 Dr. St. John Lehman College City University of New York Thursday, 5 November 2009

User interfaces and Swing

Datenbank-Praktikum. Universität zu Lübeck Sommersemester 2006 Lecture: Swing. Ho Ngoc Duc 1

Programming Languages and Techniques (CIS120)

CSE 143. Event-driven Programming and Graphical User Interfaces (GUIs) with Swing/AWT

CS 2113 Software Engineering

DM503 Programming B. Peter Schneider-Kamp.

COSC 123 Computer Creativity. Graphics and Events. Dr. Ramon Lawrence University of British Columbia Okanagan

Packages: Putting Classes Together

Lecture 3: Java Graphics & Events

Control Flow: Overview CSE3461. An Example of Sequential Control. Control Flow: Revisited. Control Flow Paradigms: Reacting to the User

CS2110. GUIS: Listening to Events

COMPSCI 230. Software Design and Construction. Swing

Programming Languages and Techniques (CIS120)

Lecture 5: Java Graphics

JLayeredPane. Depth Constants in JLayeredPane

GUI (Graphic User Interface) Programming. Part 2 (Chapter 8) Chapter Goals. Events, Event Sources, and Event Listeners. Listeners

Chapter 1 GUI Applications

DM550 / DM857 Introduction to Programming. Peter Schneider-Kamp

Introduction to Java. Nihar Ranjan Roy.

class BankFilter implements Filter { public boolean accept(object x) { BankAccount ba = (BankAccount) x; return ba.getbalance() > 1000; } }

Java Mouse Actions. C&G criteria: 5.2.1, 5.4.1, 5.4.2,

Programming Languages and Techniques (CIS120)

Object-oriented programming in Java (2)

OOP Assignment V. For example, the scrolling text (moving banner) problem without a thread looks like:

Java Coordinate System

Class 16: The Swing Event Model

AP CS Unit 12: Drawing and Mouse Events

Exam: Applet, Graphics, Events: Mouse, Key, and Focus

HW#1: Pencil Me In Status!? How was Homework #1? Reminder: Handouts. Homework #2: Java Draw Demo. 3 Handout for today! Lecture-Homework mapping.

BM214E Object Oriented Programming Lecture 13

Introduction to Graphical User Interfaces (GUIs) Lecture 10 CS2110 Fall 2008

CS2110. GUIS: Listening to Events. Anonymous functions. Anonymous functions. Anonymous functions. Checkers.java. mainbox

CS2110. GUIS: Listening to Events

CS2110. GUIS: Listening to Events Also anonymous classes versus Java 8 functions. Anonymous functions. Anonymous functions. Anonymous functions

Windows and Events. created originally by Brian Bailey

L4,5: Java Overview II

Chapter 14: Applets and More

8/23/2014. Chapter Topics. Introduction to Applets. Introduction to Applets. Introduction to Applets. Applet Limitations. Chapter 14: Applets and More

CSSE 220. Event Based Programming. Check out EventBasedProgramming from SVN

Advanced Java Programming (17625) Event Handling. 20 Marks

Chapter 14: Applets and More

CS 335 Graphics and Multimedia. Image Manipulation

Marcin Luckner Warsaw University of Technology Faculty of Mathematics and Information Science

Topic 9: Swing. Swing is a BIG library Goal: cover basics give you concepts & tools for learning more

Topic 9: Swing. Why are we studying Swing? GUIs Up to now: line-by-line programs: computer displays text user types text. Outline. 1. Useful & fun!

Virtualians.ning.pk. 2 - Java program code is compiled into form called 1. Machine code 2. native Code 3. Byte Code (From Lectuer # 2) 4.

Lecture 9. Lecture

JRadioButton account_type_radio_button2 = new JRadioButton("Current"); ButtonGroup account_type_button_group = new ButtonGroup();

(listener)... MouseListener, ActionLister. (adapter)... MouseAdapter, ActionAdapter. java.awt AWT Abstract Window Toolkit GUI

FirstSwingFrame.java Page 1 of 1

Programming Languages and Techniques (CIS120)

CIS 120 Programming Languages and Techniques. Final Exam, May 3, 2011

ANSWER KEY Exam 2 Computer Programming 230 Dr. St. John Lehman College City University of New York Thursday, 5 November 2009

3 Combining Widgets to create Graphical User Interfaces

Graphical User Interface (GUI)

News! Feedback after Lecture 4! About Java and OOP!

The init() Method. Browser Calling Applet Methods

Transcription:

Graphical User Interfaces 2 CSCI 136: Fundamentals of Computer Science II Keith Vertanen Copyright 2014 2011

Extending JFrame Dialog boxes Overview Ge<ng user input Displaying message or error Listening for input Mouse Keyboard Java images 2

Approach 1: (last lecture) Extending JFrame main() creates instance of the class Runs instance method, e.g. go() Creates a JFrame and associated GUI elements How Head First Java does it Approach 2: Create a class that extends JFrame Constructor handles GUI setup No need to create a JFrame Main program class instanpates the class 3

import javax.swing.*; import java.awt.event.*; public class ButtonCount implements ActionListener private int count = 0; private JButton button; public void actionperformed(actionevent event) count++; button.settext("count = " + count); Approach 1: Create an object and run a method that explicitly creates JFrame public void go() JFrame frame = new JFrame("ButtonCount"); button = new JButton("count = " + count); frame.setdefaultcloseoperation(jframe.exit_on_close); frame.getcontentpane().add(button); frame.setsize(300,300); frame.setvisible(true); button.addactionlistener(this); public static void main(string [] args) ButtonCount gui = new ButtonCount(); gui.go(); 4

import javax.swing.*; import java.awt.event.*; public class ButtonCount2 extends JFrame implements ActionListener private int count = 0; private JButton button; public void actionperformed(actionevent event) count++; button.settext("count = " + count); Approach 2: Make a class that extends JFrame public ButtonCount2() super("buttoncount2"); button = new JButton("count = " + count); setdefaultcloseoperation(jframe.exit_on_close); getcontentpane().add(button); setsize(300,300); setvisible(true); button.addactionlistener(this); public static void main(string [] args) ButtonCount2 gui = new ButtonCount2(); Calls JFrame constructor that takes the window Ptle as a parameter. These are instance methods of JFrame, but we are a JFrame, so no need to put anything before method name. 5

Dialog boxes Dialog boxes Asks a quespon Or gives an error, informapon, etc. Typically modal Blocks rest of GUI unpl closed Displays different icons depending on parameter Constant Java look and feel Windows look and feel JOptionPane.ERROR_MESSAGE JOptionPane.INFORMATION_MESSAGE JOptionPane.WARNING_MESSAGE JOptionPane.QUESTION_MESSAGE JOptionPane.PLAIN_MESSAGE 6

public class NameDialog public static void main(string [] args) String name = JOptionPane.showInputDialog("What is your name?"); JOptionPane.showMessageDialog(null, "Hello there " + name + "!", "Greetings", JOptionPane.PLAIN_MESSAGE); Normally a reference to the JFrame object OK (text entered) OK (no text entered) Cancel 7

public class YesNoDialog public static void main(string [] args) int result = JOptionPane.showConfirmDialog(null, "Are we having fun yet?", "Question", JOptionPane.YES_NO_OPTION); JOptionPane.showMessageDialog(null, "Answer = " + result, "Result", JOptionPane.PLAIN_MESSAGE); No (Windows 7) Lots of other dialog related oppons, see: h\p://docs.oracle.com/javase/tutorial/uiswing/components/dialog.html#dialogdemo 8

Mouse input MouseListener Watches for mouse entry/exit from component Watches for bu\on events No events if just moving mouse inside component Only if inside the listening component! Method mousepressed(mouseevent) mousereleased(mouseevent) mouseclicked(mouseevent) mouseentered(mouseevent) mouseexited(mouseevent) Purpose Acer the user presses a mouse bu\on while the cursor is over the component. Acer the user releases a mouse bu\on acer a mouse press over the component. Acer the user clicks the component (acer the user has pressed and released). Acer the cursor enters bounds of the component. Acer the cursor exits bounds of the component. 9

Mouse input MouseEvent (x, y) pixel coordinate: (0,0) is upper- lec Number of consecupve clicks Bu\on that changed state (pushed, released, clicked) Method int getclickcount() int getx() int gety() Point getpoint() int getbutton() Purpose Number of quick, consecupve clicks (including this event). For example, returns 2 for a double click. Get the x- coordinate at which event occurred Get the y- coordinate at which event occurred Return a Point object containing event locapon Which bu\on changed state: NOBUTTON, BUTTON1, BUTTON2, or BUTTON3. 10

Mouse input example 1 GUI with a single big text area Add line of text to area on MouseListener event Output event type and mouse (x, y) Events only triggered in JTextArea not JButton JTextArea widget JScrollPane widget that contains the JTextArea widget Ye Olde JButton widget MouseTextBox.java 11

Mouse mopon MouseMotionListener Detects movement of mouse inside a component With or without the mouse pressed Method mousemoved(mouseevent) mousedragged(mouseevent) Purpose User is moving the mouse with no mouse bu\on pressed. User is moving the mouse while holding a mouse bu\on down (i.e. a dragging acpon). Always preceded by call to mousepressed event. 12

Mouse mopon example 2 Simple drawing applicapon During MouseDragged event, add Point objects Requires a custom JPanel that draws all the points Override paintcomponent(graphics g) method Also display current mouse (x, y) in upper- lec MouseDrawPanel extends JPanel MouseDraw.java MouseDrawPanel.java 13

KeyListener Keyboard input When a key is pressed, released, or typed Typed event only for printable characters Not arrow keys, etc. Numeric key codes for all event types Component must have focus to fire event For custom components (e.g. game drawing panel): Ensure it can accept focus: setfocusable(true) mouseclicked() handler that calls requestfocusinwindow() Or make all other UI widgets not focusable Method keytyped(keyevent) keypressed(keyevent) keyreleased(keyevent) Purpose Called just acer user types a Unicode character Called just acer the user presses a key Called just acer the user releases a key 14

Keyboard input KeyEvent Figure out what was typed or pressed Actual character for typed events Only key code for pressed/released events Method int getkeychar() int getkeycode() int getmodifiersex() Purpose Return Unicode character of event, only use for key typed events. Return the key code associated with event. For example, VK_A = le\er A, VK_DOWN = down arrow key. Extended modifier mask for the event, such as whether shic or alt key was down. 15

Keyboard input example Listen for keyboard events Output text about each event JTextArea inside a JScrollPane JPanel forced to always have focus KeyTextBox.java 16

Drawing images Loading a JPG, PNG, GIF: Construct a BufferedImage object Pass it a File object constructed using filename Will be null on error BufferedImage image = ImageIO.read(new File("cat.jpg")); if (image!= null) int width = image.getwidth(); int height = image.getheight(); Special stapc method that constructs an object of type BufferedImage. 17

Drawing on a panel Drawing images In the paintcomponent(graphics g) method g.drawimage(image image, int x, int y, ImageObserver obs) NOTE: (x, y) is the upper- lec corner of image Keep the BufferedImage object around Avoid loading from disk each Pme you need it g.drawimage(image, 0, 0, this); The component (e.g. JFrame, JPanel) that image is being drawn on. 18

Programming acpvity Create an image slideshow GUI Loads images specified on command line Outputs height/width, ignores bogus files Cycles between images every second % java ShowImages cat.jpg frog.jpg dog.jpg bogus.jpg cat.jpg [240 x 160] frog.jpg [240 x 118] dog.jpg [240 x 228] 19

Summary Extending JFrame Constructor sets up the GUI widgets Dialog boxes Collect a string or response to several bu\ons Can just provide informapon or error message Responding to mouse events MouseListener handler for click- related events MouseMotionListener for tracking mouse Responding to keyboard events Make sure component can and does have focus Loading and display images 20