diff options
author | James Henstridge <james@daa.com.au> | 2001-12-18 08:19:51 +0000 |
---|---|---|
committer | James Henstridge <jamesh@src.gnome.org> | 2001-12-18 08:19:51 +0000 |
commit | 979e8ba7b34b49de6ba6fce8a1dbb51c0221c550 (patch) | |
tree | e148802211eeaeb7225b96ca3bc1c0f3d0e395af /Makefile.am | |
parent | 7638263dccb263783dcf1cb0a3ed0e8fd94db212 (diff) | |
download | pygtk-979e8ba7b34b49de6ba6fce8a1dbb51c0221c550.tar.gz |
add new example to dist.
2001-12-18 James Henstridge <james@daa.com.au>
* Makefile.am (EXTRA_DIST): add new example to dist.
* examples/gobject/properties.py: test program that implements a
few properties.
* gobjectmodule.c (add_properties): new function for parsing the
__gproperties__ class attribute.
(create_property): helper routine for creating and installing the
new pspecs.
(pyg_type_register): add code to call add_properties if a
__gproperties__ attribute is found.
(pyg_object_class_init): set set_property/get_property methods in
vtable, and get rid of debug message.
(initgobject): add G_PARAM_* constants.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 4e800a91..0570018b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -74,6 +74,7 @@ EXTRA_DIST += \ THREADS \ examples/atk/atk-demo.py \ examples/gobject/signal.py \ + examples/gobject/properties.py \ examples/pygtk-demo/pygtk-demo.py \ examples/pygtk-demo/demos/__init__.py \ examples/pygtk-demo/demos/buttonbox.py \ |