GUIs David Croft GUIs Hello World!

Layout Containers

Events Event arguments

GUIs

Recap

David Croft Coventry University [email protected]

January 23, 2017

GUIs

Overview

David Croft GUIs Hello World!

Layout Containers

Events

1

GUIs Hello World!

2

Layout Containers

3

Events Event arguments

4

Recap

Event arguments

Recap

GUIs

Event driven

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

Your programs so far have followed a procedural pattern. Program is a series of steps. Moves through those steps in a predetermined pattern. Expects user input in a very specific order.

start

Step 1

Step 2

Step 3

end

C

GUIs

Event driven II

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

Going to look at event driven programming. Program reacts to events. Events have actions associated with them. Order and frequency of events is unpredictable. Does not have a predefined sequence of actions to perform. Does not have a predefined end.

start

end

C

GUIs David Croft

Benefits

C

GUIs Hello World!

Layout Containers

Events Event arguments

Recap

What sort of applications would benefit from an event driven paradigm?

GUIs

Benefits

David Croft

C

GUIs Hello World!

Layout Containers

Events Event arguments

Recap

What sort of applications would benefit from an event driven paradigm? GUIs Control systems Embedded systems

GUIs

Events examples

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

GUI events would include... Button presses Text entry Keyboard events Pressing a key Releasing a key

Mouse events Pressing a button Releasing a button Moving Scrolling

C

GUIs

Hello World!

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

How to create a GUI. Wide range of different libraries available. Depends on language and platform.

Tkinter is the built-in Python default.

C

GUIs

Terminology

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

Window Component/widget/element

C

GUIs

Hello World!

David Croft GUIs Hello World!

Layout Containers

import sys from tkinter import *

Events Event arguments

Recap

def main(): root = Tk() label = Label(root, text='Hello World!') label.pack() root.mainloop() if __name__ == '__main__': sys.exit(main()) lec_getting_started.py

C

GUIs

Hello World!

David Croft GUIs Hello World!

Layout Containers

import sys from tkinter import *

Events Event arguments

Recap

def main(): root = Tk() label = Label(root, text='Hello World!') label.pack() root.mainloop() if __name__ == '__main__': sys.exit(main()) lec_getting_started.py

C

GUIs

Classes

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

GUI code should be structured as a class. Become clear later. class Gui: def __init__(self, root): self.root = root self.label = Label(self.root, \ text='Hello World!') self.label.pack() def main(): root = Tk() gui = Gui(root) root.mainloop() lec_classes.py

I

GUIs

Layout

David Croft GUIs Hello World!

Layout

So far we have seen how elements are added to window.

Containers

Events Event arguments

Recap

class Gui: def __init__(self, root): self.root = root for i in range(1,10): button = Button(self.root, text=i) button.pack() lec_layout.py

C

GUIs

Layout

David Croft GUIs Hello World!

Layout

So far we have seen how elements are added to window.

Containers

Events Event arguments

Recap

class Gui: def __init__(self, root): self.root = root for i in range(1,10): button = Button(self.root, text=i) button.pack() lec_layout.py

C

GUIs

Layout II

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

Can use the side parameter for .pack(). TOP (default). Also LEFT, RIGHT and BOTTOM. class Gui: def __init__(self, root): self.root = root for i in range(1,10): button = Button(self.root, text=i) button.pack(side=LEFT) lec_layout2.py

I

GUIs

Layout III

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

Use side to control layout? class Gui: def __init__(self, root): self.root = root Button(self.root, Button(self.root, Button(self.root, Button(self.root, Button(self.root, Button(self.root, Button(self.root, Button(self.root, Button(self.root, lec_layout3.py

text=1).pack(side=TOP) text=2).pack(side=LEFT) text=3).pack(side=LEFT) text=4).pack(side=TOP) text=5).pack(side=LEFT) text=6).pack(side=LEFT) text=7).pack(side=TOP) text=8).pack(side=LEFT) text=9).pack(side=LEFT)

I

GUIs

Layout III

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

Use side to control layout? class Gui: def __init__(self, root): self.root = root Button(self.root, Button(self.root, Button(self.root, Button(self.root, Button(self.root, Button(self.root, Button(self.root, Button(self.root, Button(self.root, lec_layout3.py

text=1).pack(side=TOP) text=2).pack(side=LEFT) text=3).pack(side=LEFT) text=4).pack(side=TOP) text=5).pack(side=LEFT) text=6).pack(side=LEFT) text=7).pack(side=TOP) text=8).pack(side=LEFT) text=9).pack(side=LEFT)

I

GUIs

Containers

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

Need to learn about containers. Windows are containers. Elements are ’contained’ inside.

