aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtCore
Commit message (Collapse)AuthorAgeFilesLines
* Implemented support to modify slot return type.Renato Filho2010-05-172-178/+4
| | | | | | | | 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
* Included QMetaMethod class in QtCore typesystem.Renato Filho2010-05-172-0/+6
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Implemented support to slot decoration.Renato Filho2010-05-172-0/+182
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>, Luciano Wolf <luciano.wolf@openbossa.org>
* Removed undocumented enum from QtCore.Hugo Parente Lima2010-05-071-1/+1
|
* Adding missing filesLauro Neto2010-05-031-1/+1
| | | | Were giving 'symbol not found' with Qt4.5 or failing compilation
* Fixed typesystem parser warnings.Renato Filho2010-04-302-2/+6
|
* Add QMultiMap support for Qt.Hugo Parente Lima2010-04-302-1/+9
|
* Adding support to QtScript module.Luciano Wolf2010-04-232-0/+3
|
* Added all Qt global functions using the brand new function tag.Hugo Parente Lima2010-04-221-241/+25
| | | | | Reviewer: Renato Araújo <renato.araujo@openbossa.org> Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
* Partially fix bug#181 "Support Qt message handling system".Hugo Parente Lima2010-04-131-5/+0
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>
* Do not throw an OverflowError on QString.number(-1).Hugo Parente Lima2010-04-121-0/+6
|
* Use '&&' instead of 'and'.Thomas Berg2010-04-121-3/+3
| | | | | | | The 'and' keyword is not supported by msvc. Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org> Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
* Suppress some known warnings from apiextractor.Hugo Parente Lima2010-04-091-0/+4
|
* Remove warnings about deprecated const char* to char* conversions.Hugo Parente Lima2010-04-091-2/+2
|
* Fix bug#210, "Can't connect generic callable objects as a slot".Hugo Parente Lima2010-04-081-3/+2
| | | | | Reviewer: Bruno Araújo <bruno.araujo@openbossa.org> Reviewer: Lauro Moura <lauro.neto@openbossa.org>
* Small optimization in QObject::receiversHugo Parente Lima2010-04-061-3/+3
| | | | | Reviewer: Lauro Moura <lauro.neto@openbossa.org> Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
* QStrign uses the same hash function of str/unicode objects.Hugo Parente Lima2010-04-062-1/+9
|
* Fix QObject::connect(sender, signal, slot).Hugo Parente Lima2010-04-061-1/+3
|
* None is convertible to QString, the result is a QString where QString.isNull ↵Hugo Parente Lima2010-04-061-0/+3
| | | | is true.
* Do not handle QVariant user types as Python objects, only the real Python ↵Hugo Lima2010-04-061-6/+5
| | | | | | | objects. Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org> Reviewer: Bruno Araújo <bruno.araujo@openbossa.org>
* QVariant.toList returns a list when it contains a python sequence.Hugo Lima2010-04-051-0/+16
|
* Fix some issues with QVariant, including the QAbstractKinectScroller one.Hugo Lima2010-04-052-44/+55
|
* QEasingCurve::setCustomType typesystem workaroundAnderson Lizardo2010-03-311-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | Due to bug #201, typesystem signatures that take pointer to function types are incorrectly expanded. To workaround this bug, the typesystem signature for QEasingCurve::setCustomType removal is: <modify-function signature="setCustomType(double)" remove="all"/> But for ARM, this same workaround does not work, and has to be: <modify-function signature="setCustomType(float)" remove="all"/> This is probably due to how apiextractor/shiboken is incorrectly expanding the pointer to function signature. To remove setCustomType on ARM (and thus allow the build to succeed), this commit adds both signatures. This is a temporary fix just while bug #201 is not fixed. Reviewed-by: Lauro Moura <lauro.neto@openbossa.org> Reviewed-by: Bruno Araujo <bruno.araujo@openbossa.org>
* Adapt to changes in libshibokenHugo Lima2010-03-313-4/+7
| | | | | Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org> Reviewer: Bruno Araújo <bruno.araujo@openbossa.org>
* Fix QObject::findChildren and QObject::findChild methods.Hugo Lima2010-03-312-21/+39
| | | | | | | QUiTools unit tests uses these functions and will fail without this patch. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>
* 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
|