gtk2/examples
GMT 2000 Tony Gale 2444c80ff7 New section on GtkCalendar Update example code
Wed Feb 23 10:54:14 GMT 2000  Tony Gale <gale@gtk.org>

        * docs/gtk_tut.sgml: New section on GtkCalendar
        * examples/calendar: Update example code
2000-02-23 10:59:21 +00:00
..
arrow
aspectframe threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
base
buttonbox threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
buttons threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
calendar New section on GtkCalendar Update example code 2000-02-23 10:59:21 +00:00
clist
entry threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
eventbox threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
filesel threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
fixed threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
frame threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
gtkdial threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
helloworld threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
helloworld2 threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
label threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
list threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
menu threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
notebook threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
packbox threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
packer Adapt cast macros to standard. 1999-11-22 21:52:50 +00:00
paned threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
pixmap threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
progressbar threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
radiobuttons threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
rangewidgets threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
rulers threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
scribble-simple threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
scribble-xinput threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
scrolledwin threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
selection threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
spinbutton
statusbar threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
table threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
text threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
tictactoe threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
tree threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
wheelbarrow threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
extract.awk
extract.sh
find-examples.sh
Makefile threads example from Erik Mouw. New question on GtkLabel background 1999-11-13 23:06:46 +00:00
README.1ST

GTK Example Code - Tony Gale <gale@gtk.org> 980623
--------------------------------------------------

I have written an awk script to automatically extract the code
examples from the GTK Tutorial (in sgml), so they only have to be
changed in one place.

It's called 'extract.awk', and there is a shell wrapper to invoke
it called 'extract.sh'

It takes the following switches:
 -c : Just do checking rather than output files
 -f <filename> : Extract a specific file
 -d : Extract file(s) to current directory

Without the -d switch, the code will be placed in the appropriate
sub-directory. Those sub-directories will be created if they do not
exist.

Without the -f switch, all code examples will be extracted.

The shell wrapper assumes that the GTK Tutorial is in the 
file "../docs/gtk_tut.sgml"

It works by looking for sections of text in the tutorial surrounded
by, for example:

/* example-start helloworld helloworld.c */

and

/* example-end */

Where "helloworld" is the directory into which the file will be
placed (which can also be a directory spec like hello/hello1), and
"helloworld.c" is the file name for the code.

So, the code between these lines would be extracted to the file
helloworld/helloworld.c

It also handles replacing the sgml tag '&amp;' with '&'