gtk/examples
2010-05-03 01:51:19 +02:00
..
arrow
aspectframe
base
buttonbox Remove remaining GtkButtonBox deprecated stuff 2010-05-03 01:49:40 +02:00
buttons
calendar Don't use GTK_WIDGET_*SET_FLAGS (wid, GTK_CAN_DEFAULT) 2010-03-02 07:58:05 +01:00
clist
colorsel Remove remaining GtkWindow deprecated documentation 2010-05-03 01:49:50 +02:00
entry Don't use GTK_WIDGET_*SET_FLAGS (wid, GTK_CAN_DEFAULT) 2010-03-02 07:58:05 +01:00
eventbox
filesel
fixed
frame
gtkdial Don't use GTK_WIDGET_*SET_FLAGS (wid, GTK_REALIZED) 2010-03-06 11:51:33 +01:00
helloworld
helloworld2
label
list Remove all deprecated stuff from GtkContainer 2010-05-03 01:51:19 +02:00
menu
notebook
packbox
paned
pixmap
progressbar Don't use GTK_WIDGET_*SET_FLAGS (wid, GTK_CAN_DEFAULT) 2010-03-02 07:58:05 +01:00
radiobuttons Don't use GTK_WIDGET_*SET_FLAGS (wid, GTK_CAN_DEFAULT) 2010-03-02 07:58:05 +01:00
rangewidgets Don't use GTK_WIDGET_*SET_FLAGS (wid, GTK_CAN_DEFAULT) 2010-03-02 07:58:05 +01:00
rulers
scribble-simple Don't use GTK_WIDGET_STATE in internal code anymore 2010-03-09 02:40:17 +01:00
scribble-xinput Don't use GTK_WIDGET_STATE in internal code anymore 2010-03-09 02:40:17 +01:00
scrolledwin Don't use GTK_WIDGET_*SET_FLAGS (wid, GTK_CAN_DEFAULT) 2010-03-02 07:58:05 +01:00
selection
spinbutton
statusbar
table
text Remove remaining GtkWindow deprecated documentation 2010-05-03 01:49:50 +02:00
tictactoe
tree Remove deprecated code: GtkLabel 2010-05-03 01:48:45 +02:00
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 '&'