aboutsummaryrefslogtreecommitdiffstats
path: root/libpyside
Commit message (Collapse)AuthorAgeFilesLines
* Fix cmake files used by other projects to detect PySide.Hugo Parente Lima2010-06-252-2/+2
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed typo in typesystem install path.Renato Filho2010-06-231-1/+1
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@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>
* Included qsinal.h in installed files.Renato Filho2010-06-211-0/+1
|
* Fix libpyside install.Catalin Iacob2010-06-211-1/+4
| | | | | | | | On Windows, if LIBRARY DESTINATION is given, ARCHIVE DESTINATION must also be given otherwise CMake fails with 'install Library TARGETS given no DESTINATION!' Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* PySide now installs its type system files.Marcelo Lira2010-06-212-0/+3
| | | | | | | | | | | | | | The pyside.pc file now has a "typesystemdir" variable pointing to the directory where the type system files are installed. Example usage: pkg-config pyside --variable=typesystemdir Also set the "PYSIDE_TYPESYSTEMS" CMake variable on libpyside/PySideConfig.cmake.in to point to the same path of pkg-config's "typesystemdir". Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed signal connection with native slot.Renato Filho2010-06-172-14/+29
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Create unit-test for signal with QObject.Renato Filho2010-06-172-5/+16
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Removed QVariant from PySide.Hugo Parente Lima2010-06-103-18/+24
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Remove registration of PySide primitive types, the generator do this ↵Hugo Parente Lima2010-06-101-17/+0
| | | | | | | automatically. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.araujo@openbossa.org>
* Add checkType method to PySide custom converters.Hugo Parente Lima2010-06-101-0/+16
|
* Created support to hash objects with type QDate, QTime, QDateTime, QUrl.Renato Filho2010-06-081-0/+9
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Revert "Fixed signal/slot class name based on PSEP 100."Hugo Parente Lima2010-05-312-2/+2
| | | | | | | | This reverts commit 361ac438c2b9e3c6c10c9ab2207a6464557b8a85. Conflicts: libpyside/qsignal.cpp
* Fixed bug on dynamic metaobject creation.Renato Filho2010-05-262-10/+29
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>, Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed signal/slot class name based on PSEP 100.Renato Filho2010-05-202-5/+3
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug#207, Add initQtMetaType class to libpyside.Hugo Parente Lima2010-05-201-0/+22
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* MacOs compiler fix.Renato Oliveira2010-05-191-1/+1
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Append licence header.Renato Filho2010-05-193-1/+103
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fix signal initializer.Luciano Wolf2010-05-171-0/+2
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fix signal initializer.Luciano Wolf2010-05-171-2/+2
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Implemented signal to signal connection.Renato Filho2010-05-171-12/+20
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Implemented support to connection type.Renato Filho2010-05-171-3/+6
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Used shared pointer on MethodData to allow copy.Renato Filho2010-05-172-14/+33
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Register Signal objects on MetaObject.Renato Filho2010-05-175-20/+32
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Removed init[slot,signal] from public api.Renato Filho2010-05-173-20/+13
| | | | | | | Use PyObject_dir to discovery signals methods. (this is very slow) Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed memory leak on signal allocator.Renato Filho2010-05-171-0/+4
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed memory leaks.Renato Filho2010-05-175-138/+149
| | | | | | | Used PyObject on attr functions. Code style update. Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* removed TPFLAGS_BASETYPE from signal/slot classes to avoid derivationRenato Filho2010-05-172-3/+3
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Updated signal/slot class names to follow the same style.Renato Filho2010-05-173-81/+81
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed signal signature parse.Renato Filho2010-05-172-8/+28
| | | | | | Implemented signal allocator function to be used on generator. Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Implemente sequence operator on signal class.Renato Filho2010-05-172-66/+110
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Implemented signal name discovery if not setted on constructor.Renato Filho2010-05-172-22/+31
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Implemented support to modify slot return type.Renato Filho2010-05-178-35/+821
| | | | | | | | Included method type in DynamicQMetaObject metadata. Moved Signal/Slot objet to libpyside. Create unittest to signal class. Implemented disconnection function. Fixed emit method on signal object
* Implemented support to slot decoration.Renato Filho2010-05-172-0/+30
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Created test to static metaobject.Renato Filho2010-05-101-0/+5
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fix libshiboken SONAME.Hugo Parente Lima2010-05-041-1/+1
|
* Python2.6 doesn't include a .pc file.Luciano Wolf2010-05-031-1/+0
| | | | | "Requires: Python" will break any use of pkg-config when trying to detect information related to pyside or shiboken modules.
* Install pysideconversions.h to the proper place.Luciano Wolf2010-05-031-0/+1
|
* Add QMultiMap support for Qt.Hugo Parente Lima2010-04-301-1/+71
|
* Fixed convertes memory leak.Renato Filho2010-04-291-4/+5
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed QApplication exit order.Renato Filho2010-04-223-3/+14
| | | | | | | | SignalManager need be destroyed before QApplication to avoid memory leak. Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed bug with refcount on PyObject args during signal/slot emission.Renato Filho2010-04-161-2/+3
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Fix bug#197, among some reference leaks.Hugo Parente Lima2010-04-121-9/+19
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed signal emission with pythonic signalture.Renato Filho2010-04-121-0/+50
| | | | | | | Created unittest. Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Use heap allocation for array with unknown size.Thomas Berg2010-04-101-1/+2
| | | | | With msvc, arrays can only allocated on the stack if the size is known at compile time.
* Fix bug#210, "Can't connect generic callable objects as a slot".Hugo Parente Lima2010-04-081-0/+2
| | | | | Reviewer: Bruno Araújo <bruno.araujo@openbossa.org> Reviewer: Lauro Moura <lauro.neto@openbossa.org>
* Better warning message when the signal emission fail.Hugo Parente Lima2010-04-061-1/+1
|
* Adapt to changes in libshibokenHugo Lima2010-03-311-2/+2
| | | | | Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org> Reviewer: Bruno Araújo <bruno.araujo@openbossa.org>
* Bump version to 0.3.0.Hugo Lima2010-03-231-2/+4
| | | | | Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org> Reviewer: Bruno Araújo <bruno.araujo@openbossa.org>
* Add PySideConfig.cmake and PySideVersion.cmake files.Hugo Lima2010-03-233-0/+19
|