aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtDeclarative
Commit message (Collapse)AuthorAgeFilesLines
* Fix bug 1029 - "qmlRegisterType Fails to Increase the Ref Count"Hugo Parente Lima2012-03-081-0/+3
|
* Updated QtDeclarative modue to works with python 2.x and 3.xRenato Filho2012-03-081-3/+2
|
* Fixes argument and return type of a couple of QtDeclarative methods.Marcelo Lira2012-03-081-1/+25
| | | | | | | | | | The methods are: * QDeclarativeEngine::importPlugin(QString,QString,QString*) * QDeclarativeExpression::evaluate(bool*) Reviewed by Luciano Wolf <luciano.wolf@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Updated QtDeclarative's type system.Marcelo Lira2012-03-081-1/+2
|
* Updated qmlRegisterType to register.Renato Filho2012-03-081-9/+23
| | | | | | | | | qmlRegisterType uses QDeclarativeItem in template args, when the class is derived from QDeclarativeItem, otherwise uses QObject. Fixes bug #951. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug 926 - "qmlRegisterType does not work with QObject"Hugo Parente Lima2012-03-082-25/+15
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Removed polymorphic-id-expression from QDeclarativeItem.Renato Filho2012-03-081-1/+1
| | | | | | | Fixes bug #925. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Fix path of pysideqmlregistertype.cpp.Hugo Parente Lima2012-03-081-4/+1
|
* Fix bug 825 - "Can't register a class using that uses metaclasses in QML ↵Hugo Parente Lima2012-03-081-5/+0
| | | | | | | using qmlRegisterType" Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Avoid delete file from source dir.Renato Filho2012-03-081-1/+4
|
* Fixed CMakeLists.txt files to prevent static source files of being deleted ↵Marcelo Lira2012-03-081-2/+2
| | | | by "make clean".
* Type systems of all modules but QtCore and QtGui reviewed.Hugo Parente Lima2012-03-081-0/+1
|
* Added modify-documentation do QDeclarativePropertyMap to remove references ↵Hugo Parente Lima2012-03-081-1/+14
| | | | to QVariant and QString.
* Updated CMake files to use the "--drop-type-entries" generator option.Marcelo Lira2012-03-081-4/+5
| | | | | | | | | | Instead of maintaining a complex CMake scheme to remove optional type system entries, the generation will rely on the new generator capability of dropping entries given via command line. Reviewed by Bruno Araújo <bruno.araujo@openbossa.org> Reviewed by Lauro Moura <lauro.neto@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Add polymorphic-id-expression to QGraphicsObject and QDeclarativeItem.Hugo Parente Lima2012-03-081-1/+1
|
* Fix bug#557 - "Segmentation fault in QDeclarativeComponent.loadUrl()"Hugo Parente Lima2012-03-081-0/+1
| | | | | | | | | The signature QDeclarativeComponent(QObject*) should not exist, it's not documented and just creates a useless QDeclarativeComponent when used, useless in the sense that it will segfault when used. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Lock the gil on some hand written code to avoid crashes.Hugo Parente Lima2012-03-081-0/+6
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Changes the arg name from p to parent to make parent heuristic work.Hugo Parente Lima2012-03-081-0/+5
|
* Fix bug#508 - "qmltopy1 crashes when setContextProperty is called twice ↵Hugo Parente Lima2012-03-081-3/+5
| | | | | | | without keeping a reference" Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Add support for QML list properties.Hugo Parente Lima2012-03-083-11/+228
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Replace useless check by a assert.Hugo Parente Lima2012-03-081-4/+1
| | | | QMetaObject must already be ready at this point.
* Fix copyright year.Hugo Parente Lima2012-03-082-2/+2
|
* Avoid removal of qmlregistertype.cpp by the build system.Hugo Parente Lima2012-03-081-3/+3
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Initial implementation of qmlRegisterType.Hugo Parente Lima2012-03-084-0/+223
| | | | | | | It's fully functional, but need some adjustaments in the build system that will be done in the next few days. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Added reference to object which was exported to QML context.Renato Araujo Oliveira Filho2010-11-221-1/+8
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed use of QtDeclarative include header to work with MacOS.Renato Araujo Oliveira Filho2010-11-191-1/+1
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Fixed QVariant conversion to C++renatofilho2010-11-091-0/+4
| | | | | | | | Now before convert from python object to C++, PySide check for a existent of metaType for any derived class. Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug#438 - "Can't find Python.h on OS X"Hugo Parente Lima2010-10-281-1/+1
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Updated PySide cmake files to use Python library information from Shiboken.Marcelo Lira2010-10-261-1/+1
| | | | | | | | | 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>
* Moved QML enum from QtCore to QtDeclarative typesystem.renatofilho2010-10-261-0/+5
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Modified the type system files to make use of nested type declarations.Marcelo Lira2010-09-231-13/+18
| | | | | Reviewed by Luciano Wolf <luciano.wolf@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Added license boilerplates to all typesystem files.Hugo Parente Lima2010-09-091-0/+19
|
* Use the correct path separator when under Windows.Hugo Parente Lima2010-08-311-1/+1
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Fix typesystem based on auto OS detection.Renato Filho2010-08-271-2/+3
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Anderson Lizardo <anderson.lizardo@openbossa.org>
* Simplify handling of typesystems for multiple OSesAnderson Lizardo2010-08-261-2/+1
| | | | | | | | | | * Factor out install() commands into PySide/CMakeLists.txt * Drop typesystem_<module>_common.xml and typesystem_<module>.xml.in, and make typesystem_<module>_<os>.xml (if exists) include typesystem_<module>.xml (which holds common data) Reviewed-by: Luciano Wolf <luciano.wolf@openbossa.org> Reviewed-by: Hugo Parente Lima <hugo.lima@openbossa.org>
* Updated Declarative typesystem.Renato Filho2010-08-252-1/+11
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* created macro to compile pyside modules.Renato Filho2010-08-191-36/+33
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Use correct python lib in debug mode.Renato Filho2010-07-231-1/+1
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* PySide now installs its type system files.Marcelo Lira2010-06-211-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>
* Adding test cases to cover QtDeclarative + fix inside typesystem.Luciano Wolf2010-05-281-1/+7
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Initial bindings for QtDeclarative module.Hugo Parente Lima2010-05-242-0/+92
Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>