summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorJames Henstridge <james@daa.com.au>1999-02-23 11:24:18 +0000
committerJames Henstridge <jamesh@src.gnome.org>1999-02-23 11:24:18 +0000
commit4331a74c8ff40502c213eed791ed775b4ab619f9 (patch)
tree3960bf14a75b7d1123969853bce3d54d4bbad5f8 /README
parent8f264bd573916d92862a9dfbc7215e5c0ef769a1 (diff)
downloadpygtk-4331a74c8ff40502c213eed791ed775b4ab619f9.tar.gz
added references to the MAPPING file.
1999-02-23 James Henstridge <james@daa.com.au> * README, Makefile.am, pygtk.spec: added references to the MAPPING file. * MAPPING: new file describing the mapping of GTK+ onto python as pygtk does it. 1999-02-22 James Henstridge <james@daa.com.au> * description.py (GdkCursor): added information about this type. * gtk.py: commented out the __getattr__, __setattr__ and __delattr__ methods of GtkObject. There were too many things that broke because of these changes. If I can get these to work correctly in the future, I will consider re-enabling it, but not till then. * examples/testgtk/testgtk.py (create_cursor_test): added a cursor test to the python testgtk. It is adapted from the translation sent in by Osamu Tanimoto. * gtkmodule.c: fixed a bit of bad copy'n'paste in the GC part of the style wrapper code. Thanks go to Osamu Tanimoto <tanimoto@rios.co.jp>. (PyGdkCursor_GetAttr): now GdkCursor objects have a type attribute that returns the type number for the object, and a name attribute that gives a string representation of that type number.
Diffstat (limited to 'README')
-rw-r--r--README5
1 files changed, 4 insertions, 1 deletions
diff --git a/README b/README
index 0a12f49d..a0e10cc4 100644
--- a/README
+++ b/README
@@ -192,7 +192,10 @@ The function mainloop() is basically just the function gtk_main(), and
the function mainquit is equivalent to gtk_main_quit().
For further information on the interface, please see the source file
-Gtkinter.py.
+gtk.py.
+
+For a more in depth look at the mapping of the C GTK functions to
+python, read the file MAPPING that is distributed with this package.
Should I Use _gtkmodule or gtk.py?