The Basic Usage and The Event Handling in Glade.

Slides:



Advertisements
Similar presentations
What Was I Thinking??. Key Terms 1. Control 1. Control 2. Design Mode 2. Design Mode 3. Event 3. Event 4. Form 4. Form 5. Interface 5. Interface 6. Properties.
Advertisements

Introduction to Visual Basic.NET Uploaded By: M.Sheraz anjum.
Visual Basic 2010 How to Program. © by Pearson Education, Inc. All Rights Reserved.2.
Visual Basic 2010 How to Program Reference: Instructor: Maysoon Bin Duwais slides Visual Basic 2010 how to program by Deitel © by Pearson Education,
Guide to Oracle10G1 Introduction To Forms Builder Chapter 5.
 2002 Prentice Hall. All rights reserved. Chapter 2 - Introduction to the Visual Studio.NET IDE Outline 2.1Introduction 2.2Overview of the Visual Studio.NET.
3 Copyright © 2004, Oracle. All rights reserved. Working in the Forms Developer Environment.
1 Introduction to the Visual Studio.NET IDE Powerpoint slides modified from Deitel & Deitel.
Introduction to Visual Basic. What is Visual Basic? An environment for developing Windows applications Components –A GUI (Graphical User Interface - gooey)
MS-Access XP Lesson 5. Creating a Query with Expression Builder Eg. Consider the following table. Table Name: Overtime Fields & Data types: Emp No (Number),
1b – Inside Visual Studio Lingma Acheson Department of Computer and Information Science, IUPUI CSCI N331 VB.NET Programming.
Access Tutorial 10 Automating Tasks with Macros
2. Introduction to the Visual Studio.NET IDE 2. Introduction to the Visual Studio.NET IDE Ch2 – Deitel’s Book.
Visual Basic 2008 Express Edition The IDE. Visual Basic 2008 Express The Start Page Recent Projects Open an existing project Create a New Project.
IE 411/511: Visual Programming for Industrial Applications
1 1 Lab1 Ismail M. Romi – IT Dept, PPU, Visual Basic 2005 Programming Tour.
 2009 Pearson Education, Inc. All rights reserved Dive Into ® Visual C# 2008 Express.
Integrated Development Environment (IDE)
NOTE: To change the image on this slide, select the picture and delete it. Then click the Pictures icon in the placeholder to insert your own image. WEB.
3 Copyright © 2004, Oracle. All rights reserved. Working in the Forms Developer Environment.
 2006 Pearson Education, Inc. All rights reserved Introduction to the Visual C# 2005 Express Edition IDE.
Chapter 2 – Introduction to the Visual Studio .NET IDE
1 Creating Windows GUIs with Visual Studio. 2 Creating the Project New Project Visual C++ Projects Windows Forms Application Give the Project a Name and.
Microsoft Visual Basic 2005 BASICS Lesson 1 A First Look at Microsoft Visual Basic.
GUI With GTK+ Under Linux Fanfan Xiong. Introduction GTK+ (GIMP toolkit) : A library for creating graphical user interfaces(GUI) Two examples developed.
Visual Basic CDA College Limassol Campus Lecture:Pelekanou Olga Semester C Week - 1.
Copyright © 2010 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design Second Edition by Tony Gaddis.
Overview GUI Programming with GTK+ and GLADE 장정철.
Slide 1 Using Menu Bar & Common Dialog Boxes. Slide 2 Setting Up the Main Items v First open the form on which you want the menu located v Then start.
 2002 Prentice Hall. All rights reserved. 1 Chapter 2 – Introduction to the Visual Studio.NET IDE Outline 2.1Introduction 2.2Visual Studio.NET Integrated.
Ajmer Singh PGT(IP) JAVA IDE Programming - I. Ajmer Singh PGT(IP) GUI (Graphical User Interface) It is an interface that uses a graphic entities along.
Oracle Forms Oracle Forms Builder provides various tools, which have powerful Graphical User Interfaces (GUI's) to design such forms. All objects, properties,
Lecture 10 Using Interface Builder to create Mac Applications.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
MATLAB and SimulinkLecture 61 To days Outline Graphical User Interface (GUI) Exercise on this days topics.
Visual Basic.Net. Software to Install Visual Studio 2005 Professional Edition (Requires Windows XP Pro) MSDN Library for Visual Studio 2005 Available.
IE 411/511: Visual Programming for Industrial Applications Lecture Notes #2 Introduction to the Visual Basic Express 2010 Integrated Development Environment.
Visual Basic.NET BASICS Lesson 14 Menus and Printing.
COMPUTER PROGRAMMING I 3.01 Apply Controls Associated With Visual Studio Form.
 2002 Prentice Hall. All rights reserved. 1 Introduction to the Visual Studio.NET IDE Outline Introduction Visual Studio.NET Integrated Development Environment.
 2007 Pearson Education, Inc. All rights reserved Introduction to the Visual Basic Express 2005 IDE.
Building GUI applications with Python, GTK and Glade
Dive Into® Visual Basic 2010 Express
Chapter 3: I Need a Tour Guide (Introduction to Visual Basic 2012)
Visual Basic .NET BASICS
Working in the Forms Developer Environment
Visual Basic Code & No.: CS 218
Chapter Topics 15.1 Graphical User Interfaces
Chapter 2 – Introduction to the Visual Studio .NET IDE
3.01 Apply Controls Associated With Visual Studio Form
Lecture on Oracle Forms
1. Introduction to Visual Basic
3.01 Apply Controls Associated With Visual Studio Form
Introduction to the Visual C# 2005 Express Edition IDE
MFC Dialog Application
GNOME/GTK+ Introduction
Chapter 7 Advanced Form Techniques
Social Media And Global Computing Introduction to Visual Studio
Chapter 2 – Introduction to the Visual Studio .NET IDE
Basic Usage of Glade Use Glade and create the interface
Hands-on Introduction to Visual Basic .NET
Understanding the Visual IDE
GTK + Programming.
Development The Foundation Window.
Chapter 15: GUI Applications & Event-Driven Programming
Visual C# - GUI and controls - 1
Graphic Libraries for The User Interface
Basic Concepts of The User Interface
Overview of the IDE Visual Studio .NET is Microsoft’s Integrated Development Environment (IDE) for creating, running and debugging programs (also.
Development the Text Editor
Presentation transcript:

The Basic Usage and The Event Handling in Glade. Sung-Ju Kang Department of Physics Kangwon National University Diagram for the GUI program running in GTK library. Application GNOME Libs The basic background knowledge GTK GDK Used to make Pix Map and Color Font GLib The low-level cord library Xlib

Tool for GTK Free user interface builder for GTK+. GLADE Dev-C++ 4 Full-featured integrated development environment. GLADE Free user interface builder for GTK+.

Main Window It lists all of the windows and dialogs making up your project. Double-clicking on an item in the list shows the corresponding window or dialog. Menu and toolbar commands enable you to create new projects, load and save them, and build the source code.

Widget Palette Window The most important window in Glade is the widget palette. It shows icons representing all of the widgets which are available. To add new windows and dialogs to your project, simply select the icon in the palette. To add widgets to a window or dialog, select the widget in the palette, then click on the position you want to add it.

Property Editor Window This allows you to alter the properties of widgets, such as the widget size or the label text. The signals page also allows you to add signal handlers to widgets, so you can, for example, specify the function to be called when a button is clicked.

Summary 1. GTK+ is a multi-platform toolkit for creating graphical user interfaces. 2. Glade is a free user interface builder for GTK+.