gtk/examples
Javier Jardón b072ea220c Remove unneded casts
As gtk_adjustment_new() returns a GtkAdjustment* now

https://bugzilla.gnome.org/show_bug.cgi?id=630731
2010-09-29 01:18:10 +02: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 remaining GtkButtonBox deprecated stuff 2010-05-03 01:49:40 +02:00
buttons updated the (quite outdated) examples to use canonical signal names as 2008-08-11 18:36:07 +00:00
calendar Do not use deprecated API in docs and examples 2010-09-08 17:10:37 +02:00
colorsel Use G_CALLBACK() instead deprecated GTK_SIGNAL_FUNC() 2010-09-08 23:42:25 +02:00
entry Don't use GTK_WIDGET_*SET_FLAGS (wid, GTK_CAN_DEFAULT) 2010-03-02 07:58:05 +01:00
eventbox updated the (quite outdated) examples to use canonical signal names as 2008-08-11 18:36:07 +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
gdk examples: Port example to use cairo region API 2010-06-29 16:06:38 +02:00
gtkdial Remove unneded casts 2010-09-29 01:18:10 +02:00
helloworld updated the (quite outdated) examples to use canonical signal names as 2008-08-11 18:36:07 +00:00
helloworld2 updated the (quite outdated) examples to use canonical signal names as 2008-08-11 18:36:07 +00:00
label Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
menu updated the (quite outdated) examples to use canonical signal names as 2008-08-11 18:36:07 +00:00
notebook updated the (quite outdated) examples to use canonical signal names as 2008-08-11 18:36:07 +00:00
packbox updated the (quite outdated) examples to use canonical signal names as 2008-08-11 18:36:07 +00:00
paned Remove all .cvsignore files. 2007-12-13 11:18:45 +00:00
pixmap gdk: Remove GdkPixmap 2010-09-26 15:11:30 +02:00
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 gtk_adjustment_new() should return a GtkAdjustment* 2010-09-29 01:18:10 +02:00
rulers updated the (quite outdated) examples to use canonical signal names as 2008-08-11 18:36:07 +00:00
scribble-simple Don't use GTK_WIDGET_STATE in internal code anymore 2010-03-09 02:40:17 +01:00
scribble-xinput Update the Makefile for scribble-xinput 2010-05-03 13:49:16 +03:00
scrolledwin Don't use GTK_WIDGET_*SET_FLAGS (wid, GTK_CAN_DEFAULT) 2010-03-02 07:58:05 +01:00
selection updated the (quite outdated) examples to use canonical signal names as 2008-08-11 18:36:07 +00:00
spinbutton Remove unneded casts 2010-09-29 01:18:10 +02:00
statusbar updated the (quite outdated) examples to use canonical signal names as 2008-08-11 18:36:07 +00:00
table updated the (quite outdated) examples to use canonical signal names as 2008-08-11 18:36:07 +00:00
tictactoe Do not use static GTypeInfo and GInterfaceInfo 2009-11-06 01:21:09 +01:00
wheelbarrow Remove a missing include in one of the tests that broke the build from a fresh checkout 2010-05-07 21:37:35 +01:00
extract.awk rearrange rules to not emit the example start and end markers. 2002-02-16 18:31:14 +00:00
extract.sh The following changes are the beginning of the work on #71430. 2002-02-14 22:49:57 +00:00
find-examples.sh
Makefile Remove links to code that no longer exists to fix make dist 2010-05-07 23:14:00 +01: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 '&'