aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtCore/qstring_conversions.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix bug 1011 - "PySide cygwin patch"Hugo Parente Lima2012-03-081-1/+1
| | | | | Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Change String::convertible to String::isConvertible.Hugo Parente Lima2012-03-081-1/+1
|
* Initia QtCore port to python3.Renato Filho2012-03-081-6/+4
|
* Fix bug#427 - "QSvgWidget, load from QtCore.QByteArray does not work"Hugo Parente Lima2010-11-051-30/+1
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Fix bug#420 - "Memory leak in setText"Hugo Parente Lima2010-10-211-1/+1
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Fix bug#316 - "QAbstractItemModel.createIndex is broken"Hugo Parente Lima2010-09-011-2/+2
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Added QVariant::Type as a primitive type.Hugo Parente Lima2010-06-151-0/+6
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Add checkType method to PySide custom converters.Hugo Parente Lima2010-06-101-2/+6
|
* Remove wrapper for classes: QString, QStringRef, QLatin1String, ↵Hugo Parente Lima2010-06-101-63/+61
| | | | QStringMatcher, QChar and QLatin1Char.
* None is convertible to QString, the result is a QString where QString.isNull ↵Hugo Parente Lima2010-04-061-0/+3
| | | | is true.
* Fixed PySide custom conversions to work with newer versions of shiboken ↵Hugo Lima2010-03-171-31/+37
| | | | generator.
* 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>
* Custom code should use Converters instead of the "_cptr" macros.Marcelo Lira2010-02-241-1/+1
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Put all custom converters inside Shiboken namespace.Hugo Lima2010-02-181-0/+2
|
* Adding cast to QString::fromUcs4 callLauro Neto2010-01-261-1/+2
| | | | | | | Some systems (Ubuntu 32-bits) were failing to compile due to Py_UNICODE being unsigned long Reviewed by Hugo Parete <hugo.lima@openbossa.org>
* QString can now receive buffer objects on constructor, like boost-based PySide.Hugo Lima2010-01-211-1/+25
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Removed code injections of copyCppObject and toPython converter methods for ↵Marcelo Lira2009-12-101-10/+0
| | | | | | | | | QVariant and QString. Converter<T>::copyCppObject and Converter<T>::toPython are not needed anymore due to improvements in Shiboken generator. Reviewed by Lauro Neto <lauro.neto@openbossa.org>
* Updated code injections to use Shiboken updates regarding type system variables.Marcelo Lira2009-12-081-7/+7
| | | | Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Remove unneeded method in QString converter, this method is now auto ↵Hugo Lima2009-12-071-5/+0
| | | | | | | | generated by the generator. Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Updated code injections to use the new PyBaseWrapper_New signature from ↵Marcelo Lira2009-12-021-1/+1
| | | | | | libshiboken. Reviewed by Lauro Neto <lauro.neto@openbossa.org>
* Fix QString converter to compile with the new libshiboken api.Hugo Lima2009-11-301-1/+1
|
* fixed Converter<QString>::isConvertible() method to consider all the cases;Marcelo Lira2009-11-051-2/+6
| | | | | also changed Converter<QString>::toCpp last return option to use a more straightforward way to get the C++ object
* Speed up construction of QString's from python unicode strings.Hugo Lima2009-11-041-5/+2
|
* Updated container converters to the new shiboken conversion schemeMarcelo Lira2009-11-031-8/+15
| | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* updated custom conversions to use Converter<T>::isConvertible properlyMarcelo Lira2009-10-301-5/+5
|
* - Added isConvertible methods to all custom converters.Hugo Lima2009-10-271-0/+35
- Added a custom converter for QString.