Development the Text Editor

Slides:



Advertisements
Similar presentations
1 After completing this lesson, you will be able to: Specify options. Customize the appearance of messages. Add a signature to an .
Advertisements

Presentation Title. Presentation Title (can go two or three lines) This Font is Georgia/bold Template Instructions To edit the presentation title above:
1 TITRE Click to edit text. 2 Text box Click to edit text A Titre.
$100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300.
The “Cool” Way to Share Your PowerPoint. Slideshare 1. Go to 2. Sign up for a free account – Click.
How to embed bubbl.us mindmaps into Wikispace?. 1.At retrieve your mindmap. 2.Click on “Menu” at the bottom right corner.
Visual Basic 2008 Express Edition The IDE. Visual Basic 2008 Express The Start Page Recent Projects Open an existing project Create a New Project.
Turning Glowing Text into Animated Glowing Text Using Animation Shop.
Intro to MFC. Open VS and create new project 1)Open MS Visual Studio 2008 Professional (It must be the Professional Edition, the Express Edition will.
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.
Quick guide on making PowerPoint slides  PowerPoint is a presentation program  A PowerPoint slideshow is a stack of slides being presented one after.
Unit 5, Lesson 1 Working with Databases. Objectives Identify the parts of the Access screen. Identify the parts of the Access screen. Understand the purpose.
Borland Graphics Interface in the Windows KwangWoo Choi Department of Physics Kangwon National University Using the BGI(Borland Graphic Interface) in the.
GUI With GTK+ Under Linux Fanfan Xiong. Introduction GTK+ (GIMP toolkit) : A library for creating graphical user interfaces(GUI) Two examples developed.
Microsoft PowerPoint— The Basics Presented by: Kyle Kuehler Social Studies/Instructional Technology Specialist (806)
Double click here to add event title Double click here to add event date Double click here to add event time Double click here to add event location.
1 After completing this lesson, you will be able to: Open a file. Navigate through a document. Scroll through a document. Insert text in a document. Select.
Lecture Set 7 Procedures and Event Handlers Part B - The Structure of an Application Event Handlers.
“Successful Uses of HTML Computer Code” Shannon Harwell.
Word 2010 Edit Page Layout In this lesson, you will learn how to insert columns and page breaks. How to change the page orientation, paper size, page margins,
DEPARTMENT MODULE User’s Guide. Step 1. Click Files Step 2. Click Department.
7 Adding Signatures to s Step 1 Click on ‘Tools’ option in the toolbar at the top of the page. Click on ‘Options’
THE POWER OF A POINT. WHAT’S THE POINT? Use PowerPoint software to create informative or picture slides that summarize information effectively and efficiently.
Course Number and Name Do not move or resize the white textbox; font change and text edits MUST fit inside white text box. It is recommended to leave background.
Click to Add Title Click to Add Subtitle.
Company Name Here Click Here To Add Text.
Microsoft Publisher video tutorial
Microsoft Video Editing Software
Custom dialog boxes Unit objectives
Basic Usage of Glade Use Glade and create the interface
P.P.TEMPLATE KOREA
WordPad Starting WordPad!.
Course Name Course Number Section Term – Instructor Name
Back Cover Cover Page Page 1-Triple click in this textbox and enter your information for Page 1 of your book. Page2-Triple click in this textbox and enter.
Back Cover Cover Page Page 1-Triple click in this textbox and enter your information for Page 1 of your book. Page2-Triple click in this textbox and enter.
Self Registration for the IWB
Development The Foundation Window.
Your Text Your Text Your Text Your Text Your Text Your Text
The Basic Usage and The Event Handling in Glade.
Lesson 3: Find and Replace Tools
Course Name Course Number Section Term – Instructor Name
STEP ONE. STEP ONE. STEP ONE. STEP ONE. STEP ONE. 02
Click to edit title TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing.
EVENT TITLE Time, Date Location
YOUR text YOUR text YOUR text YOUR text
TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing arrow to the right on.
EVENT TITLE Time, Date Location
TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing arrow to the right on.
TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing arrow to the right on.
TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing arrow to the right on.
Click to edit title TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing.
Control of The Text Area and The Status Bar.
Click to add your text.
Development of The Menu System
Click Summary Value Button to Show Source of Integral or Time
TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing arrow to the right on.
Back Cover Cover Page Page 1-Triple click in this textbox and enter your information for Page 1 of your book. Page2-Triple click in this textbox and enter.
Click to edit title TO ADD NEW SLIDE LAYOUTS: Make sure you have the ‘Home’ tab selected at the top of the PowerPoint screen and click the down facing.
Graphic Libraries for The User Interface
• Every signal is uniquely identified by a name,
Building An Example Program to Plot.
Graphic and Other Object in Origin
Lecture 5 Menu Strip Demo with Dialog Controls.
Basic Concepts of The User Interface
Click to add text text DIAGRAM.
Adjustment in Origin Hyun Hee Shim Department of Physics Kangwon National University.
Development of The Menu System
Self Registration for the IWB
Adding Media to Courses
Click here to add your title
Presentation transcript:

Development the Text Editor Kwangwoo Choi Department of Physics Kangwon National University • Development the Text Editor using the Glade • Using the GtkStatusbar

Make the widget Vertical Box

Add the toolbar widget Buttons

Add the Textbox widget Edit the Window

Add event hendling void on_Open_activate ( GtkMenuItem *menuitem, gpointer user_data) { GtkWidget *open_file; open_file = create_fileselection1(); gtk_widget_show (open_file); } gtk_signal_connect (GTK_OBJECT (ok_button1), "clicked", GTK_SIGNAL_FUNC(on_ok_button1_clicked), fileselection1);

Text Editor

Summary • Development the Text Editor using the Glade