aboutsummaryrefslogtreecommitdiffstats
path: root/PySide
Commit message (Collapse)AuthorAgeFilesLines
* Used default constructor for primitive types with complex name.Renato Filho2010-06-251-10/+10
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.lima@openbossa.org>
* use original name on activated function.Renato Filho2010-06-231-14/+0
| | | | | 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>
* Fixed layout policy.Renato Filho2010-06-231-2/+2
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Adding qInstallMsgHandler() method support.Luciano Wolf2010-06-211-0/+32
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.lima@openbossa.org>
* PySide now installs its type system files.Marcelo Lira2010-06-2119-2/+57
| | | | | | | | | | | | | | 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-171-2/+2
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Implement inject-code to functions using QChar in QFontMetrics andRenato Filho2010-06-171-0/+48
| | | | | | | QFontMetricsF Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix the template used by QFileDialog methods.Luciano Wolf2010-06-171-2/+2
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Marcelo Lira <marcelo.lira@openbossa.org>
* Add a default constructor value to QVariant::Type.Hugo Parente Lima2010-06-161-1/+1
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Implementing API2 modifications.Luciano Wolf2010-06-153-10/+174
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Marcelo Lira <marcelo.lira@openbossa.org>
* Added QVariant::Type as a primitive type.Hugo Parente Lima2010-06-153-0/+62
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Rename error() method to avoid name clash with the error signal.Hugo Parente Lima2010-06-151-1/+5
|
* Add suppress message for yet another weird message from the C++ parser.Hugo Parente Lima2010-06-152-1/+2
|
* Remove invalid function modifications from typesystem.Hugo Parente Lima2010-06-151-2/+0
|
* Fixes QString primitive type for Qt 4.7 adding a default constructor.Marcelo Lira2010-06-141-1/+1
| | | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed parent function return ownership.Renato Filho2010-06-143-18/+50
| | | | | | | | | Fixed QMainWindow functions ownership. Fixes #241. Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Marcelo Lira <marcelo.lira@openbossa.org>
* Removed QVariant from PySide.Hugo Parente Lima2010-06-103-255/+80
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Added QDataStream methods to read and write QString, QChar and QStringList.Hugo Parente Lima2010-06-101-1/+51
|
* Add checkType method to PySide custom converters.Hugo Parente Lima2010-06-105-15/+33
|
* Remove wrapper for classes: QString, QStringRef, QLatin1String, ↵Hugo Parente Lima2010-06-108-488/+140
| | | | QStringMatcher, QChar and QLatin1Char.
* Apply "rename to" tag to QtGui methods.Luciano Wolf2010-06-091-0/+53
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Marcelo Lira <marcelo.lira@openbossa.org>
* Rename necessary arguments on QtCore typesystem.Renato Filho2010-06-091-1/+30
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fix compilation of QTest bindings on MacOSX.Hugo Parente Lima2010-06-091-0/+13
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix cmake detection of phonon on MacOSX.Hugo Parente Lima2010-06-091-0/+5
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.araujo@openbossa.org>
* Created support to hash objects with type QDate, QTime, QDateTime, QUrl.Renato Filho2010-06-081-4/+4
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Updating QtMaemo5 dependecies inside CMakeLists file.Luciano Wolf2010-06-081-1/+1
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>, Renato Araújo <renato.filho@openbossa.org>
* Updating QEasingCurve and QTest to compile for ARMEL platforms.Luciano Wolf2010-06-082-5/+6
|
* Fixed custom code related to connectNotify behaviour.Marcelo Lira2010-06-031-3/+3
| | | | | | | | | | The code injection that deals with calling connectNotify in the binding generated with the protected hack turned off should call the connectNotify method directly instead of using the protected caller. Reviewed by Renato Araújo <renato.filho@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed Maemo5 classes parent policy.renato2010-05-311-4/+54
| | | | Fixes #178.
* Create unittest to pickselector.renato2010-05-312-1/+11
| | | | | Fixed pickselector return policy. Fixes bug #179
* 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>
* Updated QtOpenGL typesystem to Qt 4.7.Renato Filho2010-05-262-0/+74
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>, Marcelo Lira <marcelo.lira@openbossa.org>
* Merged typesystem (Qt 4.6 and 4.7)Renato Filho2010-05-269-47/+38
| | | | | | | Start use "since" tag on typesystem to Qt 4.7 modifications. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>, Marcelo Lira <marcelo.lira@openbossa.org>
* Check QT_NO_SESSIONMANAGER flag to avoid generating qsessionmanager_wrapper.Luciano Wolf2010-05-251-1/+6
|
* Initial bindings for QtDeclarative module.Hugo Parente Lima2010-05-244-1/+108
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* QtMultimedia bindings.Renato Filho2010-05-242-18/+85
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Updated QtNetwork typesystem to support Qt 4.7Renato Filho2010-05-244-8/+38
|
* Fix bug#225 - "QWidget didn't have fontMetrics Functions"Hugo Parente Lima2010-05-211-2/+0
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix QVariant custom code to work with Qt4.7.Hugo Parente Lima2010-05-212-31/+12
| | | | | | | | | Instead of expand QDECLARE_METATYPE just to change a string, change the class name used to hold the PyObject and use the Qt macro. This will protect us on future changes on this macro like the one on Qt 4.7. Reviewer: Renato Araújo <renato.filho@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix convenience symlinks used during install by appending theRenato Filho2010-05-201-1/+1
| | | | | | | Author: Didier Raboud <didier@raboud.com> Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Includes the postfixes in the install target (allows debug build)Renato Filho2010-05-2017-17/+17
| | | | | | | Author: Didier Raboud <didier@raboud.com> Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Revert "Fix bug #229."Hugo Parente Lima2010-05-201-0/+4
| | | | | | This reverts commit 5442c99d143fedb2fd7acd02e6e9d6195c16504d. The added function are part of QtGui, not QtCore.
* Fix bug #229.Hugo Parente Lima2010-05-201-4/+0
| | | | | | | Just remove the removal of some functions from Qt namespaces. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.araujo@openbossa.org>
* Update polymorphic-id-expression to QAbstractItemModel derived classes.Renato Filho2010-05-203-9/+9
| | | | | | | Fixes bug #211. Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug#228 - "Missing PySide.QtGui.QStyledItemDelegate.initStyleOption"Hugo Parente Lima2010-05-201-1/+0
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* MacOs compiler fix.Renato Oliveira2010-05-194-7/+10
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Implemented SO detection support.Renato Filho2010-05-193-14/+22
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Fix dynamic linking in various modules.Renato Filho2010-05-195-2/+5
| | | | | | | Author: Didier Raboud <didier@raboud.com> Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Implemented OPENSSL detection on QtNetwork.Renato Filho2010-05-191-5/+9
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>