+ - 0:00:00
Notes for current slide
Notes for next slide

The whole toolkit

Lauren Bricker

CSE 340 Spring 2020

Slide 1 of 32

Today's goals

  • Update from Wednesday
  • Last bit about Essential Geometry
  • Let's look at colorpicker
  • Review and summarize core toolkit architecture
Slide 2 of 32

Event Dispatch

  • Top-down, Bottom-Up, Bubble-out, Focused-based: these are theoretical Event dispatch.
  • Android does it a bit differently.
  • Capture is top-down: start on the in the biggest interactor that contains the event, then narrow in on which window actually will use the event
  • Bubbling is bottom-up - start with the window at the front (the last drawn, lowest in the interactor tree) - see if the event is consumed by that interactor. If not, go up the tree.
Slide 3 of 32

Other comments

  • layout varies depending on the specific layout container
    • ConstraintLayouts don't need multiple passes, it's a top down structure.
    • LinearLayout is post order for measure (measure the children, who first measure their children)
    • In general, have to look at implementation to know for sure.
  • onDraw is usually pre-order (Intuitively leaf nodes should be 'on top' of parents)
  • Capture is rarely used by component developers
  • Bubbling is far more common
  • Interface programmers just need to use callbacks, not worry about this stuff
Slide 4 of 32

Colorpicker assignment

Slide 5 of 32

Have now seen almost all the parts of an interface

Input

  • Input models (events)
  • Event dispatch
  • Event handling (state machine)
  • Callbacks to application

Output

  • Interactor Hierarchy design & use
  • Drawing models (onDraw())
  • Layout (onLayout() or XML)
  • Damage and redraw process
Slide 6 of 32

Core Toolkit Architecture

Wait for Event

Dispatch may cause change to:

  • interactor state
  • interactor hierarchy
  • application model
Slide 7 of 32

What do you need to know though? Mostly only if you are a component developer

Core Toolkit Architecture

Wait for Event

Dispatch may cause change to:

  • interactor state
  • interactor hierarchy
  • application model

Component Developer

Implement event handler (e.g. onTouch())

Handle Dispatch

  • Update interactor state & model if needed
  • Notify application if application model should change (with a callback)
  • Call invalidate()
Slide 8 of 32

What do you need to know though? Mostly only if you are a component developer

What about if you are an app developer? Basically, just use callbacks

Core Toolkit Architecture

If damage do

  • layout (may change)
    • position
    • size
  • If damage do redraw
Slide 9 of 32

Core Toolkit Architecture

If damage do

  • layout (may change)
    • position
    • size
  • If damage do redraw

Component Developer

  • May need to implement onMeasure() and onLayout() (if a container)
  • Will always implement onDraw() but never call it (call invalidate() instead)
Slide 10 of 32

View Update: Damage/Redraw

How does the toolkit know what to redraw?

What causes damage?

Slide 11 of 32

concrete example on next slide

View Update: Damage/Redraw

What should be redrawn?

google doc with scrollbar

Slide 12 of 32

View Update: Damage/Redraw

What should be redrawn?

google doc with scrollbar

Slide 13 of 32

View Update: Damage/Redraw

What should be redrawn?

google doc with scrollbar

Slide 14 of 32

View Update: Damage/Redraw

How does the toolkit know what to redraw?

What causes damage?

Slide 15 of 32

Can you think about other things?

  • Window hidden and re-exposed
  • Resizing
  • redrawing

View Update: Damage/Redraw

How does the toolkit know what to redraw?

What causes damage?



Naive approach to redraw

Slide 16 of 32

Can you think about other things?

  • Window hidden and re-exposed
  • Resizing
  • redrawing

View Update: Damage/Redraw

pic of original screen and changed screen

Slide 17 of 32

XXX TODO ADD pic like this using divs?

  • Can be slow (redrawing everything unecessary)
  • Can cause flickering
    • double buffering is better,
    • hence the 'Canvas' abstraction or equivalent
    • can then switch which FB is displayed (very fast)

View Update: Damage/Redraw

pic of original screen and changed screen pic with double buffering included

Slide 18 of 32

View Update: Damage/Redraw

pic of original screen and changed screen pic with double buffering included

Never just draw: Why not?