Tkinter also has frames. Special type of element. Contains other elements.

Group elements together using frames. Can be visible/invisible.

C

GUIs

Frames

David Croft GUIs Hello World!

Layout Containers

Events

class Gui: def __init__(self, root): self.root = root

Event arguments

Recap

self.frame1 = Frame(self.root) self.frame1.pack() self.frame2 = Frame(self.root) self.frame2.pack() Button(self.frame1, text=1).pack(side=LEFT) Button(self.frame1, text=2).pack(side=LEFT) Button(self.frame1, text=3).pack(side=LEFT) Button(self.frame3, text=7).pack(side=LEFT) Button(self.frame3, text=8).pack(side=LEFT) Button(self.frame3, text=9).pack(side=LEFT) lec_frames.py

I

GUIs

Frames

David Croft GUIs Hello World!

Layout Containers

Events

class Gui: def __init__(self, root): self.root = root

Event arguments

Recap

self.frame1 = Frame(self.root) self.frame1.pack() self.frame2 = Frame(self.root) self.frame2.pack() Button(self.frame1, text=1).pack(side=LEFT) Button(self.frame1, text=2).pack(side=LEFT) Button(self.frame1, text=3).pack(side=LEFT) Button(self.frame3, text=7).pack(side=LEFT) Button(self.frame3, text=8).pack(side=LEFT) Button(self.frame3, text=9).pack(side=LEFT) lec_frames.py

I

GUIs

Nesting

David Croft GUIs Hello World!

Layout

root

Containers

Events Event arguments

frame1

Recap

So what’s happening? Elements are nested in containers. Containers are nested in other containers.

1

2

3

frame2 4

5

6

frame3 7

8

8

I

GUIs

Hierarchical structure

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

root frame1 1

2

frame3

frame2 3

4

5

6

7

8

9

I

GUIs David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

Break

GUIs

Events

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

How do we get our code to actually DO stuff? Using Python/Tkinter. Other languages/frameworks == different syntax. Same concepts.

Event handling. Bind events to callback functions.

C

GUIs

Events II

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

class Gui: def __init__(self, root): self.root = root self.label = Label(self.root, text='Hello World!') self.label.pack() self.button = Button(self.root, text='Press me') self.button.bind('', self.say_bye) self.button.pack() def say_bye(self, event): self.label.config(text='Bye!') lec_events.py

C

GUIs

Events II

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

class Gui: def __init__(self, root): self.root = root self.label = Label(self.root, text='Hello World!') self.label.pack() self.button = Button(self.root, text='Press me') self.button.bind('', self.say_bye) self.button.pack() def say_bye(self, event): self.label.config(text='Bye!') lec_events.py

C

GUIs

Callbacks

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

Callbacks are how we respond to events. Functions that are passed to another function as an argument. class Gui: def __init__(self, root): self.root = root self.label = Label(self.root, text='Hello World!') self.label.pack() self.button = Button(self.root, text='Press me') self.button.bind('', self.say_bye) self.button.pack() def say_bye(self, event): self.label.config(text='Bye!') lec_events.py

User

Event

Listener

Callback

C

GUIs

Standard behaviour

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

User actions can consist of multiple events. I.e. clicking on button. 1 2

Press LMB whilst pointer over button. Release LMB whilst pointer over button.

Standard behaviour already programmed into Tkinter. Use command parameter. class Gui: def __init__(self, root): self.root = root self.button = Button(self.root, text='Press me' , \ command=self.say_bye) self.button.pack() def say_bye(self): self.label.config(text='Bye!') lec_events2.py

I

GUIs

Event arguments

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

class Gui: def __init__(self, root): Button(self.root, text='1', \ command=self.pressed_1).pack(side=LEFT) Button(self.root, text='2', \ command=self.pressed_2).pack(side=LEFT) def pressed_1(self): # seperate functions to each button self.label.config(text='Pressed 1') def pressed_2(self): # very similar code self.label.config(text='Pressed 2') lec_event_args.py

I

GUIs

Event arguments II

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Much better to have one function. Function takes argument. Reuse of each button.

Recap

class Gui: def __init__(self, root): Button(self.root, text='1', \ command=self.pressed_button(1)).pack(side=LEFT) Button(self.root, text='2', \ command=self.pressed_button(2)).pack(side=LEFT) def pressed_button(self, number): self.label.config(text='Pressed %d' % number) lec_event_args2.py

I

GUIs

Event arguments II

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

Much better to have one function. Function takes argument. Reuse of each button. Doesn’t work. Calls function immediately.

