summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Backport reference count and threadsafe fixes from the 2.8 branch.pygtk-2-6Johan Dahlin2005-10-281-2/+4
| | | | | * gobject/pygobject.c: (pygobject_new_with_interfaces): Backport reference count and threadsafe fixes from the 2.8 branch.
* reviewed by: Johan Dahlin <jdahlin@async.com.br>PYGTK_2_6_3Edward Hervey2005-07-071-19/+59
| | | | | | | | | | | 2005-07-07 Edward Hervey <bilboed@fluendo.com> reviewed by: Johan Dahlin <jdahlin@async.com.br> * gobject/pygtype.c: (pyg_type_lookup), (pyg_register_gtype), (pyg_register_boxed_custom), (pyg_value_from_pyobject), (pyg_value_as_pyobject): Allow additional fundamental types to be registered through pyg_register_boxed_custom. Fixes #309625
* revert accidental commit of g_object_traverse-based patchGustavo J. A. M. Carneiro2005-07-071-39/+1
|
* Bug 165373: crash due to extra Py_XDECREF in gtk.TreeView.map_expanded_rowsGustavo J. A. M. Carneiro2005-05-221-1/+39
|
* Complain if ret is NULL, Fixes #303524.pygtk-2-6-anchorPYGTK_2_6_2Johan Dahlin2005-05-092-2/+6
| | | | | | | | * gobject/pygenum.c (pyg_enum_new): Complain if ret is NULL, Fixes #303524. * gobject/pygflags.c (pyg_flags_new): Change exception format to be consistent with the one in enum
* Add some commentsJohan Dahlin2005-05-091-14/+20
|
* Allow None to be passed in to: set_group for RadioAction.set_group(),Johan Dahlin2005-05-091-15/+76
| | | | | | | | | * gtk/gtk.override: Allow None to be passed in to: set_group for RadioAction.set_group(), RadioToolButton.set_group() and RadioMenuItem.set_group(). * tests/test_radiobutton.py: Refactor and add unittests for RadioAction, RadioToolButton and RadioMenuItem.
* And the testJohan Dahlin2005-05-091-0/+53
|
* Fix for bug #303573 - "exceptions raised in a child watch handler areMark McLoughlin2005-05-092-2/+11
| | | | | | | | | | | | | | | | | | 2005-05-09 Mark McLoughlin <mark@skynet.ie> Fix for bug #303573 - "exceptions raised in a child watch handler are silently swallowed" * gobject/gobjectmodule.c: (child_watch_func), (_pyg_spawn_async_callback): if PyObject_CallFunction() returns NULL, print a traceback of the exception. * tests/test_mainloop.py: add testcase. * tests/Makefile.am: add test_mainloop.py Reviewed by Johan Dahlin <johan@gnome.org>
* Clean up unused importsJohan Dahlin2005-05-091-3/+0
|
* Bug 302622: Assignment to gtk.gdk.Event.window is buggyGustavo J. A. M. Carneiro2005-05-022-0/+26
|
* fix make checkGustavo J. A. M. Carneiro2005-04-121-11/+10
|
* Regression, allow the second argument to be unspecified, fixes #171027Johan Dahlin2005-03-201-0/+24
| | | | | | | | * gtk/gtktreeview.override (_wrap_gtk_list_store_insert): Regression, allow the second argument to be unspecified, fixes #171027 (Ulrik Svensson) * tests/test_liststore.py: Add 2 new tests
* New test.Johan Dahlin2005-03-166-6/+51
| | | | | | * tests/test_radiobutton.py (RadioButtonTest): New test. * tests: Renamed *.py to test_*.py
* In case the enum is not registered, set enum_class or flag_class to NonePYGTK_2_6_1Johan Dahlin2005-03-141-7/+18
| | | | | * gobject/pygparamspec.c (pyg_param_spec_getattr): In case the enum is not registered, set enum_class or flag_class to None
* Use G_CONST_RETURN with a gchar* return value.PYGTK_2_6_0Cedric Gustin2005-02-231-1/+1
| | | | | | | 2005-02-23 Cedric Gustin <cedric.gustin@swing.be> * gobject/pygtype.c (add_property_docs): Use G_CONST_RETURN with a gchar* return value.
* Move the install_template call for pygobject-2.0.pc.in to the right placePYGTK_2_5_4Cedric Gustin2005-02-231-2/+7
| | | | | | | | | | | | | | | | | 2005-02-23 Cedric Gustin <cedric.gustin@swing.be> * setup.py: Move the install_template call for pygobject-2.0.pc.in to the right place in the script. Also define PLATFORM_WIN32 on win32. Fixes bug #150616. * codegen/codegen.py: Do not write the 'pygtk class init' function for objects whose type is explicitly ignored (like GtkPlug and GtkSocket on win32). Otherwise, it generates glib-warnings related to calls to g_object_set_qdata with a NULL 'node'. * gobject/pygtype.c: Do not use g_string_append_printf with a NULL argument, as it crashes on win32. Fixes bug #166546. * gtk/gtk.override: Add GtkSocket__proxy_do_plug_added, GtkSocket__proxy_do_plug_removed and GtkPlug__proxy_do_embedded to the ignore-win32 list.
* don't pass a NULL value to PyThread_set_key_value() - causes an assertionMark McLoughlin2005-02-101-1/+2
| | | | | | | | 2005-02-10 Mark McLoughlin <mark@skynet.ie> * gobject/pygmainloop.c: (pyg_restore_current_main_loop): don't pass a NULL value to PyThread_set_key_value() - causes an assertion failure with python 2.4.
* Fix for bug #154779 - Python signal handlers don't get executed whileMark McLoughlin2005-02-093-2/+175
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2005-02-09 Mark McLoughlin <mark@skynet.ie> Fix for bug #154779 - Python signal handlers don't get executed while you're sitting in the main loop. * gobject/pygmainloop.c: (pyg_save_current_main_loop), (pyg_restore_current_main_loop), (pyg_get_current_main_loop): functions for keeping track of the currently running main loop. A version using TLS and another using a global variable, depending on whether DISABLE_THREADING is defined (pyg_signal_watch_prepare), (pyg_signal_watch_check), (pyg_signal_watch_dispatch), (pyg_signal_watch_new): a GSource which runs the python signal handlers whenever the mainloop is interrupted by signal delivery. (pyg_main_loop_new), (pyg_main_loop_dealloc): add and remove the source. (_wrap_g_main_loop_run): push/pop the currently running main loop. * gobject/pygobject-private.h: add a pointer for the source to PyGMainLoop. * gobject/Makefile.am: add -DPLATFORM_WIN32 to cflags if building on Windows.
* [Bug 154372] New: - Calling an enumeration type causes an assertion failurePYGTK_2_5_3Gustavo J. A. M. Carneiro2005-01-222-12/+24
|
* Bug 164441: leak in gobject.type_register(); patch by Mark McLoughlinGustavo J. A. M. Carneiro2005-01-221-1/+4
|
* interface implementation fixesGustavo J. A. M. Carneiro2005-01-161-1/+1
|
* interface implementation fixesGustavo J. A. M. Carneiro2005-01-161-4/+8
|
* Bug 163612: segmentation fault on pygtk-demoGustavo J. A. M. Carneiro2005-01-102-20/+26
|
* Make the build of atk, pango and gtk conditional. Fixes bug #74144.PYGTK_2_5_2Johan Dahlin2005-01-102-2/+7
| | | | | | | | | | | | * .cvsignore: * Makefile.am: * configure.in: * gtk/Makefile.am: * pygtk-2.0.pc.in: * setup.py: * tests/common.py: * tests/testhelpermodule.c: Make the build of atk, pango and gtk conditional. Fixes bug #74144.
* Make testsuite work and do things the way they were supposed to be doneJohan Dahlin2005-01-104-25/+75
| | | | | | | | * tests/Makefile.am: * tests/common.py: * tests/runtests.py: * tests/test_thread.py: Make testsuite work and do things the way they were supposed to be done from the beginning.
* Bug 160452: pyg_value_from_pyobject() does not handle sequence -> ↵Gustavo J. A. M. Carneiro2005-01-091-0/+70
| | | | GValueArray conversion
* Bug 160595: pyg_value_from_pyobject() sometimes sets a Python exception, ↵Gustavo J. A. M. Carneiro2005-01-091-2/+6
| | | | sometimes not
* gobject.child_add_watch and gobject.spawn_asyncGustavo J. A. M. Carneiro2005-01-093-1/+267
|
* misc API additions, threadingGustavo J. A. M. Carneiro2005-01-093-28/+22
|
* #154974: Interface implementation supportGustavo J. A. M. Carneiro2005-01-092-0/+43
|
* Add test script for bug #162874.Adam Hooper2005-01-091-0/+127
|
* Add pygtk_postinstall.py Updated Deprecate gtk.idle_add and friends. MergeJohan Dahlin2005-01-081-2/+2
| | | | | | | | | * Makefile.am: Add pygtk_postinstall.py * docs/random/missing-symbols: Updated * gtk/__init__.py: Deprecate gtk.idle_add and friends. * gtk/gtk.defs: Merge in 2.6 api, for GtkLabel functions, thanks to Gian Mario Tagliaretti, fixes bug #163296 * tests/test_thread.py: Don't use gtk.idle_add
* [Bug 145314] Overriding GTK+ virtual methodsGustavo J. A. M. Carneiro2005-01-082-1/+43
|
* Reviewed by: Johan Dahlin <johan@gnome.org>PYGTK_2_5_1Johan Dahlin2004-12-231-5/+34
| | | | | | | | | | | | | | | | Fixes #150616 * dsextras.py: Added InstallData class. Changed template options to ${prefix}/include|lib|bin|share. Added get_m4_define function to parse pygtk version strings in configure.in. * setup.py: Added pygtk_postinstall bdist_wininst option. distutils now uses InstallData as install_data class. pygtk-2.0.pc and pygtk-codegen-2.0 are installed as data instead of lib/extensions. This fixes a bdist_wininst installer on win32. * pygtk_postinstall.py: Initial release.
* Change PY_HEXVERSION to PY_VERSION_HEXJohn Ehresman2004-12-101-1/+1
| | | | | | 2004-12-10 John Ehresman <jpe@wingide.com> * gobject/pygobject.h: Change PY_HEXVERSION to PY_VERSION_HEX
* 2.5.0PYGTK_2_5_0Johan Dahlin2004-11-291-1/+1
|
* Unbreak buildJohan Dahlin2004-11-271-1/+3
|
* Make sure type is a type and sinkfunc isn't NULL.Johan Dahlin2004-11-231-1/+4
| | | | | * gobject/pygobject.c (pygobject_register_sinkfunc): Make sure type is a type and sinkfunc isn't NULL.
* Print long int value if enum string not found. Fixes #158417. (modifedJohn Finlay2004-11-161-2/+6
| | | | | * gobject/pygflags.c (pyg_flags_repr): Print long int value if enum string not found. Fixes #158417. (modifed patch from Tim Evans)
* Add signal introspection functionsJohn Finlay2004-11-121-3/+190
| | | | | | * gobject/gobjectmodule.c (pyg_signal_list_ids) (pyg_signal_lookup, pyg_signal_name, pyg_signal_query): Add signal introspection functions
* gobject/gobjectmodule.c (_pyg_strv_from_gvalue) Avoid segfault when argvJohn Finlay2004-11-081-2/+5
| | | | | * gobject/gobjectmodule.c (_pyg_strv_from_gvalue) Avoid segfault when argv is NULL.
* updated - pygtk is working fine with msvc (but requiresHans Breuer2004-11-061-7/+17
| | | | | | | | 2004-11-06 Hans Breuer <hans@breuer.org> * config.h.win32 makefile.msc gobject/makefile.msc gtk/makefile.msc : updated - pygtk is working fine with msvc (but requires -DDISABLE_THREADING), Thanks!
* Use PyTuple_GetSlice and PyArg_ParseTuple here, so we can get the samepygtk-2-4-anchorPYGTK_2_4_1Johan Dahlin2004-11-042-1/+17
| | | | | | | | * gtk/gtk.override (_wrap_gtk_dialog_add_buttons): Use PyTuple_GetSlice and PyArg_ParseTuple here, so we can get the same behavior as in add_button. Reported by Maciej Katafiasz, fixes #156707 * tests/test_dialog.py: Add test for it
* Add tests for dynamic/unknown objects and interfacesJohan Dahlin2004-11-048-115/+247
|
* Bug 155304: pygobject.h cannot be included in C++ programsGustavo J. A. M. Carneiro2004-10-131-2/+6
|
* Allow gtk_main to be invoked from a thread created by the threading modulePYGTK_2_4_0John Ehresman2004-09-291-1/+3
| | | | | | * gobject/gobjectmodule.c (pyg_enable_threads): Allow gtk_main to be invoked from a thread created by the threading module by requiring the GIL be held when pyg_enable_threads is invoked.
* Apply slighly modified fix from bug 149845PYGTK_2_3_97Johan Dahlin2004-09-285-51/+43
| | | | | | This is make threading usable for both users of the threading module and users that requires interaction with threads from other extension modules.
* Forgot to commit this yesterdayJohan Dahlin2004-09-281-0/+24
|
* Add thread stuff, that emits stuff from another thread and does some enumJohan Dahlin2004-09-272-6/+135
| | | | | | * tests/testhelpermodule.c: * tests/test_thread.py: Add thread stuff, that emits stuff from another thread and does some enum magic.