diff options
author | Morten Johan Sørvig <morten.sorvig@nokia.com> | 2010-03-10 11:41:05 (GMT) |
---|---|---|
committer | Morten Johan Sørvig <morten.sorvig@nokia.com> | 2010-03-10 13:08:27 (GMT) |
commit | ed719fefdb4e6fa3fd4c296c1042dfa0454169c6 (patch) | |
tree | 31044b0c47a0b5c2be2efdc28b4706e128f0bb70 /tests/manual/repaint/tableview | |
parent | 5fa84eeac031ef53babfa8ca616ca69cc1f2c514 (diff) | |
download | Qt-ed719fefdb4e6fa3fd4c296c1042dfa0454169c6.zip Qt-ed719fefdb4e6fa3fd4c296c1042dfa0454169c6.tar.gz Qt-ed719fefdb4e6fa3fd4c296c1042dfa0454169c6.tar.bz2 |
Import static contents tests from old manualtests
Diffstat (limited to 'tests/manual/repaint/tableview')
-rw-r--r-- | tests/manual/repaint/tableview/main.cpp | 36 | ||||
-rw-r--r-- | tests/manual/repaint/tableview/tableview.pro | 8 |
2 files changed, 44 insertions, 0 deletions
diff --git a/tests/manual/repaint/tableview/main.cpp b/tests/manual/repaint/tableview/main.cpp new file mode 100644 index 0000000..7d72cc2 --- /dev/null +++ b/tests/manual/repaint/tableview/main.cpp @@ -0,0 +1,36 @@ +#include <QtGui> +#include "../shared/shared.h" + +class CellWidget : public QWidget +{ +public: + CellWidget (QWidget *parent = 0) : QWidget(parent) { } + void paintEvent(QPaintEvent * event) + { + static int value = 200; + value = (value + 41) % 205 + 50; + QPainter p(this); + p.fillRect(event->rect(), QColor::fromHsv(100, 255, value)); + } +}; + +int main(int argc, char **argv) +{ + QApplication app(argc, argv); + QTableWidget tableWidget; +// tableWidget.setAttribute(Qt::WA_StaticContents); + tableWidget.viewport()->setAttribute(Qt::WA_StaticContents); + tableWidget.setRowCount(15); + tableWidget.setColumnCount(4); + for (int row = 0; row < 15; ++row) + for (int col = 0; col < 4; ++col) +// tableWidget.setCellWidget(row, col, new StaticWidget()); + tableWidget.setCellWidget(row, col, new CellWidget()); + tableWidget.resize(400, 600); + tableWidget.show(); + + + return app.exec(); +} + + diff --git a/tests/manual/repaint/tableview/tableview.pro b/tests/manual/repaint/tableview/tableview.pro new file mode 100644 index 0000000..4fccf4a --- /dev/null +++ b/tests/manual/repaint/tableview/tableview.pro @@ -0,0 +1,8 @@ +HEADERS +=../shared/shared.h +TEMPLATE = app +TARGET = +DEPENDPATH += . +INCLUDEPATH += . + +# Input +SOURCES += main.cpp |