DEMO class Gui: def __init__(self, root): Button(self.root, text='1', \ command=self.pressed_button(1)).pack(side=LEFT) Button(self.root, text='2', \ command=self.pressed_button(2)).pack(side=LEFT) def pressed_button(self, number): self.label.config(text='Pressed %d' % number) lec_event_args2.py

I

GUIs

Event arguments III

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

lambda functions. Only calls function when button is pressed. class Gui: def __init__(self, root): Button(self.root, text='1', \ command=lambda: self.pressed_button(1)).pack(side=LEFT) Button(self.root, text='2', \ command=lambda: self.pressed_button(2)).pack(side=LEFT) def pressed_button(self, number): self.label.config(text='Pressed %d' % number) lec_event_args3.py

I

GUIs

Why do I care?

David Croft

I

GUIs Hello World!

Layout Containers

Events Event arguments

Recap

Everyone Ability to create simple Graphical User Interfaces (GUIs). Experience in using 3rd party libraries/modules in software. Introduction to event driven programming. Introduction to lambdas.

Games Tech & MC - Tkinter like APIs are not suited for games but can be used for game menus. Particular attention to callbacks for game input.

Computing - Similar APIs used in mobile applications. Event driven programming used in ubiquitous computing.

Ethical Hackers - Security flaws in event driven applications. ITB - GUIs programs have lower entry barrier, important for being user friendly.

GUIs David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

Quiz

GUIs

Q1

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

What is it called when a program is written to respond to button clicks, menu selections and other actions the user performs? 1

Event driven programming

2

Action driven programming

3

User driven programming

4

Mouse driven programming

GUIs

Q1

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

What is it called when a program is written to respond to button clicks, menu selections and other actions the user performs? 1

Event driven programming

2

Action driven programming

3

User driven programming

4

Mouse driven programming

GUIs

Q2

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

What is wrong with this code? class Gui: def __init__(self, root): for i in range(1,10): b = Button(self.root, text=i, command=self.pressed_button(i)) b.pack(side=LEFT) def pressed_button(self, number): print( 'Pressed button {}'.format(number) ) 1

All the buttons will say they are button 10

2

Each button will print a message twice for each mouse click

3

Each button will only print a message once, as it is created.

4

There will be no buttons

GUIs

Q2

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

What is wrong with this code? class Gui: def __init__(self, root): for i in range(1,10): b = Button(self.root, text=i, command=self.pressed_button(i)) b.pack(side=LEFT) def pressed_button(self, number): print( 'Pressed button {}'.format(number) ) 1

All the buttons will say they are button 10

2

Each button will print a message twice for each mouse click

3

Each button will only print a message once, as it is created.

4

There will be no buttons

GUIs

Q3

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

What is a callback? 1

The code that deals with GUI events.

2

Unlikely if your first date went badly.

3

A named piece of code that can be repeated multiple times.

4

A function that is passed to another function as an argument.

GUIs

Q3

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

What is a callback? 1

The code that deals with GUI events.

2

Unlikely if your first date went badly.

3

A named piece of code that can be repeated multiple times.

4

A function that is passed to another function as an argument.

GUIs

Q4

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

What is a container? 1

The class containing your GUI code.

2

A GUI object that can hold other objects within it.

3

A function containing the code to run when a button is pressed.

4

Tupperware.

GUIs

Q4

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

What is a container? 1

The class containing your GUI code.

2

A GUI object that can hold other objects within it.

3

A function containing the code to run when a button is pressed.

4

Tupperware.

GUIs

Recap

David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

GUIs are an example of event driven programming. GUI elements are arranged in containers. Containers can hold other containers. User actions generate events. Callbacks are functions that are run in response to events.

GUIs David Croft GUIs Hello World!

Layout Containers

Events Event arguments

Recap

The End

David Croft January - GitHub

Your programs so far have followed a procedural pattern. Program is a series of steps. Moves through those steps in a predetermined pattern. Expects user input ...

309KB Sizes 2 Downloads 334 Views

Recommend Documents

David B. Maia - GitHub
Development of a new web application (frontend & backend) from scratch using . ... Important role on a complex IAM software upgrade with major architectural changes ... Java Developer for an IAM regional project for an insurance company.

man-50\advanced-java-game-programming-by-david-wallace-croft ...
man-50\advanced-java-game-programming-by-david-wallace-croft-pdf.pdf. man-50\advanced-java-game-programming-by-david-wallace-croft-pdf.pdf. Open.

pdf-1486\heaven-is-weeping-croft-croft-romance ...
Try one of the apps below to open or edit this item. pdf-1486\heaven-is-weeping-croft-croft-romance-adventures-volume-5-by-morgan-kelley.pdf.

