aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Version bump to 1.1.0.ps-1.1.0Marcelo Lira2012-03-081-4/+4
|
* Declares Python types using the new "<custom-type>" tag.Marcelo Lira2012-03-081-0/+10
| | | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Paulo Alcantara <pcacjr@gmail.com>
* Fix BUG #1060 - "Subclassing of QUiLoader leads to "Internal C++ objectPaulo Alcantara2012-03-084-5/+44
| | | | | | | | | already deleted" exception" See http://bugs.pyside.org/show_bug.cgi?id=1060. Signed-off-by: Paulo Alcantara <pcacjr@gmail.com> Reviewed-by: Marcelo Lira <marcelo.lira@openbossa.org>
* Fix BUG #1091 - "PixmapFragment and drawPixmapFragments are not bound"Paulo Alcantara2012-03-084-74/+100
| | | | | | | | | See http://bugs.pyside.org/show_bug.cgi?id=1091. Also minor coding style fixes in QtGui's typesystem. Signed-off-by: Paulo Alcantara <pcacjr@gmail.com> Reviewed-by: Marcelo Lira <marcelo.lira@openbossa.org>
* Fix BUG #1084 - "Crash (segfault) when writing unicode string on socket"Paulo Alcantara2012-03-083-13/+25
| | | | | | | See http://bugs.pyside.org/show_bug.cgi?id=1084. Signed-off-by: Paulo Alcantara <pcacjr@gmail.com> Reviewed-by: Trust me
* The temporary file used in the test for bug #829 must not be deleted by the ↵Marcelo Lira2012-03-081-2/+1
| | | | | | test. This fixes the test in win32 platforms.
* Fixes the QSettings related QVariant's save/load bug.Marcelo Lira2012-03-081-0/+2
|
* Small code style changes.Hugo Parente Lima2012-03-081-6/+4
|
* Add GC support to PySide Property type.Hugo Parente Lima2012-03-081-22/+46
| | | | | | This fixes GC errors when running PySide on a Python debug env. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
* Added type system entries to the primitive types used by QtOpenGL.Marcelo Lira2012-03-081-12/+27
|
* Updated the custom widget plugin to use the new converters.Marcelo Lira2012-03-082-6/+6
|
* No more training wheels. The last occurrences of the old template Converter ↵Marcelo Lira2012-03-0838-917/+99
| | | | | | where removed. Also related fixes here and there.
* Added a type system file for Maemo's QtCore.Marcelo Lira2012-03-081-0/+26
|
* Fixes custom code for QtCore's HWND on win32.Marcelo Lira2012-03-083-8/+15
|
* Qt::HANDLE is declared only in QtCore, and its specifics depend on the ↵Marcelo Lira2012-03-0825-31/+102
| | | | architecture.
* Fixed QtCore's HWND converter for win32.Marcelo Lira2012-03-081-8/+19
|
* Removed the QAbstractVideoBuffer::map method.Marcelo Lira2012-03-081-0/+3
|
* Fixed converter for win32's WId type.Marcelo Lira2012-03-081-1/+4
|
* Fix compilation of conversion branch against Python3k.Hugo Parente Lima2012-03-082-14/+27
| | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
* Replaced TypeResolver by SbkConverter and SpecificConverter.Marcelo Lira2012-03-0814-104/+175
| | | | Also updated QtGui's WId conversion to Python 3.
* Removed the remaining occurrences of Shiboken::makeTuple.Marcelo Lira2012-03-088-136/+209
|
* Fixed code for QUdpSocket.readDatagram method to remove usage of ↵Marcelo Lira2012-03-082-7/+13
| | | | Shiboken::makeTuple.
* Fixed code for setting QtCore.__version_info__ to not use Shiboken::makeTuple.Marcelo Lira2012-03-082-6/+9
|
* Fixed custom code for QScriptValueIterator.__next__ function.Marcelo Lira2012-03-081-6/+10
| | | | | It must not use the convenience method Shiboken::makeTuple, for it makes use of the old template based converters.
* Fixes type converter for Win32's HWND.Marcelo Lira2012-03-081-1/+1
|
* Fixes the test for a QFlag value returned in a QVariant.Marcelo Lira2012-03-081-1/+1
|
* Modified PySideQFlags based on Hugo's design.Marcelo Lira2012-03-081-1/+4
|
* Added converter for primitive type QModelIndexList.Marcelo Lira2012-03-083-19/+35
|
* Fixes conversion rule for QGraphicsView::drawItems array argument.Marcelo Lira2012-03-081-2/+3
|
* Some method signatures were removed.Marcelo Lira2012-03-082-1/+11
| | | | | | They were removed because used pointers to primitive types without proper user defined handling. Future assessment must be done to tell if removal is enough, or other changes are needed.
* Updated various function removals and modifications.Marcelo Lira2012-03-083-4/+51
|
* New containers for container types.Marcelo Lira2012-03-081-24/+206
|
* New converters for primitive types.Marcelo Lira2012-03-085-26/+373
|
* Added new style conversions for QDate, QTime and QDateTime objects.Marcelo Lira2012-03-081-4/+77
|
* Added default constructor to QTextStreamManipulator.Marcelo Lira2012-03-081-1/+1
|
* Turned QStyleOptionViewItem into value type, for it has a public copy ↵Marcelo Lira2012-03-081-8/+8
| | | | | | | | constructor. It is passed around by value in many places, like the return value of QAbstractItemView::viewOptions(). I did the same to the variations: QStyleOptionViewItemV2, QStyleOptionViewItemV3, etc.
* Signature of various added and modified functions modified to use non-const ↵Marcelo Lira2012-03-082-17/+13
| | | | | | | references. The API Extractor signature normalizer removes const& from argument types, but it leaves non-const references unchanged.
* pysidesignal: more trivial fixesPaulo Alcantara2012-03-081-20/+23
| | | | | | | Fix typos and coding style. Signed-off-by: Paulo Alcantara <pcacjr@gmail.com> Reviewed-by: Marcelo Lira <marcelo.lira@openbossa.org>
* Makes test for QtCore's bug #1063 compliant with Python 3.Marcelo Lira2012-03-081-2/+3
|
* Don't double decref variable causing an assertion error on debug builds.Hugo Parente Lima2012-03-081-1/+1
| | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
* pysidesignal: don't use C's castPaulo Alcantara2012-03-081-5/+5
| | | | | | Signed-off-by: Paulo Alcantara <pcacjr@gmail.com> Reviewed-by: Luciano Wolf <luciano.wolf@openbossa.org> Reviewed-by: Hugo Parente Lima <hugo.pl@gmail.com>
* pysidesignal: trivial fixesPaulo Alcantara2012-03-081-59/+61
| | | | | | | | Fix typos and coding style Signed-off-by: Paulo Alcantara <pcacjr@gmail.com> Reviewed-by: Luciano Wolf <luciano.wolf@openbossa.org> Reviewed-by: Hugo Parente Lima <hugo.pl@gmail.com>
* Fix BUG #1063Paulo Alcantara2012-03-083-0/+31
| | | | | | Signed-off-by: Paulo Alcantara <pcacjr@gmail.com> Reviewed-by: Willer Moreira <willer.moreira@openbossa.org> Reviewed-by: Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug 1083 - "winId returns a PyCObject making it impossible to compare ↵Hugo Parente Lima2012-03-082-23/+4
| | | | two winIds"
* Replace private.py file by an inject code.Hugo Parente Lima2012-03-084-14/+12
|
* Fix BUG #1077 - "Application exit crash when call QSyntaxHighlighter.document()"Paulo Alcantara2012-03-083-0/+23
| | | | | | Signed-off-by: Paulo Alcantara <pcacjr@gmail.com> Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Fix BUG #1034 - "Error compiling PySide with Python 3.2.2 32bit on Windows"Paulo Alcantara2012-03-082-1/+47
| | | | | | Signed-off-by: Paulo Alcantara <pcacjr@gmail.com> Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix BUG #1069 - "QtCore.QDataStream silently fails on writing Python string"Paulo Alcantara2012-03-083-25/+44
| | | | | | Signed-off-by: Paulo Alcantara <pcacjr@gmail.com> Reviewer: Willer Moreira <willer.moreira@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Bumping to revision 1.0.9ps-1.0.9Luciano Wolf2012-03-081-3/+3
|
* Fix BUG #1048Paulo Alcantara2012-03-083-0/+12
| | | | | | Signed-off-by: Paulo Alcantara <pcacjr@gmail.com> Reviewer: Willer Moreira <willer.moreira@openbossa.org> Hugo Parente Lima <hugo.lima@openbossa.org>