aboutsummaryrefslogtreecommitdiffstats
path: root/tests/qtgui
Commit message (Collapse)AuthorAgeFilesLines
* Adding test for multiple QObject inheritanceLauro Neto2010-04-091-0/+37
| | | | | Reviewer: Hugo Lima <hugo.lima@openbossa.org> Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
* Fix some issues with QVariant, including the QAbstractKinectScroller one.Hugo Lima2010-04-051-0/+27
|
* Extended QMatrix test with QPoint reverse multiplication.Marcelo Lira2010-03-311-1/+19
| | | | | Reviewed by Anderson Lizardo <anderson.lizardo@openbossa.org> Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Adding tests for QMenuBar.addAction.Lauro Neto2010-03-231-0/+44
| | | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Adds a hash function to QTreeWidgetItem objects.Marcelo Lira2010-03-231-0/+18
| | | | | | | A "hashable" unit test was added as well. Reviewed by Anderson Lizardo <anderson.lizardo@openbossa.org> Reviewed by Bruno Araújo <bruno.araujo@openbossa.org>
* Adding a more complex test for QPixmap, QColor, etcLauro Neto2010-03-221-0/+20
|
* Adding QVariant(QPixmap) testLauro Neto2010-03-221-0/+14
|
* Fix QDataStream <</>> QPixmap testLauro Neto2010-03-221-8/+24
|
* Fixes QPixmap.loadFromData method and extends QPixmap test cases.Marcelo Lira2010-03-192-1/+15
| | | | | Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Bruno Araújo <bruno.araujo@openbossa.org>
* Extends the QKeySequence unit test.Marcelo Lira2010-03-041-7/+29
| | | | | | | The test adds conversions from QString and Python string to a QKeySequence. Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Adding QColor == GlobalColor testLauro Neto2010-03-031-0/+7
| | | | | Reviewer: Bruno Araújo <bruno.araujo@openbossa.org> Reviewer: Anderson Lizardo <anderson.lizardo@openbossa.org>
* Adding test for QColor(QRgb)Lauro Neto2010-03-031-0/+14
|
* Fix bug #164 - __len__() function missing in QItemSelection.Luciano Wolf2010-02-261-0/+18
| | | | | | Reviewed by Renato Araujo <renato.filho@openbossa.org> Reviewed by Hugo Parente <hugo.lima@openbossa.org> Reviewed by Lauro Moura <lauro.neto@openbossa.org>
* Adds a QStyle test.Marcelo Lira2010-02-251-0/+32
| | | | | | | The new test creates and sets a QStyle for all widgets in an UI hierarchy. One of the widgets, a QFontComboBox, contains a QLineEdit originated in C++, calling setStyle in it must not steal the ownership of the QStyle or else things will break.
* Renamed QStyle test to StandardPixmap.Marcelo Lira2010-02-251-1/+2
|
* Adds unit tests for QGraphicsProxyWidget and for Python type derived from it.Marcelo Lira2010-02-242-0/+62
| | | | Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
* Add tests/qtgui/qtextedit_test.pyAnderson Lizardo2010-02-231-0/+32
|
* Added QPixmap(QVariant).Hugo Lima2010-02-221-2/+8
| | | | Reviewed by Renato Araújo <renato.filho@openbossa.org>
* Adds a simple unit test for QtGui.QPen instantiation.Marcelo Lira2010-02-201-0/+20
| | | | Reviewed by Lauro Moura <lauro.neto@openbossa.org>
* Replace reserved words at qgraphicsitem_isblocked_test.pyBruno dos Santos de Araujo2010-02-191-2/+2
|
* Use assert() functions in the unit tests for the sake of standardizationBruno dos Santos de Araujo2010-02-192-8/+11
|
* Add unittest for QInputDialog.getXXX() methodsBruno dos Santos de Araujo2010-02-191-0/+25
|
* Add unit test for QGraphicsItem.isBlockedByModalPanel()Bruno dos Santos de Araujo2010-02-191-0/+28
|
* Add unittest for QFontDialogBruno dos Santos de Araujo2010-02-191-0/+22
|
* Adding tests for QFontMetricsLauro Neto2010-02-191-0/+189
| | | | | | Testing in C++ showed no changes in the return value when changing the last two arguments (tabStops and tabArray), so I chose only to check the return value and error checking.
* Add tests/qtgui/qradialgradient_test.pyAnderson Lizardo2010-02-181-0/+29
| | | | | | | Test various combinations of implicit qreal <-> int conversions and QPointF handling. Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Adding QPainter.drawText with QRectF testLauro Neto2010-02-181-3/+13
|
* Improve qpixmap test to support qstring and qsize arguments.Luciano Wolf2010-02-181-2/+8
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Fixes QtGui type system to use 'reference-count' tag setModel methods.Marcelo Lira2010-02-172-37/+75
| | | | | | | | | | | | Various setModel methods where changed from the incorrect parenting tag to the proper 'reference-count' tag. The return value of QAbstractItemView.model() was defined to have 'default' ownership, otherwise the Qt heuristics from the generator would set the returned pointer as a child belonging to the QAbstractItemView instance. The test case for this was expanded and changed to a more meaningful name. Reviewed by Hugo Parente <hugo.lima@openbossa.org>
* Adding qcolor.get* testsLauro Neto2010-02-121-0/+49
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Fixed QMatrix4x4 inject code.Renato Filho2010-02-111-0/+31
| | | | | | | Now QMatrix4x4 constructor supports any PySequence object. Created unit test for QMatrix4x4 injectcode. Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Removes a test which creates an instance of an abstract class.Hugo Lima2010-02-011-4/+0
|
* QKeySequence is a class from QtGui, so this test has been moved to QtGui ↵Hugo Lima2010-01-181-0/+18
| | | | | | tests directory. Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* Tests synchronized with the boost python PySide.Hugo Lima2009-12-154-3/+41
|
* Added all original pyside unit tests to the shiboken version.Hugo Lima2009-09-2139-0/+1413