aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtGui
Commit message (Collapse)AuthorAgeFilesLines
* Updated CMake files to use the "--drop-type-entries" generator option.Marcelo Lira2012-03-0815-107/+111
| | | | | | | | | | 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 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>
* 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>
* Replaced all entries of reference-count with action=add to action=set.Hugo Parente Lima2012-03-082-14/+14
|
* Fix bug 667 - "Crash on exit"Hugo Parente Lima2012-03-081-1/+16
|
* Implemented support for iterator on QTextBlock.Renato Araujo Oliveira Filho2012-03-081-0/+17
| | | | | | | Fixes bug #662. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Separated class typesystem from the main typesystem.Renato Araujo Oliveira Filho2012-03-0815-94/+102
| | | | | | | | | | Remove class specification, detected during the compilation from the main typesystem to avoid errors during the generation. Fixes bug #661 Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Fix bug 643 - "QTabWidget.insertTab not taking ownership"Hugo Parente Lima2012-03-081-1/+1
|
* Fix bug 653 - "Crash after calling QWizardPage.wizard()"Hugo Parente Lima2012-03-081-1/+7
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix bug 652 - "Segfault when using QTextBlock::setUserData due to missing ↵Hugo Parente Lima2012-03-081-0/+5
| | | | ownership transfer"
* Removed the removal of some QApplication functions.Hugo Parente Lima2012-03-081-4/+0
| | | | | | | | | | | These functions were removed due to ancient bugs in shiboken generator, all them now fixed. Functions: font(const char*) setFont(QFont,const char*) palette(const char*)
* Fix bug 565 - "QImage missing *data constructors"Hugo Parente Lima2012-03-081-26/+66
| | | | | | | | | | Fix bug 566 - "'PySide.QtGui.QImage' object has no attribute 'scanLine'" The constructors now accepts any PyObject which implements the buffer protocol, as the C++ and PyQt4 version the buffer must be alive during the life time of QImage because QImage *does not* copy the image data. scanLine() and bits() now return buffer objects pointing to the memory inside QImage.
* Implemented fuction __repr__ for base types.Renato Araujo Oliveira Filho2012-03-081-2/+149
| | | | | | | Fixes bug #593 Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Implement support to others color spec on deepcopy function.Renato Araujo Oliveira Filho2012-03-081-4/+38
| | | | | | | | | Created unit test QColor reduce function. Fixes bug #612. Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed QLineEdit.getTextMargins return value.Renato Araujo Oliveira Filho2012-03-081-0/+20
| | | | | | | Fixes bug #632 Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug#552 - "Segmentation fault when using QUiLoader and QTabWidget"Hugo Parente Lima2012-03-081-1/+0
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed Widget and Layout inject code to avoid problems in armel arch.Renato Araujo Oliveira Filho2012-03-082-2/+2
|
* Named the single argument of all "QWidget.*Event(arg)" methods as "event".Marcelo Lira2012-03-081-26/+78
| | | | Just to make the generated documentation more readable.
* Fix bug#584 - "python pickle module can't treat QByteArray object of PySide"Hugo Parente Lima2012-03-081-3/+3
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Removed useless rejectionsHugo Parente Lima2012-03-081-61/+5
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Remove protected fields of event classes.Hugo Parente Lima2012-03-081-2/+76
| | | | | | Event classes have a lot of non-documented protected fields, those fields are removed from PySide because they are Qt implementation details, besides the fact they are accessible by ordinary event methods.
* Fix documentation for QWidget.winId()Hugo Parente Lima2012-03-081-0/+13
|
* Add polymorphic-id-expression to QGraphicsObject and QDeclarativeItem.Hugo Parente Lima2012-03-081-1/+1
|
* Fixed QTreeWidgetItem.parent function policy.Renato Araujo Oliveira Filho2012-03-081-2/+17
| | | | | | | Fixes bug #585 Reviewer: Hugo Parente Lima <hugo.lima@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed QWidget.setParent signature on typesystem.Renato Araujo Oliveira Filho2012-03-081-1/+1
|
* Fix QTreeWidgetItem.parent function.Renato Araujo Oliveira Filho2012-03-081-1/+1
| | | | | | | | Create unit test for new use case. Fixes bug #547 Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Fixed QWidget.parent function.Renato Araujo Oliveira Filho2012-03-081-5/+18
| | | | | | | | Create unit test for bug 576. Fixes bug #576. Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Fix bug 546 - "Python crash on exit"Hugo Parente Lima2012-03-081-2/+2
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Fix bug#493 - "__eq__ and friends not implemented for QKeyEvent == QKeySequence"Hugo Parente Lima2012-03-081-2/+7
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Fix bug#569 - "QTableWidgetItem is missing binding of __lt__ to operator<"Hugo Parente Lima2012-03-081-15/+0
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix QTreeWidget parent rules.Renato Araujo Oliveira Filho2012-03-081-0/+20
| | | | | | | | | | QTreeWidget.clear() - remove all child ref from the current widget QTreeWidgetItem.parent() - use default policy for returned value Fix bug #547 Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Fix bug#549 - "QGraphicsWidget::getContentsMargins() and ↵Hugo Parente Lima2012-03-081-4/+42
| | | | | | | QGraphicsWidget::getWindowFrameMargins() not available" Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fixes bug #502.Marcelo Lira2012-03-081-0/+3
| | | | | | | | | | | | | The ownership of the editor returned by the Python override of QAbstractItemDelegate.createEditor(...) is now transferred to C++. A test was added to simulate the situation that triggers the bug, instead of relying on an example with a view, model and editable cells. See: http://bugs.openbossa.org/show_bug.cgi?id=502 Reviewed by Lauro Moura <lauro.neto@openbossa.org> Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Fix bug#481 - "mimeData() missing from QListWidget, QTreeWidget, QTableWidget"Hugo Parente Lima2012-03-081-3/+0
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* Fix bug#558 - "print attribute of a QWebFrame cannot be accessed normally"Hugo Parente Lima2012-03-081-0/+2
|
* Fix bug#512 - "QGridLayout::getItemPosition() is not available"Hugo Parente Lima2012-03-081-1/+23
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Fixes QImage constructor signature that used string buffer as image data source.Marcelo Lira2012-03-081-6/+24
| | | | | | | | | | | | The fixes uses the patch provided by Pieter Palmers on the bug #489 description[1]. A very simple test, to check the signature existence, was added. [1] http://bugs.openbossa.org/show_bug.cgi?id=489 Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Merge branch 'apichanges'Hugo Parente Lima2010-11-235-39/+39
|\ | | | | | | | | | | | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org> Conflicts: libpyside/pyside.cpp
| * Adapt to API changes in libshiboken.Hugo Parente Lima2010-11-235-39/+39
| |
* | Fixed layout ownership transfer.Renato Araujo Oliveira Filho2010-11-231-1/+1
| | | | | | | | | | | | | | Fixes bug #480 Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Marcelo Lira <marcelo.lira@openbossa.org>
* | Fix setContexMenu function ownership rule.Renato Araujo Oliveira Filho2010-11-201-1/+1
|/ | | | Fixes bug #441.
* Update to new Shiboken API (Renamed SbkObjectType)Renato Araujo Oliveira Filho2010-11-195-12/+12
| | | | | Reviewer: Luciano Wolf <luciano.wolf@openbossa.org> Hugo Parente Lima <hugo.pl@gmail.com>
* Updated to new shiboken API.Renato Araujo Oliveira Filho2010-11-193-19/+19
| | | | | Reviewer: Hugo Parente Lima <hugo.pl@gmail.com> Luciano Wolf <luciano.wolf@openbossa.org>
* Fix setLayout method that was causing segfault when itemAt wasn't implemented.Luciano Wolf2010-11-173-12/+19
| | | | | Reviewer: Hugo Parente <hugo.lima@openbossa.org> Renato Araújo <renato.filho@openbossa.org>
* Fix bug#436 - "Using a custom QValidator generates a segfault"Hugo Parente Lima2010-11-111-20/+37
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Luciano Wolf <luciano.wolf@openbossa.org>
* Changes needed to compile PySide with libshiboken v1.0Hugo Parente Lima2010-11-106-37/+34
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Created Singal/Slot/Property namespace for pure C structures.renatofilho2010-11-031-1/+1
| | | | | Reviewer: Marcelo Lira <marcelo.lira@openbossa.org> Lauro Neto <lauro.neto@openbossa.org>
* Fix bug#438 - "Can't find Python.h on OS X"Hugo Parente Lima2010-10-281-1/+1
| | | | | Reviewer: Renato Araújo <renato.filho@openbossa.org> Lauro Moura <lauro.neto@openbossa.org>
* Fix crashes caused by the newer changes on shiboken generator.Hugo Parente Lima2010-10-281-2/+2
|