aboutsummaryrefslogtreecommitdiffstats
path: root/PySide
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix bug 717 - "QByteArray doesn't honor \0 inside strings."Hugo Parente Lima2012-03-081-7/+73
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix inject code of QByteArray::fromRawData.Hugo Parente Lima2012-03-081-2/+1
| | | | The QByteArray returned must share, nto copy, the string contents.
* Fixes bug #755 - Method "void QInputContext::setFocusWidget(QWidget*)" missingMarcelo Lira2012-03-081-2/+0
| | | | | | | | | Also added an unit test. http://bugs.pyside.org/show_bug.cgi?id=755 Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Fixes bugs 753 and 754.Marcelo Lira2012-03-081-4/+0
| | | | | | | Bug #753 - Method "void QTextDocument::undo(QTextCursor*)" missing Bug #754 - Method "void QTextDocument::redo(QTextCursor*)" missing Also added an unit test.
* Fixes bug #741 - Method "qreal QTextLine::cursorToX(int*,Edge) const" missing.Marcelo Lira2012-03-081-1/+11
| | | | | | Also added unit tests. http://bugs.pyside.org/show_bug.cgi?id=741
* Fixes bug #742 - Method "void ↵Marcelo Lira2012-03-082-2/+30
| | | | | | | | QPrinter::getPageMargins(qreal*,qreal*,qreal*,qreal*,Unit) const" missing Also added unit tests. http://bugs.pyside.org/show_bug.cgi?id=742
* Fixed CMakeLists.txt files to prevent static source files of being deleted ↵Marcelo Lira2012-03-0818-16/+33
| | | | by "make clean".
* The funcition QSplashScreen.repaint was removed because that override the ↵Renato Filho2012-03-081-1/+1
| | | | | | | | | QWidget.repaint. This will save some genereted code and does not produce any side-effect. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Put back QPainter.fontInfo.Renato Filho2012-03-081-2/+0
| | | | | | | Fixes bug #750. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Implemented support to mapping on QMatrix4x4.Renato Filho2012-03-081-0/+18
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Implemented function QBitmap.fromData.Renato Filho2012-03-081-2/+11
| | | | | | | Fixes bug #740 Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Removes the removal of QMatrix4x4 call operators.Hugo Parente Lima2012-03-081-7/+0
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix code injection of QIODevice to support returning an error.Hugo Parente Lima2012-03-081-8/+16
|
* Fix bug 723 - "Missing QAbstractFileEngine.read and ↵Hugo Parente Lima2012-03-081-5/+53
| | | | QAbstractFileEngine.readLine"
* Fixed QCoreApplication.instance method to handle with application created ↵Renato Filho2012-03-081-3/+11
| | | | | | | | | before PySide module loading. Fixes bug #816. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Implemented support to pyton iterator in QTextFrame::iterator.Renato Filho2012-03-082-9/+41
| | | | | | | Fixes bug #688. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix 720 - "QByteArray prints itself wrong, on tp_print and tp_repr"Hugo Parente Lima2012-03-081-8/+9
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug 724 - "Missing QAbstractFileEngine.map method"Hugo Parente Lima2012-03-081-4/+18
|
* Fix bug 721 - "QFile doesn't support map and unmap functions."Hugo Parente Lima2012-03-081-5/+16
|
* Updated type system files to use the new %BEGIN_ALLOW_THREADS and ↵Marcelo Lira2012-03-083-46/+46
| | | | | | | %END_ALLOW_THREADS variables. Reviewed by Lauro Moura <lauro.neto@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Fixes bugs 746, 747 and 748.Marcelo Lira2012-03-081-8/+51
| | | | | | | | Bug #746 - Method "QFormLayout::getLayoutPosition(QLayout*,int*,QFormLayout::ItemRole*)const" missing Bug #747 - Method "QFormLayout::getWidgetPosition(QWidget*,int*,QFormLayout::ItemRole*)const" missing Bug #748 - Method "QFormLayout::getItemPosition(int,int*,QFormLayout::ItemRole*)const" missing Also added unit tests.
* Fixes bugs 739 and 752.Marcelo Lira2012-03-082-4/+40
| | | | | | | Bug #739 - Method "QTransform::map(qreal x, qreal y, qreal* tx, qreal* ty) const" missing Bug #752 - Method "void QSplitter::getRange(int index, int* min, int* max) const" missing Also added unit tests.
* Fixes bugs 744, 745, 756, 758 and 764.Marcelo Lira2012-03-082-10/+152
| | | | | | | | | | Bug #744 - Method "void QGraphicsLayout::getContentsMargins(qreal*,qreal*,qreal*,qreal*) const" missing Bug #745 - Method "void QGraphicsLayoutItem::getContentsMargins(qreal*,qreal*,qreal*,qreal*) const" missing Bug #756 - Method "void QWidget::getContentsMargins(int*,int*,int*,int*) const" missing Bug #758 - Method "void QTextCursor::selectedTableCells(int*,int*,int*,int*) const" missing Bug #764 - Method "void QLayout::getContentsMargins(int*,int*,int*,int*) const" missing Also added unit tests.
* Merged fix_int*... and fix_qreal*... type system templates.Marcelo Lira2012-03-082-20/+30
| | | | Also modified the method call to be friendlier with virtual methods.
* Fixes bug #489 - PySide.QtGui.QImage with string buffer argument.Marcelo Lira2012-03-081-0/+15
| | | | | | | | | http://bugs.pyside.org/show_bug.cgi?id=489 Also added an unit test. Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Fix bug 712 - "QtGui.QFormLayout doesn't have setItem() function"ps-1.0.1Hugo Parente Lima2012-03-081-2/+5
| | | | | Reviewer: Lauro Moura <lauro.neto@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug 540 - "Duplicate entries in QRegExp docs"Hugo Parente Lima2012-03-081-7/+0
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug 694 - "QWebPage::extensions need injected overloads due to required ↵Hugo Parente Lima2012-03-081-0/+23
| | | | casts on C++ version"
* Fix bug 685 - "The second arg. of QObject.findChildren doesn't have a ↵Hugo Parente Lima2012-03-082-6/+27
| | | | | | | default value and doesn't support regexes." Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix a type in QtGui type system.Hugo Parente Lima2012-03-081-1/+1
|
* Type systems of all modules but QtCore and QtGui reviewed.Hugo Parente Lima2012-03-088-103/+95
|
* Added comments for all method removals.Marcelo Lira2012-03-082-138/+222
| | | | | | | And some other clean ups. Reviewed by Luciano Wolf <luciano.wolf@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Fix bug 728 - "QFileDialog.getOpenFileNames never returns (hangs)"Hugo Parente Lima2012-03-081-0/+38
| | | | | Reviewer: Lauro Moura <lauro.neto@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix QToolbar.clear parent policy.Renato Filho2012-03-081-0/+20
| | | | | | | Fixes bug #711. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Fix bug 718 - "PySide/PyQt4 QByteArray incompatibilities: setNum method"Hugo Parente Lima2012-03-081-132/+16
| | | | Fix bug 719 - "PySide/PyQt4 QByteArray incompatibilities: appendByte method"
* Add comments to some function removals.Hugo Parente Lima2012-03-081-35/+46
|
* Removed parent policy from QLabel.setPixmap.Renato Filho2012-03-081-6/+0
| | | | | | | | | This is not a parent transfer because the function receives a "const &" and stores a copy of the pixmap. Fixes bug #714. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Remove duplicated const functions from QRegExpLauro Neto2012-03-081-0/+7
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Reviewer: Marcelo Lira <marcelo.lira@openbossa.org>
* 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 modify-documentation do QDeclarativePropertyMap to remove references ↵Hugo Parente Lima2012-03-081-1/+14
| | | | to QVariant and QString.
* 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-0841-181/+179
| | | | | | | | | | 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>
* Fix bug 674 - "QGraphicsScene::clear() is missing"Hugo Parente Lima2012-03-081-1/+15
|
* Fix bug 675 - "QGraphicsLinearLayout segfault"Hugo Parente Lima2012-03-081-4/+6
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug 679 - "QWebPage miss extension function"Hugo Parente Lima2012-03-082-0/+13
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Fix phonon compilation and detection of VideoCaptureDevice class.Hugo Parente Lima2012-03-082-5/+5
| | | | | Reviewer: Lauro Moura <lauro.neto@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Removed duplicated entry of QWebPage::ErrorDomain on typesystem.Hugo Parente Lima2012-03-081-1/+0
|
* 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>
* Fixed function 'QToolBar.addAction' to support callback in theRenato Araujo Oliveira Filho2012-03-081-2/+24
| | | | | | | | | | | arguments. Create unit test for bug #635. Fixes bug #635. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>