alena croft 26.pdf
There was a problem loading more pages. alena croft 26.pdf. alena croft 26.pdf. Open. Extract. Open with. Sign In. Main menu. Displaying alena croft 26.pdf.

Alena croft 双插
fMftVy lk{kjrk vfHk;ku. 2 Department of Electronics and Information Technology ... Urdu Books, English Books and Old pdf books download. Whoops! There was a ...

Curriculum Vitae January 2010 Michael David Bordo ...
Visiting Scholar. 2005-2006. Swiss National Bank. Visiting Scholar. 2004-2005. Other Professional Activities. National Bureau of Economic. Research. Research Associate. 1970, and since 1982-. International Journal of Central. Banking. Associate Edito

lara croft tomb raider 1080 is_safe:1.pdf
lara croft tomb raider 1080 is_safe:1.pdf. lara croft tomb raider 1080 is_safe:1.pdf. Open. Extract. Open with. Sign In. Main menu.

January 2017
Feb 15, 2017 - 2. Visitor. 2. Visiting. Researcher. 3. SAARMSTE 2017 3. Public Lecture. 3 ... [email protected]. Student ... years in many countries around.

Celtic-Croft-Gift-Certificate-Apr-05-2016-Only.pdf
Loading… Page 1. Whoops! There was a problem loading more pages. Retrying... Main menu. Displaying Celtic-Croft-Gift-Certificate-Apr-05-2016-Only.pdf.

GitHub
domain = meq.domain(10,20,0,10); cells = meq.cells(domain,num_freq=200, num_time=100); ...... This is now contaminator-free. – Observe the ghosts. Optional ...

GitHub
data can only be “corrected” for a single point on the sky. ... sufficient to predict it at the phase center (shifting ... errors (well this is actually good news, isn't it?)

siah the son of David, the son of Abra- ham: Abraham was the ... - GitHub
Salmon the father of Boaz, whose mother was Rahab, Boaz the father of Obed, whose mother was Ruth, Obed the father of Jesse, and Jesse the father of King ...

Islam and Nazi Germany's War by David ... - GitHub Pages
Germany's War having great arrangement in word and layout, so you will not really feel uninterested in reading. PDF File: Islam And Nazi Germany's ...

January Newsletter.pdf
May contain trace heavy metals that are within USP limits, but safe in MRI. Whoops! There was a problem loading this page. January Newsletter.pdf. January ...

January 5,2010.pdf
Dec 21, 2009 - 4:00 p.m. – Call to Order and Closed Session / 7:00 p.m. – Regular Meeting. Taylor Education Administration Complex. REGULAR SCHOOL ...

January Menus.pdf
Sign in. Page. 1. /. 3. Loading… Page 1 of 3. Page 1 of 3. Page 2 of 3. Page 2 of 3. Page 3 of 3. Page 3 of 3. January Menus.pdf. January Menus.pdf. Open. Extract. Open with. Sign In. Main menu. Displaying January Menus.pdf. Page 1 of 3.Missing:

January Menu.pdf
Sandwich &. Side. 10. Domino's. Pizza. 11. Kneader's. Chicken. Noodle Soup. & Side. 12 13. 14. NO SCHOOL. 15. Domino's. Pizza. 16. Culver's. Hamburger &.

January Newsletter.pdf
Our monthly Buffalo Wild. Wings get together ... games, Jiu Jitsu lessons, Nerf gun wars,. s'mores and movies. ... January Newsletter.pdf. January Newsletter.pdf.

january
BOARD​(Individual Admission Tickets will be issued to the candidates by post ... TRADESMAN AUTOMOBILE/HEAT ENGINES TECHNICAL EDUCATION.

January 2012
David Wasserman, 2011 https://picasaweb.google.com/105523032634882517731. Devonian Gardens, Alberta. April 2012. Monday. Tuesday. Wednesday. Thursday. Friday. Saturday. Sunday. 1. 2. 3. 4. 5. 6. Good Friday. 7. 8. Easter Sunday. 9. Easter Monday. 10.

January 2009
Jan 1, 2009 - Syllabus Changes. Math Pre-Test. (Quiz) ... using Dimensional. Analysis. Intro to Mole. Formula Mass. Mole to Gram. Conversions. 25. 26. 27 ... SCS.3.c ~ Collect, organize and record appropriate data. SCS.4.a ~ Develop and ...

January 2017
Start Day (1=Sun., 2=Mon.): 1. Knights Lunch Menu. January ... Apple or Banana. Peaches and Yogurt. Grapes ... Berries and Yogurt. Pears. Baked Apples. Kiwi.

January, 2010
Jan 1, 2010 - phone call or email could help save .... through the resort's wireless network. ..... Business: Bruce Mc Clure (Sandia National Labs) and May ...