7 october. announcements requirement process grade includes responsiveness to comments ○ web site...

23
(USER) INTERFACES 7 October

Upload: jean-atkinson

Post on 19-Jan-2016

215 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

(USER) INTERFACES

7 October

Page 2: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

Announcements

Requirement process gradeIncludes responsiveness to comments

○ Web site○ Functional spec

Will give you until 9 pm October 8 to make changes

First essay will be posted this week

Page 3: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

Types of Interfaces

Program APIs Network flows Files Command line Graphical

Page 4: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

Program APIs

When do you need them?Should you build them into all systems?Consequences of not having them

Needed characteristicsBackward compatibility: how do you extend?Checking: caller or callee?

Appropriate scopeOne with parameters or many?

Page 5: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

Network Flows

Same considerations as APIs, but more so Different machines will upgrade at different

times No control over the other side Always identify level and negotiate support

Base and towers Use well-supported protocols

FTTP, sockets, web-sockets, JSON, …

Page 6: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

Files

See prior two pages: all the same Added problems

Files corruptedFiles deletedFiles edited

Use extensible formats preferably with readily available parsers

Page 7: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

GUI or not to GUI?

How often is the task done? How many objects are handled at a

time?

Physical limitations Environment

Page 8: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

What Makes a Good Design? Let’s look at designs you like

Will look at web designs, but the principles apply to any interface

… and those you don’tTop 10 listBiggest Mistakes

Page 9: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

The UI Iceberg

Visuals

InteractionTechniques

Object Model

Feel30%

Look10%

The things you use60%

Toolkits and style guides help with look and feel, the tip of the usability iceberg.

Real usability gains come from system and application objects perceived by users.

Page 10: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

Consider well-known sites What is the object model?

EbayAmazonFacebook

Page 11: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

User Interface Models

Object-actionChoose the object and then the action to

performWindows GUI:

select the file, right click for actions

Action-objectChoose the action and then the objectWindows command line:

“copy” file_a file_b

Page 12: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

Fundamental Concepts

What the user needs to do

The order that he does it

Is it natural? How much does

he have to remember?

Page 13: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

Text Other

Command line Question and answer Form based Menu Natural language Speech

GUI Gesture Virtual reality Augmented reality Ubiquitous (unaware) Perceptual

Interaction Styles

Page 14: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

Good Screen Design

Consistency: use of pull-downs vs. entry

Starting in the upper left corner: first thing to fill in

Simple navigationGrouping and alignmentKeep related issues together

Hierarchy for importance Pleasing visuals Captions for clarity

Page 15: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

Three Types of Windows

Properties of automobile 189

Property Value

Brand Toyota

Model Camry

ID 893-8913-789014Help

Word ___________________

This screen All screens

ABC alert message

Caution: “age” must be < 120

OKProperty – information only

Dialogue – input from user and subsequent action

Alert – information that needs to be seen before continuing. Developer determined.

Page 16: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

Why Classify?

Use the right type of window Consider purpose when designing

Example: alert window must be seen; property window not as critical

Page 17: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

Rollovers Information that is optional and selected by

the user

But it often can’t be copied. It doesn’t remain visible. Are those important for this usage?

This is a rollover window, designed to provide on-the-fly amplification

Page 18: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

Type checking saving mmf CD

Branch Main St. Elm St. High St.

Privileges newsletter discounts quick loans

First name

Middle name

Last name

Street

City

State/county

OK Apply Cancel Help

Adapted from Software Engineering: An Object-Oriented Perspective by Eric J. Braude (Wiley 2001), with permission.

The content is all there…

Page 19: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

checking

OK Apply Cancel Help

Account type Privileges

savingmoney marketCD

newsletter

discountsquick loans

Branch

Main St.Elm St.High St.

New Customers

Name

FirstMiddle

Last

Address

StreetCity

State/county

Adapted from Software Engineering: An Object-Oriented Perspective by Eric J. Braude (Wiley 2001), with permission.

But it can be better

Page 20: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

Use of White Space

More advice than you could ever wantActive and passiveClassy vs. mass-producedClutter or incomplete …

Page 21: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

GUI Screen Design Process

Know Your User or Client Understand the Business Function Understand the Principles of Good Screen Design Select the Proper Kinds of Windows Develop System Menus Select the Proper Device-Based Controls Select the Proper Screen-Based Controls Organize and Lay Out Windows Choose the Proper Colors Create Meaningful Icons Provide Effective Messages, Feedback, Guidance, and

Language Translation Test, Test, and Retest

Wilbert Galitz

Page 22: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

Visualization and Information Design How to present results

Visualization usually refers to dynamically created results○ Data○ Information

Information design usually refers to crafted piece○ Edward Tufte

Page 23: 7 October. Announcements  Requirement process grade Includes responsiveness to comments ○ Web site ○ Functional spec  Will give you until 9 pm October

Minard: Napoleon’s March to Moscow

- Width of band shows size of army at each position. - Black band shows retreat tied to temperature and time