aboutsummaryrefslogtreecommitdiffstats
path: root/libpyside/qsignal.cpp
Commit message (Expand)AuthorAgeFilesLines
* Renamed qsignal, qslot, qproperty files to pyside*.renatofilho2010-11-031-705/+0
* Created Singal/Slot/Property namespace for pure C structures.renatofilho2010-11-031-86/+86
* Exported function to instantiate a signal object.renatofilho2010-10-291-20/+22
* Stop signal/slot connection if is impossible to register that on object.renatofilho2010-10-281-6/+7
* Implemented Signal constructor base on QMethod list.renatofilho2010-10-281-0/+27
* Remove releaseWrapper as Signal tp_deallocLauro Neto2010-10-261-1/+1
* Implemented support to notify argument on Properties.renatofilho2010-10-211-5/+49
* Added d-pointer to PySideSignalInstanceData struct.Hugo Parente Lima2010-10-191-45/+60
* Signal objects redirect calls for homonymous methods.Marcelo Lira2010-10-111-93/+149
* Don't export symbols that don't need to be exported and rename many functions.Hugo Parente Lima2010-10-071-224/+225
* Use PyObject as default type on signal/slot signature.renatofilho2010-09-291-1/+1
* Fixed segmentation fault libpyside's signalUpdateSource function.Marcelo Lira2010-09-241-1/+1
* Fixed the Python names for Signal and Slot objects.Marcelo Lira2010-09-171-2/+2
* Fixed crash on qsignal destructor.renatofilho2010-09-141-3/+3
* Fix project name on license boilerplates.Hugo Parente Lima2010-09-091-1/+1
* Change the license boiler plates of all LGPL files removing the special excep...Hugo Parente Lima2010-09-091-21/+9
* Remove unneeded casts that can hide errors.Hugo Parente Lima2010-09-081-9/+9
* Fixed args type parse for bool types on signal.Renato Filho2010-08-301-0/+2
* Fixed slot singature parse function to keep compatibility with QSignal.Renato Filho2010-08-261-5/+6
* Fixed signal signature parser.Renato Filho2010-08-261-8/+13
* Fixed gui typesystem to avoid warnings.Renato Filho2010-08-161-7/+2
* Implemented help function to connect signal with python callback.Renato Filho2010-08-161-1/+17
* Raise a python error when signal not found on object.Renato Filho2010-08-021-0/+3
* Implemented support to properties on QMetaObject.Renato Filho2010-07-081-2/+3
* Use original name in type discovery during signal/slot.Renato Filho2010-07-081-7/+13
* Fix reference leak in PySide::signalUpdateSource.Hugo Parente Lima2010-06-291-6/+5
* Create unit-test for signal with QObject.Renato Filho2010-06-171-2/+6
* Revert "Fixed signal/slot class name based on PSEP 100."Hugo Parente Lima2010-05-311-1/+1
* Fixed bug on dynamic metaobject creation.Renato Filho2010-05-261-8/+22
* Fixed signal/slot class name based on PSEP 100.Renato Filho2010-05-201-4/+2
* Append licence header.Renato Filho2010-05-191-0/+34
* Fix signal initializer.Luciano Wolf2010-05-171-0/+2
* Fix signal initializer.Luciano Wolf2010-05-171-2/+2
* Implemented signal to signal connection.Renato Filho2010-05-171-12/+20
* Implemented support to connection type.Renato Filho2010-05-171-3/+6
* Register Signal objects on MetaObject.Renato Filho2010-05-171-2/+3
* Removed init[slot,signal] from public api.Renato Filho2010-05-171-17/+10
* Fixed memory leak on signal allocator.Renato Filho2010-05-171-0/+4
* Fixed memory leaks.Renato Filho2010-05-171-70/+69
* removed TPFLAGS_BASETYPE from signal/slot classes to avoid derivationRenato Filho2010-05-171-2/+2
* Updated signal/slot class names to follow the same style.Renato Filho2010-05-171-58/+66
* Fixed signal signature parse.Renato Filho2010-05-171-8/+27
* Implemente sequence operator on signal class.Renato Filho2010-05-171-65/+101
* Implemented signal name discovery if not setted on constructor.Renato Filho2010-05-171-22/+29
* Implemented support to modify slot return type.Renato Filho2010-05-171-0/+413