Development of The Menu System

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

MS Access 2003 Tutorial By: Juan GUANTENG!!! Y7. Step 1 Launch the Microsoft Access 2003 program. This can be done by clicking an icon on the desktop.
Lesson 1 Review Part 3 Microsoft Office The ___ allow you to move up/down or right/left in a worksheet. Scroll bars.
Two ways to access new IEP’s State IEP Forms and InterimIEP.
Chapter 8 Working on a Presentation. Formatting and Editing Formatting Layouts Formatting Text Slide Master Graphics Header and Footer Slide Transitions.
Lesson 3: Using Windows Programs. 2 Concept 3.1 Common Features in Programs A program is a set of directions that tell the computer what to do –Different.
Customizing Menus and Toolbars. Manipulating Command Bars Customize: –Right-click any place on a command bar and cick Customize … Customize window: –Toolbars,
How to convert a Word file to PDF. Log in to an iSolutions workstation and start Adobe Acrobat from the Start menu.
Visual Basic 2008 Express Edition The IDE. Visual Basic 2008 Express The Start Page Recent Projects Open an existing project Create a New Project.
Visual Basic Chapter 1 Mr. Wangler.
Turning Glowing Text into Animated Glowing Text Using Animation Shop.
To search for a credit class, Click on Credit students.
If you use Macromedia Flash Player 8 & your course folder not in the ‘Trusted Location’ list of Macromedia you have to follow the following steps to run.
HOW TO RECORD YOUR VOICE FOR AN AUDIO PODCAST Audacity Tutorial.
1 After completing this lesson, you will be able to: Start Word. Explore the Word window. Enter text in a document. Save a document. Close a document and.
Microsoft Word The Help function. Under the “File” menu, click “Help”
Click on the Title Bar. Oops, click here to try again… click here to try again…
Screen ViewModule Title: Notes: Branching Instructions: Audio Script: Page: Use Microsoft Outlook 1 Create a Distribution List A distribution list is a.
Tutorial 11 Five windows included in the Visual Basic Startup Screen Main Form Toolbox Project Explorer (Project) Properties.
Click your mouse to continue. Creating a New Mail Merge Document When you need to create a form letter but do not have an existing main document, you can.
1 After completing this lesson, you will be able to: Start Access and open an existing database. Move around in Access. Open and close a table. (continued)
Visual Basic.NET BASICS Lesson 1 A First Look at Microsoft Visual Basic.NET.
1 After completing this lesson, you will be able to: Create and run a query. Specify criteria in a query. Create a calculated field. Create a multiple-table.
Borland Graphics Interface in the Windows KwangWoo Choi Department of Physics Kangwon National University Using the BGI(Borland Graphic Interface) in the.
Microsoft Visual Basic 2005 BASICS Lesson 1 A First Look at Microsoft Visual Basic.
The parts of a Computer Window
GUI With GTK+ Under Linux Fanfan Xiong. Introduction GTK+ (GIMP toolkit) : A library for creating graphical user interfaces(GUI) Two examples developed.
Introduction to a Database Defining a database Database window in Access The six items in window: Tables, Queries Forms, Reports, Macros, Modules.
CS 281 – Fall 2015 Lab 4 Parametric Query and Forms in MS Access.
Font, Font Size, and Text Color. When you have a text box open you have access to the font, font size, and font color from the home screen under the section.
1 After completing this lesson, you will be able to: Get around the Internet with your browser. Connect to the Internet. Print Web pages. Save Web pages.
Exporting. Export Step 1 – In Outlook select Contacts.
Application software- programs that let you do things What are some computer programs that you or your parents use on the computer?
After completing this lesson, you will be able to: Add comments to a presentation. Send a presentation via . Track changes in a presentation. Use.
HOW TO DE-FRAG. What is De-Fragmenting? What exactly does it do? What De-fragment does is it compress your files so the hard drive has more space to run.
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?
William H. Bowers – Specification Techniques Torres 17.
Visual Basic.NET Comprehensive Concepts and Techniques Chapter 2 The Visual Basic.NET Integrated Development Environment.
CS 281 – Fall 2010 Lab 4 Parametric Query and Forms in MS Access.
HOW TO RECORD YOUR VOICE FOR AN AUDIO PODCAST Audacity Tutorial.
University of Toledo Safety & Health Department
Setting up Solver Add-in for Excel
Customizing the Quick Access Toolbar in Microsoft Office
Analyzing Data Using Access
Creating Web Pages and Graphics
Microsoft Video Editing Software
Once Windows 8 is deployed in your machine, the highlighted windows features below should be installed. Please follow the below steps to do so – Open Run.
< Corel WordPerfect 8 ~ A Study Guide
REVIEW FOR WINDOWS APPLICATIONS TEST ON FRIDAY- SEPT. 7, 2012
Basic Usage of Glade Use Glade and create the interface
Horizontal Centering Using the menu bar
Using Layers in Photoshop Elements 8
Development The Foundation Window.
Adding Photo to Agent Profile
The Basic Usage and The Event Handling in Glade.
ADMIT Doctoral Coordinators: Assigning Faculty Reviewers &
Courses Tab Press the Courses tab
and Other objects in PowerPoint
ADMIT Doctoral Coordinators: Assigning Faculty Reviewers &
Teacher In-Service Day PowerPoint--Make it, Take it, Use it
Development of The Menu System
Adjust The Document Style in MS word
Creating a simple query in the Design View
Graphic Libraries for The User Interface
• Every signal is uniquely identified by a name,
Graphic and Other Object in Origin
Basic Concepts of The User Interface
Getting started with ENDNOTE
Development the Text Editor
Microsoft Outlook (Disabling desktop notifications)
Presentation transcript:

Development of The Menu System KwangWoo Choi Department of Physics Kangwon National University Steps for the toolbar 1. Make a box for the xpm file (Bitmap graphic file) and label 2. Make a pixmap from the xpm file 3. Make a label for the button 4. Packing the pixmap and label into the button

Make The Toolbar and Label Make the box for the xpm file and label box1 = gtk_hbox_new (FALSE, 0); Make the pixmap from the xpm file pixmap = gdk_pixmap_create_from_xpm (parent->window, &mask, &style->bg[GTK_STATE_NORMAL], xpm_filename); pixmapwid = gtk_pixmap_new (pixmap, mask); Make the label for the button label = gtk_label_new (label_text); Packing the pixmap and label into the button gtk_box_pack_start (GTK_BOX (box1), pixmapwid, FALSE, FALSE, 3); gtk_box_pack_start (GTK_BOX (box1), label, FALSE, FALSE, 3); gtk_widget_show(pixmapwid); gtk_widget_show(label);

Using The Toolbar in Main Program Make a new button button = gtk_button_new (); gtk_signal_connect (GTK_OBJECT (button), "clicked", GTK_SIGNAL_FUNC (callback), (gpointer) "cool button"); Make a box box1 = xpm_label_box(window, "info.xpm", "cool button"); Packing The Button and Show it gtk_widget_show(box1); gtk_container_add (GTK_CONTAINER (button), box1); gtk_widget_show(button); gtk_container_add (GTK_CONTAINER (window), button); gtk_widget_show (window);

Running Screen