summaryrefslogtreecommitdiffstats
path: root/tests/auto/cpptest/q3dbars-modelproxy/tst_proxy.cpp
diff options
context:
space:
mode:
authorTomi Korpipaa <tomi.korpipaa@qt.io>2020-12-10 07:12:10 +0200
committerTomi Korpipaa <tomi.korpipaa@qt.io>2020-12-14 06:57:52 +0200
commit471a6cbd07fddd3f392204d532ac8d3639c7dc7f (patch)
treecd4aa8b6cda0bb52e851d7ced1a3a93b8a8fa622 /tests/auto/cpptest/q3dbars-modelproxy/tst_proxy.cpp
parent058eab02a5c1d8d8de8917d473eb39aa18a1c888 (diff)
Migrate C++ API rendering path to Qt 6
Replace QRegExp with QRegularExpression and change usage accordingly. Replace shared QOpenGLFunctions_2_1 with our own copy. Fix header include changes. Task-number: QTBUG-89297 Change-Id: I6d3cf36ba9303ef62db3220816ea35f51eb26a3c Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
Diffstat (limited to 'tests/auto/cpptest/q3dbars-modelproxy/tst_proxy.cpp')
-rw-r--r--tests/auto/cpptest/q3dbars-modelproxy/tst_proxy.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/tests/auto/cpptest/q3dbars-modelproxy/tst_proxy.cpp b/tests/auto/cpptest/q3dbars-modelproxy/tst_proxy.cpp
index dfeee506..18cd746e 100644
--- a/tests/auto/cpptest/q3dbars-modelproxy/tst_proxy.cpp
+++ b/tests/auto/cpptest/q3dbars-modelproxy/tst_proxy.cpp
@@ -149,20 +149,20 @@ void tst_proxy::initialProperties()
QCOMPARE(m_proxy->autoRowCategories(), true);
QCOMPARE(m_proxy->columnCategories(), QStringList());
QCOMPARE(m_proxy->columnRole(), QString());
- QCOMPARE(m_proxy->columnRolePattern(), QRegExp());
+ QCOMPARE(m_proxy->columnRolePattern(), QRegularExpression());
QCOMPARE(m_proxy->columnRoleReplace(), QString());
QVERIFY(!m_proxy->itemModel());
QCOMPARE(m_proxy->multiMatchBehavior(), QItemModelBarDataProxy::MMBLast);
QCOMPARE(m_proxy->rotationRole(), QString());
- QCOMPARE(m_proxy->rotationRolePattern(), QRegExp());
+ QCOMPARE(m_proxy->rotationRolePattern(), QRegularExpression());
QCOMPARE(m_proxy->rotationRoleReplace(), QString());
QCOMPARE(m_proxy->rowCategories(), QStringList());
QCOMPARE(m_proxy->rowRole(), QString());
- QCOMPARE(m_proxy->rowRolePattern(), QRegExp());
+ QCOMPARE(m_proxy->rowRolePattern(), QRegularExpression());
QCOMPARE(m_proxy->rowRoleReplace(), QString());
QCOMPARE(m_proxy->useModelCategories(), false);
QCOMPARE(m_proxy->valueRole(), QString());
- QCOMPARE(m_proxy->valueRolePattern(), QRegExp());
+ QCOMPARE(m_proxy->valueRolePattern(), QRegularExpression());
QCOMPARE(m_proxy->valueRoleReplace(), QString());
QCOMPARE(m_proxy->columnLabels().count(), 0);
@@ -183,40 +183,40 @@ void tst_proxy::initializeProperties()
m_proxy->setAutoRowCategories(false);
m_proxy->setColumnCategories(QStringList() << "col1" << "col2");
m_proxy->setColumnRole("column");
- m_proxy->setColumnRolePattern(QRegExp("/^.*-(\\d\\d)$/"));
+ m_proxy->setColumnRolePattern(QRegularExpression("/^.*-(\\d\\d)$/"));
m_proxy->setColumnRoleReplace("\\\\1");
m_proxy->setItemModel(table.model());
m_proxy->setMultiMatchBehavior(QItemModelBarDataProxy::MMBAverage);
m_proxy->setRotationRole("rotation");
- m_proxy->setRotationRolePattern(QRegExp("/-/"));
+ m_proxy->setRotationRolePattern(QRegularExpression("/-/"));
m_proxy->setRotationRoleReplace("\\\\1");
m_proxy->setRowCategories(QStringList() << "row1" << "row2");
m_proxy->setRowRole("row");
- m_proxy->setRowRolePattern(QRegExp("/^(\\d\\d\\d\\d).*$/"));
+ m_proxy->setRowRolePattern(QRegularExpression("/^(\\d\\d\\d\\d).*$/"));
m_proxy->setRowRoleReplace("\\\\1");
m_proxy->setUseModelCategories(true);
m_proxy->setValueRole("value");
- m_proxy->setValueRolePattern(QRegExp("/-/"));
+ m_proxy->setValueRolePattern(QRegularExpression("/-/"));
m_proxy->setValueRoleReplace("\\\\1");
QCOMPARE(m_proxy->autoColumnCategories(), false);
QCOMPARE(m_proxy->autoRowCategories(), false);
QCOMPARE(m_proxy->columnCategories().count(), 2);
QCOMPARE(m_proxy->columnRole(), QString("column"));
- QCOMPARE(m_proxy->columnRolePattern(), QRegExp("/^.*-(\\d\\d)$/"));
+ QCOMPARE(m_proxy->columnRolePattern(), QRegularExpression("/^.*-(\\d\\d)$/"));
QCOMPARE(m_proxy->columnRoleReplace(), QString("\\\\1"));
QVERIFY(m_proxy->itemModel());
QCOMPARE(m_proxy->multiMatchBehavior(), QItemModelBarDataProxy::MMBAverage);
QCOMPARE(m_proxy->rotationRole(), QString("rotation"));
- QCOMPARE(m_proxy->rotationRolePattern(), QRegExp("/-/"));
+ QCOMPARE(m_proxy->rotationRolePattern(), QRegularExpression("/-/"));
QCOMPARE(m_proxy->rotationRoleReplace(), QString("\\\\1"));
QCOMPARE(m_proxy->rowCategories().count(), 2);
QCOMPARE(m_proxy->rowRole(), QString("row"));
- QCOMPARE(m_proxy->rowRolePattern(), QRegExp("/^(\\d\\d\\d\\d).*$/"));
+ QCOMPARE(m_proxy->rowRolePattern(), QRegularExpression("/^(\\d\\d\\d\\d).*$/"));
QCOMPARE(m_proxy->rowRoleReplace(), QString("\\\\1"));
QCOMPARE(m_proxy->useModelCategories(), true);
QCOMPARE(m_proxy->valueRole(), QString("value"));
- QCOMPARE(m_proxy->valueRolePattern(), QRegExp("/-/"));
+ QCOMPARE(m_proxy->valueRolePattern(), QRegularExpression("/-/"));
QCOMPARE(m_proxy->valueRoleReplace(), QString("\\\\1"));
}
@@ -247,11 +247,11 @@ void tst_proxy::multiMatch()
m_proxy->setItemModel(table.model());
m_proxy->setRowRole(table.model()->roleNames().value(Qt::DisplayRole));
m_proxy->setColumnRole(table.model()->roleNames().value(Qt::DisplayRole));
- m_proxy->setRowRolePattern(QRegExp(QStringLiteral("^(\\d*)\\/(\\d*)\\/\\d*[\\.\\,]?\\d*\\/\\d*[\\.\\,]?\\d*$")));
+ m_proxy->setRowRolePattern(QRegularExpression(QStringLiteral("^(\\d*)\\/(\\d*)\\/\\d*[\\.\\,]?\\d*\\/\\d*[\\.\\,]?\\d*$")));
m_proxy->setRowRoleReplace(QStringLiteral("\\2"));
- m_proxy->setValueRolePattern(QRegExp(QStringLiteral("^\\d*(\\/)(\\d*)\\/(\\d*[\\.\\,]?\\d*)\\/\\d*[\\.\\,]?\\d*$")));
+ m_proxy->setValueRolePattern(QRegularExpression(QStringLiteral("^\\d*(\\/)(\\d*)\\/(\\d*[\\.\\,]?\\d*)\\/\\d*[\\.\\,]?\\d*$")));
m_proxy->setValueRoleReplace(QStringLiteral("\\3"));
- m_proxy->setColumnRolePattern(QRegExp(QStringLiteral("^(\\d*)(\\/)(\\d*)\\/\\d*[\\.\\,]?\\d*\\/\\d*[\\.\\,]?\\d*$")));
+ m_proxy->setColumnRolePattern(QRegularExpression(QStringLiteral("^(\\d*)(\\/)(\\d*)\\/\\d*[\\.\\,]?\\d*\\/\\d*[\\.\\,]?\\d*$")));
m_proxy->setColumnRoleReplace(QStringLiteral("\\1"));
QBar3DSeries *series = new QBar3DSeries(m_proxy);