aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtCore/glue/qobject_connect.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix bug 1019 - "Overriding QWidget.show or QWidget.hide do not work"Hugo Parente Lima2012-03-081-10/+20
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Implemented GlobalReceiverV2.Renato Filho2012-03-081-15/+29
| | | | | | | | | | A new implementation of GlobalRecever that optmize the signal connection. Fixes bug #928. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Implemented DynamicMetaObject optiomizations.Renato Filho2012-03-081-10/+10
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Fixes the fix in the commit a1cf8f03.Marcelo Lira2012-03-081-1/+2
| | | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Fixes connecting signal to decorated slot.Marcelo Lira2012-03-081-1/+12
| | | | | | | | | | | | Decorated methods on classes derived from QObject are not called when connected to Qt signals because they get a name different from the decorated method. To solve this decorated methods are registered as global slots. An unit test was added. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Adapt to API changes in libshiboken.Hugo Parente Lima2010-11-231-3/+3
|
* Changes needed to compile QtCore with libshiboken v1.0Hugo Parente Lima2010-11-101-2/+2
|
* Renamed qsignal, qslot, qproperty files to pyside*.renatofilho2010-11-031-6/+6
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Stop signal/slot connection if is impossible to register that on object.renatofilho2010-10-281-3/+7
| | | | | | | | Created unit test for bug #442, #437. Fixes bug #442. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed connection cleanup function.renatofilho2010-09-161-2/+9
| | | | | Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug#316 - "QAbstractItemModel.createIndex is broken"Hugo Parente Lima2010-09-011-2/+2
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Emit connectNotify with real signal name.Renato Filho2010-07-291-2/+2
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Check for invalid signal or slot name.Renato Filho2010-06-231-1/+4
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed signal connection with native slot.Renato Filho2010-06-171-2/+2
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed custom code related to connectNotify behaviour.Marcelo Lira2010-06-031-3/+3
| | | | | | | | | | The code injection that deals with calling connectNotify in the binding generated with the protected hack turned off should call the connectNotify method directly instead of using the protected caller. Reviewed by Renato Araújo <renato.filho@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Use '&&' instead of 'and'.Thomas Berg2010-04-121-3/+3
| | | | | | | The 'and' keyword is not supported by msvc. Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org> Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug#210, "Can't connect generic callable objects as a slot".Hugo Parente Lima2010-04-081-3/+2
| | | | | Reviewer: Bruno Araújo <bruno.araujo@openbossa.org> Reviewer: Lauro Moura <lauro.neto@openbossa.org>
* Fix compilation of QtCore when using -DAVOID_PROTECTED_HACK.Hugo Lima2010-03-041-1/+1
|
* Custom code should use Converters instead of the "_cptr" macros.Marcelo Lira2010-02-241-2/+2
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Fixed memory leak on callbacks used on signal connection.Renato Filho2010-02-231-29/+35
| | | | | Now using the 'destroyed()' signal the reference is cleaned after source object destroyed.
* Fixed the number of dynamic signal to 50, to avoid index error onRenato Filho2010-02-181-2/+1
| | | | | | QMetaObject functions. Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Backporting Qt4.6 support from PySide (Boost) to Shiboken, plus:Luciano Wolf2010-02-051-22/+3
| | | | | Implemented inject code for QState.addTransition - by Renato Araujo. QState test - by Renato Araujo.
* Fixed some warning messages during QtCore compilation.renato2010-01-281-2/+6
| | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
* Call connectNotify methods when connecting signals.Hugo Lima2010-01-141-18/+21
|
* Implement disconnect function for Python callback.renato2010-01-041-1/+43
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Fixes problems calling dynamic python slots.Hugo Lima2010-01-041-1/+5
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Initial implementation of the new architeture for signal/slots.Hugo Lima2009-12-301-0/+80
Reviewed by Renato Araújo <renato.filho@openbossa.org>