summaryrefslogtreecommitdiff
path: root/configure.in
Commit message (Collapse)AuthorAgeFilesLines
* comment out, as container args have been switched to properties now.James Henstridge2001-06-211-3/+3
| | | | | | | | | | | | | | | | | | 2001-06-21 James Henstridge <james@daa.com.au> * gtk/gtkobject-support.c (pygtk_dict_as_container_args): comment out, as container args have been switched to properties now. 2001-06-19 James Henstridge <james@daa.com.au> * gobjectmodule.c (pyg_value_from_pyobject): handle PyGBoxed types. (pyg_value_as_pyobject): pass out PyGBoxed types if no custom handler is found, rather than straight CObjects. Will need to do something about cases where we want mutable values (ie. don't copy the boxed type). * configure.in: require glib/gtk+ 1.3.6
* 2001-05-06 James Henstridge <james@daa.com.au>James Henstridge2001-05-061-2/+2
| | | | | | | | | | | | | | | | | | | | 2001-05-07 James Henstridge <james@daa.com.au> * examples/gobject/signal.py: 2001-05-06 James Henstridge <james@daa.com.au> * gobjectmodule.c (pygobject__init__): make the __init__ function choose what GType to pass to g_object_new based on the __gtype__ attribute. (pygobject_methods): make __gobject_init__ an alias for GObject.__init__. (pyg_type_register): new function for registering new GTypes. (pyg_type_register): register the type as "module+class" rather than "module.class", as the second form is considered bad (would like to use the second form though. * configure.in: require 1.3.5 versions of glib and gtk+.
* moved rewritten testgtk demo hereJames Henstridge2001-03-301-1/+1
| | | | | | | | | | | | | | | | | | | | 2001-03-30 James Henstridge <james@daa.com.au> * examples/pygtk-demo: moved rewritten testgtk demo here * gobjectmodule.c (pygobject_set_property): initialise the GValue to { 0, }, so set_property actually works. (pygobject_get_property): same here. * gtk/gtk.defs: updated enum/flag defs. * gtk/gdk.defs: updated enum/flag defs. * examples/gobject/signal.py (D.do_my_signal): add small example of overriding class closure for a signal introduced from python code. * codegen/h2def.py: add --onlyenums flag to only output enum defs.
* Still broken. Needs more updatingJames Henstridge2001-03-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | 2001-03-18 James Henstridge <james@daa.com.au> * gtk/pygtktreemodel.c (pygtk_tree_model_class_init): signals are now created in the gtktreemodel.c, so we don't need to. * gtk/gtk.defs (Adjustment): make parent GtkObject, as GtkData is gone. (GtkText): remove from binding. * codegen/codegen.py (write_source): pass in the get_type function when registering classes. (gettypetmpl): remove template. (write_class): remove get_type method generator. Handled by __gtype__ * gobjectmodule.c (initgobject): add argument to g_type_init call. (pyg_value_from_pyobject): use G_VALUE_HOLDS_* rather than G_IS_VALUE_*. (pyg_value_as_pyobject): same here. (pygobject_register_class): add an argument that takes the get_type function for the GObject. This is used to add a __gtype__ attribute to the class (the get_type function is not actually called until __gtype__ is accessed).
* check in initial leaky implementation of the GtkTreeModel for use fromJames Henstridge2000-12-061-2/+2
| | | | | | | | 2000-12-06 James Henstridge <james@daa.com.au> * gtk/pygtktreemodel.[ch]: check in initial leaky implementation of the GtkTreeModel for use from python. Can't test it right now because gtk head is broken.
* init as module gtk._gtk. Using just _gtk doesn't seem to work with pythonJames Henstridge2000-10-301-1/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2000-10-30 James Henstridge <james@daa.com.au> * gtk/gtkmodule.c (init_gtk): init as module gtk._gtk. Using just _gtk doesn't seem to work with python 2.0 2000-10-29 James Henstridge <james@james.daa.com.au> * examples/ide/gtkcons.py: small changes to make example run. * gtk/gtk-types.c: add GtkTextIter.forward_search implementation. * gtk/gtk.override: more override functions. * gtk/gtkobject-support.c: remove some of the unused functions from this file. 2000-10-28 James Henstridge <james@james.daa.com.au> * gtk/gtk.override: override the functions used to initialise GtkTextIter objects so that they return the iterator rather than setting up an static GtkTextIter structure. * gtk/gtk.defs (TextMark): add missing GtkTextMark object. Don't know why h2defs missed it. ("gtk-extrafuncs.defs"): include gtk-extrafuncs.defs. * codegen/argtypes.py: add GdkDevice and GtkTextIter to list of recognised boxed types. * gtk/gtk-types.c: add skeleton implementation of GtkTextIter. * gtk/pygtk.h, gtk/pygtk-private.h: add prototypes for GtkTextIter wrapper. * gtk/gtk.override: ref and sink GtkObjects which have their constructors listed in the overrides file. This should get rid of the last few warnings on exit related to reference counting. * codegen/codegen.py: use the keyword module to check for method and argument names that conflict with the python keywords. By using this module, we shouldn't have problems with new keywords in future versions of python. 2000-10-27 James Henstridge <james@james.daa.com.au> * gobjectmodule.c (pygobject_emit): support for emiting signals on GObjects from python. * codegen/codegen.py (write_constructor): sink GtkObjects. This prevents us losing our reference to the object if it is sunk. * codegen/argtypes.py (ArgMatcher.object_is_a): function to check if one object type is another type. * codegen/codegen.py (register_types): pass the parent type when registering a new GObject type. * gtk/gtk-types.c (_pygtk_register_boxed_types): register marshalers for the various boxed types, so that they work as expected inside the signal handlers. * gobjectmodule.c (pygobject_repr): small change to match style of other repr functions in python. * gtk/gtkmodule.c (init_gtk): only call g_thread_init() if pygtk threading support is enabled. * configure.in (enable_thread): add configure checks so that threading support can be disabled even if python was compiled with it. It defaults to off for now because GSignal has some mutex deadlocks at the moment.
* gtkmodule.c was moved to gtk/. This should get distckeck to work properlyJames Henstridge2000-10-261-1/+1
|
* add support for GdkDevice and convert function names to lowercase.James Henstridge2000-10-241-2/+2
| | | | | | | | | | | | | | | | | | | | 2000-10-24 James Henstridge <james@daa.com.au> * gtk/gtk-types.c: add support for GdkDevice and convert function names to lowercase. * gtk/gtkmodule.c: add GdkDevice stuff to PyGtk_API. * gtk/pygtk.h, gtk/pygtk-private.h: add GdkDevice to list of boxed types. 2000-10-23 James Henstridge <james@daa.com.au> * gobjectmodule.c: don't set the getattr method on objects if it isn't already set. Also, install a getattro handler that will perform the usual method/attribute lookup and then call the getattr method for all base classes to allow specifying of class specific attributes
* updated to gdk-1.3. A lot of stuff in here.James Henstridge2000-07-021-2/+2
| | | | | | | | | | 2000-07-03 James Henstridge <james@daa.com.au> * gtk/gdk.defs: updated to gdk-1.3. A lot of stuff in here. * codegen/h2def.py (verbose): remove the special case for GtkObject. (find_obj_defs): amend regexes so that GObject is considered a valid object name.
* start of gobject wrapper.James Henstridge2000-06-271-7/+12
| | | | | | 2000-06-27 James Henstridge <james@daa.com.au> * gobjectmodule.c (pygobject_dealloc): start of gobject wrapper.
* Small patch to require gtk+-1.3.1 on the head branch to point people atJames Henstridge2000-06-261-1/+1
| | | | the gtk-gnome-1-2 branch.
* added news items.James Henstridge2000-04-071-11/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2000-04-07 James Henstridge <james@daa.com.au> * NEWS: added news items. * pygtk.spec, configure.in: updated version number. * configure.in (enable_numpy): added --disable-numpy argument that disables numeric python support even if numpy is found. * gtkmodule.c (PyGdkWindow_{Pointer,Keyboard}{Grab,Ungrab}): new GdkWindow methods. * gtk.py (rc_reparse_all): fix spelling mistake. (GtkTreeItem.__getattr__): fix bug reported by Aaron Digulla. * generate/gtklists.defs (gtk_clist_get_selectable): fix bug in return type. 2000-04-07 James Henstridge <james@daa.com.au> * configure.in, gnome-python.spec: updated version number. * NEWS: added news items. * pygnome/Makefile.am (_gtkhtmlmodule_la_LIBADD): link with the correct library list. * pygnome/gnome/config.py (section_contents,private_section_contents): fixed incorrect naming of wrapper.
* Update build system to use automake-1.4a. Now you don't need my automakeJames Henstridge2000-04-061-3/+15
| | | | | | patches to build gnome-python. Just make sure that you set the prefix correctly when installing, as the official automake patches install to the specified prefix, rather than trying to guess the value.
* remove python-1.4 ni stuff, and put in a warning message that you shouldPYGTK_0_6_5GNOME_PYTHON_1_0_52James Henstridge2000-03-131-5/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2000-03-13 James Henstridge <james@daa.com.au> * pyglade/__init__.py: remove python-1.4 ni stuff, and put in a warning message that you should think of switching over to libglade. * pygtk.spec: incremented version number. Code gtk+ dependency into spec file. Made auxillary packages depend on the pygtk package of the same version. * configure.in: incremented version number. Incremented minimum required GTK+ so that when threading is compiled in we don't get problems caused by using old buggy versions of GTK+. * gtkmodule.c (PyGdkWindow_PropertyChange): fixed the 32 bit data part of the case statement correctly this time :) 2000-03-13 James Henstridge <james@daa.com.au> * pygnome/gnome/__init__.py: don't bother with the python-1.4 compatibility stuff -- gnome-python won't work with python-1.4 for other reasons. * configure.in: updated version. Require gtk+ >= 1.2.6 for same reasons pygtk requires it. * gnome-python.spec: incremented version numbers. Add requires headers for gtk+ and gnome-libs so people don't annoy me with problems caused by old versions. Also, require the matching version of pygtk. Also, make pygnome-libglade require pygnome. * pygnome/gettext.py (Catalog.__init__): check for msb encoded catalogs as well.
* Get ready for new release.PYGTK_0_6_4GNOME_PYTHON_1_0_51James Henstridge2000-02-161-1/+1
|
* incremented version number.PYGTK_0_6_3GNOME_PYTHON_1_0_50GNOME_PYTHON_1_0_40James Henstridge1999-09-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | 1999-09-30 James Henstridge <james@daa.com.au> * configure.in: incremented version number. * pygnome/gnome/zvt.py: added extra methods. * pygnome/generate/zvt.defs: added new ZvtTerm methods. * pygnome/Makefile.am (EXTRA_DIST): added Vincent's examples to the distribution list. 1999-09-30 James Henstridge <james@daa.com.au> * pygtk.spec: updated spec file. * NEWS: added news items * configure.in: updated version number. * libglademodule.c: don't segfault when a widget name does not exist.
* updated news file.James Henstridge1999-08-081-1/+1
| | | | | | | | | | | | | | | | | | | | | 1999-08-08 James Henstridge <james@daa.com.au> * NEWS: updated news file. * configure.in: increased version number to 0.6.2. * gdkimlibmodule.c (_wrap_gdk_imlib_image_get_array): make sure that the image data is not freed while the returned array is in use, so that we don't get into an inconsistent state. * gtk.py: added gdkrgb functions to this file. * gtkmodule.c: added the gdkrgb functions for drawing rgb and greyscale images. (gdk_draw_array): a new function that will draw a numpy array to a drawable with gdkrgb. It is written so that it can handle slicing on the first two axes -- it does not handle non contiguous data on the third axis.
* a small fix from David Cole.James Henstridge1999-08-011-0/+4
| | | | | | | | | | | | 1999-08-01 James Henstridge <james@daa.com.au> * pyglade/build.py (optionmenu_new): a small fix from David Cole. * configure.in: added tests to see if libglade is installed. * libglademodule.c: the rest of the libglade module * generate/libglade.defs: a .defs file for libglade.
* put in Paul Fisher's enhancements to the threading code. It should nowJames Henstridge1999-07-311-0/+6
| | | | | | | | | | | | | | | | | 1999-07-31 James Henstridge <james@daa.com.au> * gtkmodule.c: put in Paul Fisher's enhancements to the threading code. It should now work better with multiple threads calling GTK+ routines (remember to use threads_enter/threads_leave), and doesn't reintroduce the global interpreter lock problems that Duncan's original code worked around. * configure.in: added a check for the numpy header. * GdkImlib.py: added wrappers for the numpy routines. * gdkimlibmodule.c: added Travis Oliphant's Numeric python stuff to the imlib module.
* added tests for gtkglarea.James Henstridge1999-07-151-2/+5
| | | | | | | | | | | 1999-07-15 James Henstridge <james@daa.com.au> * configure.in, Makefile.am: added tests for gtkglarea. * GtkGL.py: python wrapper for the GtkGLArea widget, and a few extra functions for use with the widget. * generate/gtkgl.defs, gtkglmodule.c: added wrapper for gtkglarea.
* added news about changes in this version.James Henstridge1999-05-191-1/+1
| | | | | | | | | | | | | | | | | | | | | 1999-05-19 James Henstridge <james@daa.com.au> * NEWS: added news about changes in this version. * configure.in, pygtk.spec: updated version number to 0.6.1. 1999-05-19 James Henstridge <james@daa.com.au> * pygnome/gnomeuimodule.c (_wrap_gnome_canvas_new): added a wrapper here that makes sure that the imlib visual/colormap is used for the canvas widget. * NEWS: added some news items. * configure.in, gnome-python.spec, README: updated version number. * pygnome/gnomeuimodule.c (_wrap_gnome_client_request_interaction): fixed a small problem reported by David Kaelbling.
* added a summary of the new features.James Henstridge1999-04-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1999-04-22 James Henstridge <james@daa.com.au> * NEWS: added a summary of the new features. * pygtk.spec: upped version number. * configure.in: upped version number to 0.6.0. I think thread support is a big enough feature to bump it up to 0.6. 1999-04-21 James Henstridge <james@daa.com.au> * gtk.py (create_bitmap_from_data): added new wrapper. * gtkmodule.c: added gdk_bitmap_create_from_data function. Also export PyGtk_BlockThreads and PyGtk_UnblockThreads through the _private dictionary, so they can be used from within other modules (gnome-python in particular). 1999-04-22 James Henstridge <james@daa.com.au> * NEWS: added some news items. * configure.in: upped version number * gnome-python.spec: upped versions, and included capplet and applet modules. * pygnome/gnomeuimodule.c: added calls to make gnomeuimodule act correctly with the thread support in pygtk. * pygnome/gnome/Makefile.am (gnome_PYTHON): conditionally install applet.py and capplet.py. * pygnome/gnome/capplet.py: a wrapper for CappletWidget. 1999-04-21 James Henstridge <james@daa.com.au> * pygnome/gnome/applet.py: a wrapper for AppletWidget. This is what most people will use. * pygnome/Makefile.am, pygnome/generate/Makefile.am: made changes to build _applet and _capplet modules if libraries are available. * configure.in: added some tests to see if applets or capplets libraries are installed. If so, set up a few conditionals for building the python modules for them. * pygnome/cappletmodule.c, pygnome/generate/capplet.defs: base module for creating control center capplets in python. This module should also work properly with the threading fixes for pygtk. * pygnome/appletmodule.c, pygnome/generate/applet.defs: base module for creating panel applets in python. This module should work together with the threading fixes for pygtk. 1999-04-20 James Henstridge <james@daa.com.au> * pygnome/gnome/uiconsts.py: added some more stock item constants. * pygnome/gnomeuimodule.c (_wrap_gnome_canvas_get_item_at): this function could return NULL, which could cause a problem. * pygnome/gnomemodule.c (_wrap_gnome_config_{,private_}get_string): moved implementation here, because these functions can return NULL.
* updated package version number.James Henstridge1999-04-201-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1999-04-20 James Henstridge <james@daa.com.au> * pygtk.spec: updated package version number. * configure.in: added a check for the python thread module. If it is found, then also link _gtkmodule to the gthread library. Incremented minimum GTK version to 1.2.1. Incremented version to 0.5.13. * gtkmodule.c: call g_thread_init if python was built with thread support. This is required to turn thread support on inside gdk/gtk. * gtk.py: added new functions. (GtkList.insert_items): this function wasn't looking at the internal GtkObject for the children to insert, so would fail. * generate/gtkbase.defs (gtk_widget_accelerators_locked): new func. * generate/gtkmenus.defs (gtk_item_factory_add_foreign): new func. (gtk_menu_get_accel_group): new func. (gtk_menu_reorder_child): new func. (gtk_menu_shell_deselect): new func. * gtkmodule.c (_wrap_gtk_combo_set_popdown_strings): accept any sequence for the second argument, rather than just lists. (_wrap_gtk_init): check the return value, and throw an exception when a connection to the X server could not be made, rather than exiting. * gtk.py: got rid of some warnings when pygtk is imported when DISPLAY is not set. Not completely necessary, but it doesn't hurt. (GtkObject.remove_data) fixed small bug pointed out by Duncan Grisby.
* increased version number to 0.5.12.James Henstridge1999-03-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1999-03-12 James Henstridge <james@daa.com.au> * configure.in, pygtk.spec: increased version number to 0.5.12. * gtkmodule.c: added optional support for not catching exceptions in callbacks. This way it should be a lot easier to debug a pygtk program with pdb. * gtkmodule.c, gtk.py: a few fixes for problems sent in by Chi-Deok Hwang. This includes a fix to GtkWidget.event(), assignments to GtkStyle attributes throwing exceptions, font loading getting reference counting correct and throwing exceptions for bad font names and allowing None to be passed as a colour to GnomeCanvasItem.set() (the fix is in pygtk). * generate/gtklists.defs (gtk_ctree_new): I had missed this function in previous releases. 1999-03-12 James Henstridge <james@daa.com.au> * configure.in, gnome-python.spec: incremented version number to 1.0.1 * pygnome/gnome/affine.py: new file that should help people compose affine transformations relatively easily. It allows you to quickly create rotations, scalings, translations and allows you to compose any number of affine transformations or invert them. * pygnome/gnome/ui.py: added GnomeCanvasItem.affine_relative and GnomeCanvasItem.affine_absolute. * pygnome/gnomeuimodule.c: added the PYGTK_FATAL_EXCEPTIONS handling code to this module as well. Added gnome_canvas_item_affine_{relative,absolute}. * */Makefile.am: changes so that you can build gnome-python with build directory != source directory.
* made changes to match those in the defs files and _gtk.James Henstridge1999-02-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | 1999-02-24 James Henstridge <james@daa.com.au> * gtk.py: made changes to match those in the defs files and _gtk. * description.py (GdkGC.set_dashes): describe new GdkGC method. * generate/gtkcontainers.defs: removed gtk_window_set{focus,default}, since these are internal to GtkWindow. Also added gtk_handle_box_set_handle_position and gtk_handle_box_set_snap_edge. * gtkmodule.c: added gtk_widget_get_child_requisition. (PyGdkGC_GetAttr): added method GdkGC.set_dashes to set the dash pattern for this GC. 1999-02-24 James Henstridge <james@daa.com.au> * pygnome/gnome/ui.py: updated the comments in the GnomeCanvasItems since they were out of date. The image and points arguments should work now. * pygnome/Makefile.am: use ZVT_LIBS in the library line for _zvtmodule
* made tip_private argument optional. (GtkObject.__[gs]etattr__,James Henstridge1999-02-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | 1999-02-20 James Henstridge <james@daa.com.au> * gtk.py (GtkTooltips.set_tip): made tip_private argument optional. (GtkObject.__[gs]etattr__, GtkObject.__delattr__): added some more fixes to this code so that it shouldn't throw exceptions as much when it shouldn't. * gtkmodule.c: PyGdkEvent_New wasn't interpreting GDK_BUTTON_RELEASE events correctly. Also some fix ups for gtk_menu_popup. * generate/gtkcontainers.defs (gtk_container_set_focus_child): allow null child argument. 1999-02-20 James Henstridge <james@daa.com.au> * pygnome/gnome/ui.py: made corresponding changes. * pygnome/generate/gnomeui.defs: added some null-ok tags to the defs file (mainly for passing adjustments to constructors). * gnome-python.spec: fixed a bug in the pygtk files list. It wasn't including gtk.py!
* altered these functions to use the gdk_pixmap_colormap_create variants ifJames Henstridge1999-02-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1999-02-04 James Henstridge <james@daa.com.au> * gtk.py (create_pixmap_from_xpm,create_pixmap_from_xpm_d): altered these functions to use the gdk_pixmap_colormap_create variants if the first argument is a GtkWidget or GtkStyle. This means you don't have to realise the widget before creating pixmaps from it. (GtkCheckMenuItem.set_state, GtkToggleButton.set_state): removed these compatibility routines so they don't mask GtkWidget.set_state. * gtkmodule.c: moved gtk_item_factory_get_widget here so I can catch NULL returns and convert them to None returns. Also added the depth attribute to GdkWindow objects. Also added gdk_pixmap_colormap_create_* variants. These can be used if you only have a colormap reference, rather than a window. * GtkExtra.py: there were a couple of calls to GtkContainer.border_width which is deprecated. * examples/testgtk/testgtk.py: fixes to dnd code in this example. I hadn't looked at it since Owen made the dnd changes. * examples/simple/tooltip2.py: fixed small bug pointed out by Markus Oberhumer. * pyglade/build.py (clist_new): fixes to make it parse after clist changes.
* added GtkCList.focus_row.James Henstridge1999-02-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1999-02-02 James Henstridge <james@daa.com.au> * generate/gtklists.defs, gtk.py: added GtkCList.focus_row. * _gdkimlibmodule.c, GdkImlib.py: added push_visual and pop_visual, that can be used to easily set GTK to use the imlib visual/colormap combination. * gtkmodule.c: the PyObject -> GtkArg conversion routines were not catching some exceptions that they generated. This would cause wierd problems if you passed the wrong argument types to signal handlers. This was found by Chi-Deok Hwang <cdhwang@sr.hei.co.kr> * examples/simple/dnd.py, examples/simple/dndpixmaps.py: and example of drag and drop contributed by Chi-Deok Hwang <cdhwang@sr.hei.co.kr> * gtkmodule.c: added gtk_ctree_get_selection, that returns nodes rather than pointers. * gtk.py: made changes to reflect those below. Also added GtkWidget.get_colormap() (it was missing previously). * generate/gtkedit.defs (gtk_spin_button_update): added function. * generate/gtkmenus.defs (gtk_check_menu_item_set_active): function renaming. (gtk_menu_set_title): added function. * generate/gtkmisc.defs (gtk_toggle_button_[sg]et_active): added functions, and removed gtk_toggle_button_set_state.
* updated version numbers here.GNOME_PYTHON_0_90James Henstridge1998-12-211-2/+2
| | | | | | | | | | | | | | | | | | | | | 1998-12-21 James Henstridge <james@daa.com.au> * gnome-python.spec: updated version numbers here. * configure.in: upped required gtk version to 1.1.9, and changed version to 0.90 (to go with the gnome-1.0 prerelease). * gnome/examples/html_demo.py: changed some function calls to match GTK API changes. 1998-12-21 James Henstridge <james@daa.com.au> * pygtk.spec: updated version here as well. * README: updated required GTK version to 1.1.9 * configure.in: Updated version for pygtk to 0.5.9, increased GTK version check to 1.1.9.
* changed calls to GtkLabel.set to GtkLabel.set_text.James Henstridge1998-12-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 1998-12-17 James Henstridge <james@daa.com.au> * examples/*/*.py: changed calls to GtkLabel.set to GtkLabel.set_text. * gtk.py: made changes to reflect those below. * generate/gtkbase.defs (gtk_widget_set_app_paintable): added this stub. * generate/gtkmisc.defs (gtk_label_set_text): renamed gtk_label_set to this, added gtk_label_set_line_wrap. * generate/gtkdnd.defs: Added gtk_drag_source_unset. * generate/gtklists.defs: moved reordering function stubs from ctree to clist. * generate/gtkcontainers.defs: removed GtkDrawWindow. Added gtk_paned_pack[12] * GtkExtra.py (MenuFactory.create): wasn't passing extra arguments onto signal connect. Bug fix from Sam Tannous <stannous@cisco.com> * gtkmodule.c: Applied some fixes to the ctree code from A.Hartgers@phys.tue.nl
* Some small changes for the 0.5.7 release of pygtk.James Henstridge1998-12-091-1/+1
|
* Initial revisionJames Henstridge1998-12-061-0/+16