aboutsummaryrefslogtreecommitdiffstats
path: root/libpyside/pyside.h
Commit message (Collapse)AuthorAgeFilesLines
* Replaced Nokia copyrights and contact detailsTeemu Kaukoranta2013-05-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replaced Nokia copyrights with correct Digia copyrights. Text in front of copyright is now retained: ** File is part of Foo, Copyright Nokia... -> ** File is part of Foo, Copyright Digia... Replaced Nokia contact details with Digia's. Removing "All Rights Reserved" no longer leaves an empty line. Used the following command: find . -path '*/3rdparty/*' -prune -o -exec grep -ilI -E '.*Copyright.*Nokia.*|.*Contact.*' {} \; | tee >(xargs sed -i -r '1,50 { /INdT|copy[a-z]*[ ]*=/ !{ s/(^[ \t:#*]*)([a-z ]*) (Copyright.*Nokia.*)/ \1\2Copyright \(C\) 2013 Digia Plc and\/or its subsidiary\(-ies\)\./I }}') >(xargs sed -i -r '1,50 s/(^[ \t:#*]*)(.*info@qt\.nokia\.com.* |.*INSERT EMAIL ADDRESS.*|.*qt-info@nokia\.com.* |.*qt-label1@nokia\.com.*|.*http:\/\/qt\.nokia\.com\/contact.* |.*qt-sales@nokia\.com.*|.*http:\/\/www\.qt-project\.org\/.*)/ \1Contact: http:\/\/www\.qt-project\.org\/legal/I') >(xargs sed -i -r '1,50{/(^[ \t:#*]*)(all rights reserved.*)/Id}') Command now finds command details that point to qt-project.org and changes them to qt-project.org/legal Also no longer wrongly replaces code snippet "copyright = ..". Need to fix these case-by-case later. Change-Id: I4456c00202c4a2264a400bdc18c19cd097876861 Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com>
* Use QObject property to invalidate wrapper before deletion.John Ehresman2012-12-211-0/+2
| | | | | | | | | | | | Define a getWrapperForQObject function to create / find wrappers for QObject derived objects. It sets a property so that an invalidate function can be called when the QObject property is cleared in the QObject destructor after all destroyed signal handlers have been called. Requires a change to shiboken to generate calls to the getWrapperForQObject function. Change-Id: I4ed548af114bf7176e8e8255a3ea70549c35d74c Reviewed-by: Hugo Parente Lima <hugo.lima@openbossa.org>
* Use sbkpython.h instead of Python.h to avoid problems with Python2.5.Hugo Parente Lima2012-03-081-1/+1
| | | | | Reviewer: Lauro Moura <lauro.neto@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Deprecated functions marked as deprecated.Hugo Parente Lima2012-03-081-2/+1
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug 926 - "qmlRegisterType does not work with QObject"Hugo Parente Lima2012-03-081-0/+8
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Removed glue code for QObject.inherits function.Renato Filho2012-03-081-0/+8
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Created function used in PyObject getAttro.Renato Araujo Oliveira Filho2012-03-081-0/+9
| | | | | | | | Moved the code generated to a function in libpyside. Create unit test for bug #525. Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Marcelo Lira <marcelo.lira@openbossa.org>
* Set the object meta object at the declaration time, not instanciation time.Hugo Parente Lima2012-03-081-0/+4
|
* Fix bugs 430, 426, 429, 394, 433.Hugo Parente Lima2010-10-221-0/+5
| | | | | | | | 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>
* Created PySide cleanup functions used to register functions to be called ↵renatofilho2010-09-171-0/+9
| | | | | | | before the python die. Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug#347 - "Setting properties in constructors gives incorrect results"Hugo Parente Lima2010-09-151-0/+13
| | | | | | | Added new function to libpyside: "fillQtProperties". Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* 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 ↵Hugo Parente Lima2010-09-091-21/+9
| | | | exception.
* 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>
* 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>
* Register Signal objects on MetaObject.Renato Filho2010-05-171-1/+1
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Implemented support to modify slot return type.Renato Filho2010-05-171-0/+50
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