aboutsummaryrefslogtreecommitdiffstats
path: root/PySide
Commit message (Collapse)AuthorAgeFilesLines
* Initial QtSql bindings.Hugo Lima2010-03-223-0/+209
| | | | | Reviewer: Bruno Araújo <bruno.araujo@openbossa.org> Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
* Return a QStringList wrapper instead of a python list in Converter::toPython.Hugo Lima2010-03-221-1/+1
|
* Putting back QDrag::start.Lauro Neto2010-03-221-2/+0
| | | | | Although it is not documented, it's in the public API in the latest Qt SDK.
* Fixes QPixmap.loadFromData method and extends QPixmap test cases.Marcelo Lira2010-03-191-1/+14
| | | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Bruno Araújo <bruno.araujo@openbossa.org>
* Bindings for QtOpenGL.Hugo Lima2010-03-193-0/+133
| | | | | Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org> Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
* Remove whitespaces from qtnetwork typesystem.Hugo Lima2010-03-181-1/+1
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Reviewer: Lauro Moura <lauro.neto@openbossa.org>
* Remove some methods and ctors which makes no sense in the python world.Hugo Lima2010-03-181-0/+2
|
* Small fixes for Qt containers converters.Hugo Lima2010-03-171-41/+1
|
* Removes QVariant(float), QVariant(double) will just do the job for us.Hugo Lima2010-03-171-0/+1
|
* Fixed PySide custom conversions to work with newer versions of shiboken ↵Hugo Lima2010-03-1711-145/+83
| | | | generator.
* Added container conversion to QStringList.Hugo Lima2010-03-152-0/+23
|
* Initial QtTest bindingsLauro Neto2010-03-044-0/+94
|
* Add some missing Qt4.6 enums.Hugo Lima2010-03-041-0/+3
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Reviewer: Bruno Araújo <bruno.araujo@openbossa.org>
* Fix compilation of QtCore when using -DAVOID_PROTECTED_HACK.Hugo Lima2010-03-042-1/+4
|
* Updated type system and QString and QPixmap conversions to be extensible.Marcelo Lira2010-03-043-1/+19
| | | | | | | | And removed the QkeySequence test from the black list (the list of tests expected to fail). Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Lauro Moura <lauro.neto@openbossa.org>
* Re-add polymorphic-id-expression attribute on QtCore and QtGui typesystems.Hugo Lima2010-03-033-76/+91
| | | | | | | Also add some missing classes on QtGui. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Reviewer: Lauro Moura <lauro.neto@openbossa.org>
* Fix QtWebkit module compilation with Qt4.5.Hugo Lima2010-03-031-1/+1
| | | | | Reviewer: Bruno Araújo <bruno.araujo@openbossa.org> Reviewer: Lauro Moura <lauro.neto@openbossa.org>
* Initial QtSvg bindingsCarlos Goncalves2010-03-023-0/+95
| | | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Updated custom converter for QBool to use ValueTypeConverter instead of ↵Marcelo Lira2010-03-021-2/+2
| | | | | | | ConverterBase. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Lauro Moura <lauro.neto@openbossa.org>
* Fix bug #164 - __len__() function missing in QItemSelection.Luciano Wolf2010-02-261-0/+5
| | | | | | Reviewed by Renato Araujo <renato.filho@openbossa.org> Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Lauro Moura <lauro.neto@openbossa.org>
* Do not link QtWebkit module against other modules.Hugo Lima2010-02-261-4/+3
| | | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org> Reviewed by Lauro Moura <lauro.neto@openbossa.org>
* Initial QtWebKit binding (Qt 4.6 supported)Carlos Goncalves2010-02-253-0/+145
|
* QWidget.setStyle should not be set as parent of the style passed to it.Marcelo Lira2010-02-251-5/+0
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Fixed QtGui type system for QStyleFactory::create(QString) method.Marcelo Lira2010-02-251-1/+7
| | | | | The 'create' method returns a new QStyle object whose ownership must be transferred to Python.
* Fixing usage of tp_name in QVariant converterLauro Neto2010-02-241-1/+3
| | | | Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Custom code should use Converters instead of the "_cptr" macros.Marcelo Lira2010-02-248-10/+10
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Enable support for >> and << operators (QtCore.QTextStream).Luciano Wolf2010-02-241-8/+0
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Enable support for >> and << operators (QtCore.QTextStream).Luciano Wolf2010-02-231-6/+1
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Modify return ownership for some QTextCursor methodsAnderson Lizardo2010-02-231-0/+15
| | | | | | | This is necessary because the parent of the object returned by these methods is not the callee's method object. Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Renamed exec function on QPrintDialog().Renato Filho2010-02-231-1/+3
| | | | | | Fixes: #165 Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Fixed memory leak on callbacks used on signal connection.Renato Filho2010-02-232-29/+45
| | | | | Now using the 'destroyed()' signal the reference is cleaned after source object destroyed.
* Remove warnings about unused variables in code injection of TR functions.Hugo Lima2010-02-231-4/+4
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Use %0 instead of cptr, because cptr is an implementation detail.Hugo Lima2010-02-231-4/+4
|
* Doesn't use "return" on typesystem templates, use %PYARG_0 instead.Hugo Lima2010-02-232-5/+11
| | | | .
* Added QPixmap(QVariant).Hugo Lima2010-02-221-0/+10
| | | | Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Replace QChar(char) with QChar(Str)Lauro Neto2010-02-221-0/+14
| | | | | | | QChar(char) was conflicting with QChar(int) due to char converter using PyNumber_Check. Reviewer: Renato Oliveira <renato.oliveira@openbossa.org>
* Adding conversion file for QCharLauro Neto2010-02-222-0/+26
|
* QtGui and QtNetwork uses the global header from QtCore, so they must be ↵Hugo Lima2010-02-192-0/+2
| | | | | | compiled after QtCore. Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Support QPoint(QPoint) constructor.Luciano Wolf2010-02-191-0/+6
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Remove multiple signatures for QSignalMapper mapped() and setMapping() ↵Bruno dos Santos de Araujo2010-02-191-30/+1
| | | | | | functions (Fixes: #154) Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Fix array deallocationLauro Neto2010-02-191-10/+10
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* QGraphicsItem.isBlockedByModalPanel: initialize the pointer argument to ↵Anderson Lizardo2010-02-191-1/+1
| | | | | | avoid invalid memory access if the method returns false Reviewed by Bruno Araujo <bruno.araujo@openbossa.org>
* Update QFontMetrics(f) tabArray handlingLauro Neto2010-02-191-40/+106
| | | | | | | | Instead of expecting a value, tabArray is used to pass an array of ints to C++. This commit uses libshiboken sequenceToIntArray function to build the array. Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed the number of dynamic signal to 50, to avoid index error onRenato Filho2010-02-181-2/+1
| | | | | | QMetaObject functions. Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Fixing typo in fix_arg,QRect* templateLauro Neto2010-02-181-1/+1
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Do not link a python module to other python module.Hugo Lima2010-02-183-5/+3
|
* Put all custom converters inside Shiboken namespace.Hugo Lima2010-02-1810-0/+20
|
* Move QVariant converter implementation to global header.Hugo Lima2010-02-183-86/+82
|
* Remove redundant code on containers custom conversions.Hugo Lima2010-02-183-80/+3
|
* Rename qcoreapplication_impl.cpp to qcoreapplication_init.cpp, becauseHugo Lima2010-02-182-1/+1
| | | | it's a glue for the init method.