aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtCore
Commit message (Collapse)AuthorAgeFilesLines
* Fix bug 676 - "wrong QLocale.toFloat() description".Luciano Wolf2012-03-081-0/+24
| | | | | Reviewer: Lauro Moura <lauro.neto@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Added missing format attribute.Hugo Parente Lima2012-03-081-1/+1
|
* Updated CMake files to use the "--drop-type-entries" generator option.Marcelo Lira2012-03-081-5/+2
| | | | | | | | | | Instead of maintaining a complex CMake scheme to remove optional type system entries, the generation will rely on the new generator capability of dropping entries given via command line. Reviewed by Bruno Araújo <bruno.araujo@openbossa.org> Reviewed by Lauro Moura <lauro.neto@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug 681 - "Unicode support for trUtf8 method"Hugo Parente Lima2012-03-081-8/+27
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Increments reference of None object on custom code for QState.addTransition ↵Marcelo Lira2012-03-081-0/+1
| | | | | | | method. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Replaced all entries of reference-count with action=add to action=set.Hugo Parente Lima2012-03-081-6/+6
|
* Remove invalid function removals.Hugo Parente Lima2012-03-081-6/+0
|
* Fix 666 - "QByteArray does not support slices"Hugo Parente Lima2012-03-081-0/+11
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug 660 - "QMimeData type deleted prematurely when overriding mime-type ↵Hugo Parente Lima2012-03-081-1/+2
| | | | in QStandardItemModel drag and drop"
* Export QTranslator::translate and QTranslator::load.Hugo Parente Lima2012-03-081-2/+20
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Export method QCryptographicHash::addData.Hugo Parente Lima2012-03-081-1/+8
|
* Remove some ancient method removals from QtCore typesystem.Hugo Parente Lima2012-03-081-2/+0
| | | | | - QDir(QString,QString,QFlags<QDir::SortFlag>,QFlags<QDir::Filter>) - QBitArray::fill(bool, int)
* Use PyString_GET_SIZE instead of PyString_Size on some inject codes.Hugo Parente Lima2012-03-081-2/+2
|
* Export QSettings::iniCodec and QXmlStreamWriter::codec methods.Hugo Parente Lima2012-03-081-4/+11
|
* QPersistentModelIndex now have the same implementation of internalPointer of ↵Hugo Parente Lima2012-03-081-2/+10
| | | | QModelIndex.
* Fixed/implemented various QResources methods.Hugo Parente Lima2012-03-081-13/+39
| | | | | | - data() is now exported and returns a Python read-only buffer object. - (un)registerResourceData now accept buffers as arguments, and respects zeroes in the middle of data. - Improved unit test.
* Fix comparisson of QByteArray with Python strings that have zeroes inside.Hugo Parente Lima2012-03-082-0/+48
|
* Added comments to some function removals.Hugo Parente Lima2012-03-081-3/+23
|
* Updated QAbstractItemModel.createIndex documentation to warning aboutRenato Araujo Oliveira Filho2012-03-081-2/+18
| | | | | | | ptr argument life time. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug 656 - "cannot inherit from QCoreApplication"Hugo Parente Lima2012-03-081-1/+1
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Implement __repr__ function for class with Float attributes.Renato Araujo Oliveira Filho2012-03-081-0/+27
|
* Implemented fuction __repr__ for base types.Renato Araujo Oliveira Filho2012-03-081-0/+106
| | | | | | | Fixes bug #593 Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug#584 - "python pickle module can't treat QByteArray object of PySide"Hugo Parente Lima2012-03-081-18/+18
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Removed useless rejectionsHugo Parente Lima2012-03-081-281/+6
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Fix Qvariant to Cpp conversion.Renato Araujo Oliveira Filho2012-03-081-0/+2
| | | | | | | Fixes bug #589 Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixes the fix in the commit a1cf8f03.Marcelo Lira2012-03-081-1/+2
| | | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Fixes connecting signal to decorated slot.Marcelo Lira2012-03-081-1/+12
| | | | | | | | | | | | Decorated methods on classes derived from QObject are not called when connected to Qt signals because they get a name different from the decorated method. To solve this decorated methods are registered as global slots. An unit test was added. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Lock the gil on some hand written code to avoid crashes.Hugo Parente Lima2012-03-081-4/+4
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed function QDataStream.readRawData return value.Renato Araujo Oliveira Filho2012-03-081-2/+7
| | | | | | | | The function readRawData now return None in case of error, otherwise a string with the read data. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Created support to function qAddPostRoutine.Renato Araujo Oliveira Filho2012-03-081-0/+31
| | | | | | | | Created unit test for bug #515 Fixes bug #515 Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Fix bug#514 - "Static method QByteArray.fromRawData is missing from QtCore"Hugo Parente Lima2012-03-081-1/+9
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Fixed global functions from QT_TR_NOOP and QT_TRANSLATE_NOOP family.Marcelo Lira2012-03-081-10/+20
| | | | | | | | | | | These function just return one of their arguments as result, and the buggy implementation was forgetting to increment the reference count for the returned object. A new unit test was added. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* QObject.sender should not steal the returned object ownership to Python.Marcelo Lira2012-03-081-1/+1
|
* Fix bug#544 - "QtCore.QRect missing binding for method getCoords"Hugo Parente Lima2012-03-081-4/+84
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Fixed ownership of the value returned by QAbstractItemModel::data(...).Marcelo Lira2012-03-081-0/+5
| | | | | | | | | The value returned by Python to the virtual method QAbstractItemModel::data(...) called from C++ has its ownership transferred to C++. Reviewed by Lauro Moura <lauro.neto@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Added QRegExp.replace(QString, const char*) method.Marcelo Lira2012-03-081-0/+35
| | | | | | | | | | | | | | The only way to search and replace using QRegExp is using the QString::replace method. Since QString was removed, QRegExp now is useful only to search stuff, but not replace. For this purpose the QRegExp.replace method was added. The first argument is the string that will be operated over, the second argument contains the replacement, and the return value is a new modified Python string. Unit tests and documentation for QRegExp.replace were added as well. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Fixed qt_metacall, now everything works as it should.Hugo Parente Lima2012-03-081-38/+28
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Fix bug#496 - "No binary read/write methods in QDataStream"Hugo Parente Lima2010-11-241-3/+23
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Adapt to API changes in libshiboken.Hugo Parente Lima2010-11-236-25/+25
|
* Update to new Shiboken API (Renamed SbkObjectType)Renato Araujo Oliveira Filho2010-11-193-9/+9
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Updated to new shiboken API.Renato Araujo Oliveira Filho2010-11-191-8/+7
| | | | | Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug#470 - "Object::connect: No such signal QTimer::"timeout()" when ↵Mickaël2010-11-161-1/+1
| | | | | | | using QTimer::singleShot" Reviewer: Hugo Parente <hugo.lima@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Fix bug#471 - "QtCore.QObject is missing 'thread' method"Hugo Parente Lima2010-11-161-1/+0
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Added PySide attributes to specify current version, and Qt version.renatofilho2010-11-122-4/+6
| | | | | | | Fixes bug: #454 Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug#455 - "QByteArray.data() cuts data to first '\x00' char"Hugo Parente Lima2010-11-111-0/+6
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Merge branch 1.0 into masterHugo Parente Lima2010-11-101-3/+8
|\ | | | | | | | | Conflicts: PySide/QtCore/qvariant_conversions.h
| * Fixed QVariant conversions for object types.renatofilho2010-11-101-3/+8
| | | | | | | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* | Changes needed to compile QtCore with libshiboken v1.0Hugo Parente Lima2010-11-106-23/+24
|/
* Fixed QVariant conversions for user type.renatofilho2010-11-091-5/+6
|
* Fixed QVariant conversion to C++renatofilho2010-11-091-7/+79
| | | | | | | | Now before convert from python object to C++, PySide check for a existent of metaType for any derived class. Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>