gtk2/examples
CDT 1998 Shawn T. Amundson 3261e656e5 gtk/gtkcalendar.c: examples/calendar/gcalendar.c: remove HAVE_FEATURES
Sun Sep 27 22:02:48 CDT 1998 Shawn T. Amundson <amundson@gtk.org>

        * gtk/gtkcalendar.h:
          gtk/gtkcalendar.c:
          examples/calendar/gcalendar.c: remove HAVE_FEATURES stuff
1998-09-28 03:20:03 +00:00
..
aspectframe subsections on Aspect Frames and Paned widgets. 1998-04-04 11:31:51 +00:00
buttons Removed g_object_pointer_hash, which was just g_direct_hash. 1998-06-09 23:18:11 +00:00
calendar gtk/gtkcalendar.c: examples/calendar/gcalendar.c: remove HAVE_FEATURES 1998-09-28 03:20:03 +00:00
clist add section on GtkCList widget, contributed by Stefan Mars 1998-06-25 08:57:29 +00:00
entry Tue Mar 31 15:41:57 PST 1998 Shawn T. Amundson 1998-03-31 23:43:49 +00:00
eventbox Tue Mar 31 15:41:57 PST 1998 Shawn T. Amundson 1998-03-31 23:43:49 +00:00
filesel Removed g_object_pointer_hash, which was just g_direct_hash. 1998-06-09 23:18:11 +00:00
gtkdial Changed LGPL address for FSF in all .h and .c files 1998-04-13 02:02:47 +00:00
helloworld - new section on Events - change all delete_event callbacks to include a 1998-05-29 12:43:18 +00:00
helloworld2 Removed g_object_pointer_hash, which was just g_direct_hash. 1998-06-09 23:18:11 +00:00
list Tue Mar 31 15:41:57 PST 1998 Shawn T. Amundson 1998-03-31 23:43:49 +00:00
menu - Tidy up of the menufactory example from Andy Kahn <kahn@zk3.dec.com> - 1998-08-13 13:11:14 +00:00
notebook Removed g_object_pointer_hash, which was just g_direct_hash. 1998-06-09 23:18:11 +00:00
packbox #include fixes (reported by Asbjoern Pettersen). 1998-08-11 18:27:49 +00:00
packer boy! did i really modify that many files? 1998-06-16 05:20:05 +00:00
paned subsections on Aspect Frames and Paned widgets. 1998-04-04 11:31:51 +00:00
pixmap Removed g_object_pointer_hash, which was just g_direct_hash. 1998-06-09 23:18:11 +00:00
progressbar Removed g_object_pointer_hash, which was just g_direct_hash. 1998-06-09 23:18:11 +00:00
radiobuttons Removed g_object_pointer_hash, which was just g_direct_hash. 1998-06-09 23:18:11 +00:00
rangewidgets - Tidy up of the menufactory example from Andy Kahn <kahn@zk3.dec.com> - 1998-08-13 13:11:14 +00:00
rulers Removed g_object_pointer_hash, which was just g_direct_hash. 1998-06-09 23:18:11 +00:00
scribble-simple Changed LGPL address for FSF in all .h and .c files 1998-04-13 02:02:47 +00:00
scrolledwin Removed g_object_pointer_hash, which was just g_direct_hash. 1998-06-09 23:18:11 +00:00
selection Tue Mar 31 15:41:57 PST 1998 Shawn T. Amundson 1998-03-31 23:43:49 +00:00
statusbar Removed g_object_pointer_hash, which was just g_direct_hash. 1998-06-09 23:18:11 +00:00
table Removed g_object_pointer_hash, which was just g_direct_hash. 1998-06-09 23:18:11 +00:00
text GtkTree section from David Huggins-Daines <bn711@freenet.carleton.ca>, add 1998-07-27 08:21:40 +00:00
tictactoe Changed LGPL address for FSF in all .h and .c files 1998-04-13 02:02:47 +00:00
tree GtkTree section from David Huggins-Daines <bn711@freenet.carleton.ca>, add 1998-07-27 08:21:40 +00:00
wheelbarrow Removed g_object_pointer_hash, which was just g_direct_hash. 1998-06-09 23:18:11 +00:00
extract.awk New files to automagically extract code examples from the tutorial. 1998-06-04 11:15:55 +00:00
extract.sh New files to automagically extract code examples from the tutorial. 1998-06-04 11:15:55 +00:00
find-examples.sh Changes for GTK+ 0.99.10 1998-04-08 04:07:01 +00:00
README.1ST new file to explain how the code examples should be extracted from the 1998-06-23 11:15:20 +00:00

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 '&'