Basic Concepts of The User Interface

Slides:



Advertisements
Similar presentations
Introduction to Computers Section 6A. home The Operating System (OS) The operating system (OS) is software that controls the interaction between hardware.
Advertisements

Windows Test Review.
Designing a Graphical User Interface (GUI) 10 IST – Topic 6.
Introduction to Visual Basic.NET Uploaded By: M.Sheraz anjum.
User Interface. What is a User Interface  A user interface is a link between the user and the computer. It allows the user and the computer to communicate.
Visual Basic 2010 How to Program. © by Pearson Education, Inc. All Rights Reserved.2.
UNIX Chapter 01 Overview of Operating Systems Mr. Mohammad A. Smirat.
Exploring the Basics of Windows XP. Objectives Start Windows XP and tour the desktop Explore the Start menu Run software programs, switch between them,
MENUS AND THE MENU EDITOR Elements of a Menu Menu bar Menu title Separator bar Menu items.
User Interfaces. User Interface What do we mean by a user interface? The user is the person who is using the computer. A user interface is what he or.
®® Microsoft Windows 7 Windows Tutorial 1 Exploring the Basics of Microsoft Windows 7.
Beginning Programming with the Visual Studio.NET Environment.
Operating Systems Chapter 4.
Microsoft Visual Basic 2012 CHAPTER TWO Program and Graphical User Interface Design.
Visual Basic 2008 Express Edition The IDE. Visual Basic 2008 Express The Start Page Recent Projects Open an existing project Create a New Project.
Write today’s date and title in the front of your book. Underline it.
An Introduction to Visual Basic
WINDOWS Part 1 – Start Up Basics
Visual Basic 2005 CHAPTER 2 Program and Graphical User Interface Design.
Integrated Development Environment (IDE)
XP New Perspectives on Windows XP Tutorial 1 Exploring the Basics.
Copyright © 2010 Wolters Kluwer Health | Lippincott Williams & Wilkins Introduction to Windows Chapter 2.
Visual Basic 2005 CHAPTER 2 Program and Graphical User Interface Design.
® Microsoft Office 2010 Exploring the Basics of Microsoft Windows 7.
CITA 342 Section 2 Visual Programming. Allows the use of visual expressions (such as graphics, drawings, or animation) in the process of programming.
Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design Second Edition by Tony Gaddis.
AS Level ICT Health and safety guidelines covering the design and introduction of new software.
Microsoft Visual Basic 2010 CHAPTER TWO Program and Graphical User Interface Design.
Different Types of HCI CLI Menu Driven GUI NLI
Software 3 See Edmodo for images Group name: topcat Group code: i4qf9a 11/03/11.
® Microsoft Office 2010 Exploring the Basics of Microsoft Windows 7.
GCSE ICT By the end of this session, you will be able to:  Understand concept of a Windows operating system and have a basic understanding of GUI.
CIS 210 Systems Analysis and Development Week 7 Part II Designing Interfaces and Dialogues,
COMPUTER III. Fundamental Concepts of Programming Control Structures Sequence Selection Iteration Flowchart Construction Introduction to Visual Basic.
Types of Software Chapter 2.
Data-information stored in files on the disks and CDs in your computer system Why should we save a file when we create it on the computer?
Operating Systems Concepts 1/e Ruth Watson Chapter 1 Chapter 1 Introduction to Operating Systems Ruth Watson.
XP New Perspectives on Microsoft Windows XP Tutorial 1 1 Microsoft Windows XP Creating a Web Site Tutorial 1.
WHAT IS HARDWARE ? Computer hardware is the collection of physical elements that comprise a COMPUTER SYSTEM LIKE A MOUSE, MONITOR, KEYBOARD, SPEAKER MICROPHONE,
GCSE ICT User Interfaces. User interfaces The way in which the user of a computer communicates with the machine is called the Human- Computer Interface.
Fundamentals of Windows Mouse n 4 Basic Operations: –Pointing –Clicking –Double Clicking –Dragging.
Allows the user and the computer to communicate with each other.
Dive Into® Visual Basic 2010 Express
Appendix A Introduction to Windows 7
Visual Basic Code & No.: CS 218
Chapter Topics 15.1 Graphical User Interfaces
11.10 Human Computer Interface
Software Quality Assurance
Program and Graphical User Interface Design
Software engineering USER INTERFACE DESIGN.
Exploring the Basics of Windows XP
Program and Graphical User Interface Design
Object-oriented design for multiple classes
Exploring the Basics of Windows XP
GRAPHICAL USER INTERFACE
Introduction UI designer stands for User Interface designer. UI designing is a type of process that is used for making interfaces in the software or the.
Exploring the Basics of Microsoft Windows 7
Introduction to Computer Software
The Basic Usage and The Event Handling in Glade.
User Interfaces and Libraries
Software Quality Assurance
Chapter 15: GUI Applications & Event-Driven Programming
Visual C# - GUI and controls - 1
Graphical User Interfaces
Graphic Libraries for The User Interface
Graphic and Other Object in Origin
Microsoft Windows 7 Basics
Windows Operating System
Chapter 4 Enhancing the Graphical User Interface
Human-computer interaction
Presentation transcript:

Basic Concepts of The User Interface KwangWoo Choi Department of Physics Kangwon National University  User Interface: Front-end of the software For the easy way to access the software, the easy-to-use user interface is necessary.  CUI and GUI - CUI(Character User Interface): User interface based on the keyboard input. Ex. MS-DOS, Unix shell. - GUI(Graphic User Interface): User interface based on the graphical items such as icons, menus, toolbars, etc. Ex. MS Windows, Unix X Window. More intuitive than the CUI and easy to use.

Popular GUI Operating Systems MS Windows 2000 X Window on Unix

Library for GUI  Basic elements of GUI - Menu: Classified set of the commands - Toolbar: Direct shortcut to the commands or menu items - Dialog box: Interface for the interactive operation with users  Example of the library for GUI - Motif: Based on the X Window in Unix. Supported by the cygwin in the MS Windows Because it is written by C, the library is simple. - Gtk: Based on the X Window in Unix. Supported by the cygwin or Visual C++ in the MS Windows Object oriented library, but written by C. Recently, it is most popular GUI library and powerful.

Summary  GUI is the intuitive user interface and easy to use for users.  MS Windows and X Window are popular GUI operating systems. The library for the user interface is developed on these operating systems. The library is developed that supports the basic elements of the GUI such as menu, toolbar, and dialog box.