gtk2/examples
Cody Russell 57223c9a05 Revert name change
svn path=/trunk/; revision=20724
2008-07-01 22:57:50 +00:00
..
arrow Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
aspectframe Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
base Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
buttonbox Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
buttons Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
calendar Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
clist Include "config.h" instead of <config.h> Command used: find -name 2008-06-22 14:28:52 +00:00
colorsel Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
entry Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
eventbox Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
filesel Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
fixed Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
frame Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
gtkdial Revert name change 2008-07-01 22:57:50 +00:00
helloworld Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
helloworld2 Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
label Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
list Include "config.h" instead of <config.h> Command used: find -name 2008-06-22 14:28:52 +00:00
menu Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
notebook Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
packbox Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
paned Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
pixmap Include "config.h" instead of <config.h> Command used: find -name 2008-06-22 14:28:52 +00:00
progressbar Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
radiobuttons Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
rangewidgets Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
rulers Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
scribble-simple Revert name change 2008-07-01 22:57:50 +00:00
scribble-xinput Revert name change 2008-07-01 22:57:50 +00:00
scrolledwin Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
selection Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
spinbutton Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
statusbar Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
table Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
text Include "config.h" instead of <config.h> Command used: find -name 2008-06-22 14:28:52 +00:00
tictactoe Revert name change 2008-07-01 22:57:50 +00:00
tree Include "config.h" instead of <config.h> Command used: find -name 2008-06-22 14:28:52 +00:00
wheelbarrow Include "config.h" instead of <config.h> Command used: find -name 2008-06-22 14:28:52 +00:00
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 '&'