gtk/examples
Matthias Clasen 721c3bc101 Replace a lot of idle and timeout calls by the new gdk_threads api.
2006-12-22  Matthias Clasen  <mclasen@redhat.com>

        * *.c: Replace a lot of idle and timeout calls by
        the new gdk_threads api.
2006-12-22 19:10:43 +00:00
..
arrow Re-extract. 2005-01-03 19:26:36 +00:00
aspectframe Re-extract. 2005-01-03 19:26:36 +00:00
base Re-extract. 2005-01-03 19:26:36 +00:00
buttonbox Re-extract. 2005-01-03 19:26:36 +00:00
buttons Re-extract. 2005-01-03 19:26:36 +00:00
calendar Re-extract. 2005-01-03 19:26:36 +00:00
clist
colorsel Re-extract. 2005-01-03 19:26:36 +00:00
entry Re-extract. 2005-01-03 19:26:36 +00:00
eventbox Re-extract. 2005-01-03 19:26:36 +00:00
filesel Re-extract. 2005-01-03 19:26:36 +00:00
fixed Re-extract. 2005-01-03 19:26:36 +00:00
frame Re-extract. 2005-01-03 19:26:36 +00:00
gtkdial Replace a lot of idle and timeout calls by the new gdk_threads api. 2006-12-22 19:10:43 +00:00
helloworld Re-extract. 2005-01-03 19:26:36 +00:00
helloworld2 Re-extract. 2005-01-03 19:26:36 +00:00
label Re-extract. 2005-01-03 19:26:36 +00:00
list
menu Re-extract. 2005-01-03 19:26:36 +00:00
notebook Re-extract. 2005-01-03 19:26:36 +00:00
packbox Re-extract. 2005-01-03 19:26:36 +00:00
paned Re-extract. 2005-01-03 19:26:36 +00:00
pixmap
progressbar Replace a lot of idle and timeout calls by the new gdk_threads api. 2006-12-22 19:10:43 +00:00
radiobuttons Re-extract. 2005-01-03 19:26:36 +00:00
rangewidgets Re-extract. 2005-01-03 19:26:36 +00:00
rulers Re-extract. 2005-01-03 19:26:36 +00:00
scribble-simple Re-extract. 2005-01-03 19:26:36 +00:00
scribble-xinput Re-extract. 2005-01-03 19:26:36 +00:00
scrolledwin Re-extract. 2005-01-03 19:26:36 +00:00
selection Re-extract. 2005-01-03 19:26:36 +00:00
spinbutton Re-extract. 2005-01-03 19:26:36 +00:00
statusbar Re-extract. 2005-01-03 19:26:36 +00:00
table Re-extract. 2005-01-03 19:26:36 +00:00
text
tictactoe Re-extract. 2005-01-03 19:26:36 +00:00
tree
wheelbarrow
extract.awk
extract.sh
find-examples.sh
Makefile
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 '&'