aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtCore
Commit message (Collapse)AuthorAgeFilesLines
...
* Removes the user added copy constructor for QPoint class.Marcelo Lira2010-03-261-6/+0
| | | | | | | API Extractor already provides it. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Lauro Moura <lauro.neto@openbossa.org>
* Install module headers.Hugo Lima2010-03-231-0/+2
|
* Fix methods for the '*&' commit in apiextractorLauro Neto2010-03-221-2/+2
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>
* Return a QStringList wrapper instead of a python list in Converter::toPython.Hugo Lima2010-03-221-1/+1
|
* 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-1710-145/+76
| | | | generator.
* Added container conversion to QStringList.Hugo Lima2010-03-152-0/+23
|
* 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-041-1/+9
| | | | | | | | 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-031-4/+4
| | | | | | | Also add some missing classes on QtGui. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Reviewer: Lauro Moura <lauro.neto@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>
* 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-247-9/+9
| | | | 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>
* 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
|
* 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
|
* 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>
* 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>
* Do not link a python module to other python module.Hugo Lima2010-02-181-1/+1
|
* Put all custom converters inside Shiboken namespace.Hugo Lima2010-02-189-0/+18
|
* 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.
* Do not export symbols, because nobody can link against QtCore.Hugo Lima2010-02-181-3/+3
|
* Adds code to QAbstractTransition.setTargetStates regarding reference keeping.Marcelo Lira2010-02-181-0/+9
| | | | | | The added custom code keeps alive the reference of the sequence passed to setTargetStates and decrefs any previous object passed via setTargetState or setTargetStates.
* Fixes type system for QAbstractTransition.setTargetState.Marcelo Lira2010-02-171-0/+12
| | | | | And also for QAbstractTransition.targetState method. The test cases for it were expanded.
* Removed type system instructions causing returned objects to be invalidated.Marcelo Lira2010-02-121-58/+1
| | | | | | | Directives passing to C++ the ownership of return values of methods were causing the said values to be marked as invalid. Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Remove access to internal stuff from QtCore typesystem.Hugo Lima2010-02-121-8/+8
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Adding QSet conversions plus test in qstatemachineLauro Neto2010-02-122-4/+47
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Ignore "staticQtMetaObject" attributeAnderson Lizardo2010-02-101-0/+1
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Putting back QFileInfo(QFile) and setFile(QFile)Lauro Neto2010-02-091-2/+0
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Adding support for connect(obj, signal, slot)Lauro Neto2010-02-091-1/+4
| | | | | window.connect(button, SIGNAL('clicked()'), SLOT('close()') should connect button.clicked to window.close
* Added QtCore.qAbs function.Hugo Lima2010-02-091-0/+5
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Do not remove QVariant ctors handled by code injection, just set them ↵Hugo Lima2010-02-081-18/+54
| | | | | | private so they will continue to be considered by implicit conversions.
* Fixes for QtCore and QtGui type sytemsCarlos Goncalves2010-02-081-1/+1
| | | | | | | - Added missing Qt::InputMethodHints flags - Fixed QFontMetricsF::boundingRect Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Simplify "else" and "endif" statementsAnderson Lizardo2010-02-051-2/+2
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Backporting Qt4.6 support from PySide (Boost) to Shiboken, plus:Luciano Wolf2010-02-053-22/+257
| | | | | Implemented inject code for QState.addTransition - by Renato Araujo. QState test - by Renato Araujo.
* Fixing QVariant converter toCpp for basic typesLauro Neto2010-02-031-2/+34
| | | | | | | | | | Instead of storing a single pointer, the converter now checks for basic python types like string, bool, ints, using the same if/self structure of the constructor. Only as a last resort it tries to convert to a python object holder. Reviewer: Renato Filho <renato.filho@openbossa.org>
* Adding support for QIODevice.getCharLauro Neto2010-02-021-1/+9
| | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
* Adding __str__ to QByteArrayLauro Neto2010-02-021-0/+5
|
* Fixing several testsLauro Neto2010-02-021-8/+45
| | | | | | | | | | Using isinstance instead of comparing classes names Removing unnecessary tuple check, treated by the return value unpacking Adding missing inject code tests Adding qfile.getchar test Fixing QLocale.to* methods fixing __setitem__ in qbytearray
* Adding tests and fixing QString __setitem__ and []Lauro Neto2010-02-021-1/+2
| | | | | | Instead of calling replace, using remove/insert, as there's no way of replacing only 1 char at a given position by another string directly.
* Remove all "class" attribute from define-ownership tag, so the default value ↵Hugo Lima2010-02-021-1/+1
| | | | | | will be applied. Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed signal signature on singleshot inject code.Renato Filho2010-02-011-1/+1
| | | | Reviewed by Hugo Parente Lima <hugo.lima@openbossa.org>