]> git.draconx.ca Git - gob-dx.git/blob - examples/README
Release 2.0.0
[gob-dx.git] / examples / README
1 These are some example .gob files
2
3 gtk-button-count.gob    An example showing how simple it is to derive
4                         objects and override methods, this one implements
5                         a "click counting" on a GtkButton.  It defines
6                         a property for getting and setting the count
7                         and it overrides the "clicked" default handler
8                         to count clicks.  It also has inline documentation
9                         in gtk-doc style which gob can translate
10                         and stuff into the source file for you.
11
12 my-person.gob           A simple file which can store some identity
13                         information about a person, it shows properties,
14                         signals and others.
15
16 GNOME_Foo_SomeInterface.idl
17 foo-some-interface.gob  Example idl and gob file for a BonoboClass
18                         implementation.  It can be this easy to write
19                         Bonobo classes.