Slide 19 of 32
  • Update state
  • Report damage (by calling 'repaint())
  • Wait for toolkit to request redraw (also works if damage comes from elsewhere)
  • How does it generalize to any cause of damage (always need state!!)

View Update: Damage/Redraw

How does the toolkit know what to redraw?

  • Let the component report: Damage/Redraw invoked by invalidate() or equivalent
Slide 20 of 32

View Update: Damage/Redraw

How does the toolkit know what to redraw?

  • Let the component report (invalidate()) NOTE we are not calling onDraw() directly (important for your assignment)
  • Aggregate
  • Usually calculate bounding box
Slide 21 of 32

View Update: Draw/Redraw

Virtual device abstraction provided by windowing system

Component abstraction provided by toolkit

  • Enforced using clipping
  • Supported using coordinate system transformations

Drawing is recursive

  • Makes it possible for parent to decorate kids
  • Parent responsible for making kids think they are the center of the universe (translate)
  • Clipping: intersect parent and child, also handled by parent
Slide 22 of 32

Allows each program to (mostly) pretend that it has the screen (frame buffer) to itself

Allows each component to (mostly) pretend that it has the screen to itself

Core Toolkit Architecture

If damage do

  • layout (may change)
    • position
    • size
  • If damage do redraw
    • Union of damage (any of those can cause it) used to trigger redraw of anything inside that union
    • Drawing + clipping – standard drawing order, but only for things damaged; clipped to damage region
    • Clear damage
Slide 23 of 32

Using Essential Geometry as the basis for state

Slide 24 of 32

Using Essential Geometry as the basis for state

google doc with scrollbar

  • What is the essence (or nature) of this scrollbar? Where can you interact with it?
Slide 25 of 32

Using Essential Geometry as the basis for state

google doc with scrollbar

  • What is the essence (or nature) of this scrollbar? Where can you interact with it?
    • on the thumb
    • inside the scrollbar above the thumb
    • inside the scrollbar below the thumb
    • inside up arrow
    • inside the down arrow
Slide 26 of 32

Using Essential Geometry as the basis for state

google doc with scrollbar

  • What is the essence (or nature) of this scrollbar? Where can you interact with it?
    • on the thumb
    • inside the scrollbar above the thumb
    • inside the scrollbar below the thumb
    • inside up arrow
    • inside the down arrow
  • How do we implement a scroll bar like this?
Slide 27 of 32

Scrollbar State machine with Essential Geometry

MouseDown:InThumb?StartScroll()
MouseClick:InsideAboveThumb?Scrollup()
MouseClick:InsideBelowThumb?Scrolldown()
MouseMove:updateThumbDocument()
MouseUp:KeepLocation()
START
SCROLLING
DONE
Slide 28 of 32

Let's try it for a button

Essential geometry is:

  • InsideButton
  • OutsideButton

and methods for

  • indentButton() (when button is pressed)
  • normalButton() (when button is not pressed)
  • invokeAction() (when the user releases in the button)
  • cancelAction() (when the user releases outside the button)
Slide 29 of 32

You should have something like this

Essential geometry is:

  • Inside
  • Outside

and methods for

  • indentButton() (when button is pressed)
  • normalButton() (when button is not pressed)
  • invokeAction() (when the user releases in the button)
  • cancelAction() (when the user releases outside the button)
DOWN:Inside?indentButton()
MOVE:Outside?normalButton()
UP:Outside?cancelAction()
UP:Inside?invokeAction()
MOVE:Inside?indentButton()
START
PRESSED
END
Slide 30 of 32

How do we implement this?

  • Implement in onTouch() using a switch statement
  • Assume there is an essentialGeometry(MotionEvent event) method. It returns a enum that tells you what part of the geometry you are in for that point.
  • Assume implementations of all the methods
  • Assume a field, state which is the current state of the state machine
  • enums EssentialGeometry and State for comparing against
@Override
public boolean onTouch(MotionEvent e) {
EssentialGeometry geometry = essentialGeometry(event);
switch (state) {
case State.START:
if (geometry == Geometry.INSIDE && e.getAction() == MotionEvent.ACTION_DOWN) {
indentButton();
state = State.PRESSED;
return true;
}
break;
case PRESSED
if (e.getAction() == MotionEvent.ACTION_MOVE) {
if (geometry == Geometry.INSIDE) {
indentButton();
} else {
normalButton();
}
return true;
}
else if (e.getAction() == MotionEvent.ACTION_UP) {
state = State.START; // note we don't actually use the END state
if (geometry == Geometry.INSIDE) {
invokeAction();
} else {
cancelAction();
}
return true;
}
break;
default:
break;
}
return false;
}
Slide 31 of 32

END OF DECK

Slide 32 of 32

Today's goals

  • Update from Wednesday
  • Last bit about Essential Geometry
  • Let's look at colorpicker
  • Review and summarize core toolkit architecture
Slide 2 of 32
Paused

Help

Keyboard shortcuts

, , Pg Up, k Go to previous slide
, , Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
Number + Return Go to specific slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
s Start & Stop the presentation timer
t Reset the presentation timer
?, h Toggle this help
Esc Back to slideshow