aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed invalid call function.renatofilho2010-11-031-1/+0
|
* Fixed slot registration during the meta object constructor.renatofilho2010-11-031-1/+1
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Fixed metacall function adn PyGil state handle.renatofilho2010-11-031-4/+15
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Renamed qsignal, qslot, qproperty files to pyside*.renatofilho2010-11-0314-166/+197
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Created Singal/Slot/Property namespace for pure C structures.renatofilho2010-11-0316-227/+278
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Created unit test for bug 428.renatofilho2010-10-292-0/+19
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Exported function to instantiate a signal object.renatofilho2010-10-293-21/+38
| | | | | | | Fixes bug #428 Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Added test for bug #428.Marcelo Lira2010-10-291-0/+13
| | | | | Reviewed by Lauro Moura <lauro.neto@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Update package requirements.Hugo Parente Lima2010-10-291-2/+2
|
* Stop signal/slot connection if is impossible to register that on object.renatofilho2010-10-286-10/+66
| | | | | | | | Created unit test for bug #442, #437. Fixes bug #442. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug#409 - "function -- PySide.QtUiTools.QUiLoader.load(...) -- takes ↵Hugo Parente Lima2010-10-282-1/+14
| | | | | | | bytes-string (but not unicode-string)" Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Remove whitespaces.Hugo Parente Lima2010-10-281-2/+2
|
* Fix bug#438 - "Can't find Python.h on OS X"Hugo Parente Lima2010-10-281-2/+2
|
* Fix bug#438 - "Can't find Python.h on OS X"Hugo Parente Lima2010-10-2818-18/+18
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Fix typesystem to use argument tags instead of hardcoded variable names.Hugo Parente Lima2010-10-281-2/+2
|
* Fix crashes caused by the newer changes on shiboken generator.Hugo Parente Lima2010-10-283-7/+7
|
* Fix unit test for bug 430Hugo Parente Lima2010-10-281-1/+1
|
* Implemented Signal constructor base on QMethod list.renatofilho2010-10-282-0/+28
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Updated SignalManager to new TypeResolver api.renatofilho2010-10-281-13/+10
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Updated QtXml and QtXmlPatterns typesystem.renatofilho2010-10-282-3/+13
| | | | | | | Move some value-types to object-type because these classes use QScopedPointer without assigner operator. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Uses python include path provided by Shiboken.Hugo Parente Lima2010-10-261-2/+1
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Removed AVOID_PROTECTED_HACK section from CMakeLists.txt.Marcelo Lira2010-10-261-7/+1
| | | | | | | It was moved to the Shiboken cmake configuration file. Reviewed by Lauro Moura <lauro.neto@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Updated PySide cmake files to use Python library information from Shiboken.Marcelo Lira2010-10-2620-29/+19
| | | | | | | | | Shiboken cmake files provides information about which Python library to link against through cmake SHIBOKEN_PYTHON_LIBRARIES variable. It also sets the Py_DEBUG flag if necessary. Reviewed by Lauro Moura <lauro.neto@openbossa.org> Reviewed by Renato Araujo <renato.filho@openbossa.org>
* Modified cmake files to make use of debug information provided by Shiboken.Marcelo Lira2010-10-264-44/+5
| | | | | In summation, PySide is compiled for debug if the libshiboken is compiled for debug.
* Remove releaseWrapper as Signal tp_deallocLauro Neto2010-10-263-1/+18
| | | | | | | | It was being called when the Signal was garbage collected, resulting in a segfault. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Reviewer: Renato Filho <renato.filho@openbossa.org>
* Moved QML enum from QtCore to QtDeclarative typesystem.renatofilho2010-10-262-6/+10
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed plugin compilation problems on MacOS.renatofilho2010-10-261-1/+1
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bugs 430, 426, 429, 394, 433.Hugo Parente Lima2010-10-2211-39/+112
| | | | | | | | These bugs are about QApplication instance being destroyed before some QObject. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Put signals register before property registration.renatofilho2010-10-221-4/+12
| | | | | Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
* Fixes to libpyside pkg-config and cmake files.Marcelo Lira2010-10-222-2/+6
| | | | | Reviewed by Luciano Wolf <luciano.wolf@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Fixed type translate on QProperty.renatofilho2010-10-221-25/+2
| | | | | | | Fix bug #431 Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug#420 - "Memory leak in setText"Hugo Parente Lima2010-10-211-1/+1
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Implemented support to notify argument on Properties.renatofilho2010-10-2110-107/+241
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Create private data structure to QProperty type.renatofilho2010-10-213-37/+45
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Replace code injection by typesystem commands.Hugo Parente Lima2010-10-201-3/+3
| | | | | | | Related to bug#418 - "tag parent does not work in constructor modify" Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Fix inject conversion rule used to fix bug408.Hugo Parente Lima2010-10-191-1/+1
| | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
* Added d-pointer to PySideSignalInstanceData struct.Hugo Parente Lima2010-10-195-64/+86
|
* Added test for bug #395 - error calling QPainter.drawLines overloads.Marcelo Lira2010-10-191-6/+14
| | | | | Reviewed by Luciano Wolf <luciano.wolf@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Merge remote branch 'mainline/1.0'Hugo Parente Lima2010-10-1926-732/+2616
|\ | | | | | | | | Conflicts: CMakeLists.txt
| * QNetworkReply.errorCode method is now properly called QNetworkReply.errorMarcelo Lira2010-10-131-3/+0
| | | | | | | | | | Reviewed by Luciano Wolf <luciano.wolf@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
| * Adjusted QTimer.singleShot custom code since all Signals are callable now.Marcelo Lira2010-10-131-36/+22
| | | | | | | | | | Reviewed by Luciano Wolf <luciano.wolf@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
| * Signal objects redirect calls for homonymous methods.Marcelo Lira2010-10-114-99/+162
| |
| * Added a PySide derived test library.Marcelo Lira2010-10-119-5/+1694
| | | | | | | | | | | | | | | | | | | | | | The test library is intended to provide specific test cases in a way that problems could be isolated easier than using the ones provided by the Qt library. Cases commons to all Python bindings must go into the Shiboken test libraries, the one added here is intended to test Qt specifics (e.g. signals). A Python unit test was added for the case when a method and a signal have the same name.
| * Version bump.Hugo Parente Lima2010-10-071-3/+3
| |
| * Turn call_method function into an anonimous function.Hugo Parente Lima2010-10-072-4/+4
| | | | | | | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
| * Rename some slot internal functions and structures and remove C linkage from ↵Hugo Parente Lima2010-10-073-27/+61
| | | | | | | | init_slot function.
| * Don't export symbols that don't need to be exported and rename many functions.Hugo Parente Lima2010-10-077-258/+293
| |
| * Don't inline function deleteDynamicQMetaObject.Hugo Parente Lima2010-10-072-4/+6
| | | | | | | | It's used by address, so inline it is useless.
| * Move structs tagged as "export C" outside C++ namespaces.Hugo Parente Lima2010-10-074-64/+64
| | | | | | | | Also don't export structs that don't need to be exported.
| * Don't export functions not used outsise libpyside and move them to an ↵Hugo Parente Lima2010-10-076-121/+161
| | | | | | | | private header.