Skip to content
Snippets Groups Projects
Commit c55dbf2e authored by Ulf Hermann's avatar Ulf Hermann
Browse files

Adapt to unified data models in creator


Change-Id: I08991a79d5cc70bb374ecaa8d5b707962403cee7
Reviewed-by: default avatarKai Koehne <kai.koehne@digia.com>
parent b1bc443f
No related branches found
Tags qp-v3.1.0-beta1
No related merge requests found
...@@ -155,7 +155,7 @@ void PixmapCacheModel::PixmapCacheModelPrivate::addVP(QVariantList &l, QString l ...@@ -155,7 +155,7 @@ void PixmapCacheModel::PixmapCacheModelPrivate::addVP(QVariantList &l, QString l
{ {
if (time > 0) { if (time > 0) {
QVariantMap res; QVariantMap res;
res.insert(label, QVariant(QmlProfilerSimpleModel::formatTime(time))); res.insert(label, QVariant(QmlProfilerBaseModel::formatTime(time)));
l << res; l << res;
} }
} }
...@@ -207,7 +207,7 @@ void PixmapCacheModel::loadData() ...@@ -207,7 +207,7 @@ void PixmapCacheModel::loadData()
{ {
Q_D(PixmapCacheModel); Q_D(PixmapCacheModel);
clear(); clear();
QmlProfilerSimpleModel *simpleModel = d->modelManager->simpleModel(); QmlProfilerDataModel *simpleModel = d->modelManager->qmlModel();
if (simpleModel->isEmpty()) if (simpleModel->isEmpty())
return; return;
...@@ -216,7 +216,7 @@ void PixmapCacheModel::loadData() ...@@ -216,7 +216,7 @@ void PixmapCacheModel::loadData()
QVector < int > pixmapStartPoints; QVector < int > pixmapStartPoints;
QVector < int > pixmapCachePoints; QVector < int > pixmapCachePoints;
foreach (const QmlProfilerSimpleModel::QmlEventData &event, simpleModel->getEvents()) { foreach (const QmlProfilerDataModel::QmlEventData &event, simpleModel->getEvents()) {
if (!eventAccepted(event)) if (!eventAccepted(event))
continue; continue;
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include "qmlprofiler/qmlprofilertimelinemodelproxy.h" #include "qmlprofiler/qmlprofilertimelinemodelproxy.h"
#include "qmlprofiler/singlecategorytimelinemodel.h" #include "qmlprofiler/singlecategorytimelinemodel.h"
#include "qmlprofiler/qmlprofilersimplemodel.h" #include "qmlprofiler/qmlprofilerdatamodel.h"
#include <QStringList> #include <QStringList>
#include <QColor> #include <QColor>
......
...@@ -141,7 +141,7 @@ void SceneGraphTimelineModel::SceneGraphTimelineModelPrivate::addVP(QVariantList ...@@ -141,7 +141,7 @@ void SceneGraphTimelineModel::SceneGraphTimelineModelPrivate::addVP(QVariantList
{ {
if (time > 0) { if (time > 0) {
QVariantMap res; QVariantMap res;
res.insert(label, QVariant(QmlProfilerSimpleModel::formatTime(time))); res.insert(label, QVariant(QmlProfilerBaseModel::formatTime(time)));
l << res; l << res;
} }
} }
...@@ -195,14 +195,14 @@ void SceneGraphTimelineModel::loadData() ...@@ -195,14 +195,14 @@ void SceneGraphTimelineModel::loadData()
{ {
Q_D(SceneGraphTimelineModel); Q_D(SceneGraphTimelineModel);
clear(); clear();
QmlProfilerSimpleModel *simpleModel = d->modelManager->simpleModel(); QmlProfilerDataModel *simpleModel = d->modelManager->qmlModel();
if (simpleModel->isEmpty()) if (simpleModel->isEmpty())
return; return;
int lastRenderEvent = -1; int lastRenderEvent = -1;
// combine the data of several eventtypes into two rows // combine the data of several eventtypes into two rows
foreach (const QmlProfilerSimpleModel::QmlEventData &event, simpleModel->getEvents()) { foreach (const QmlProfilerDataModel::QmlEventData &event, simpleModel->getEvents()) {
if (!eventAccepted(event)) if (!eventAccepted(event))
continue; continue;
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#include "qmlprofiler/singlecategorytimelinemodel.h" #include "qmlprofiler/singlecategorytimelinemodel.h"
#include "qmlprofiler/qmlprofilermodelmanager.h" #include "qmlprofiler/qmlprofilermodelmanager.h"
#include "qmlprofiler/qmlprofilersimplemodel.h" #include "qmlprofiler/qmlprofilerdatamodel.h"
#include <QStringList> #include <QStringList>
#include <QColor> #include <QColor>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment