forked from qt-creator/qt-creator
Adapt to adding of main feature to QmlProfilerTimelineModel
Change-Id: I54e2037106c8f0f5a0115cb415633acc8f0a879b Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
This commit is contained in:
@@ -26,12 +26,10 @@ namespace Internal {
|
||||
using namespace QmlProfiler;
|
||||
|
||||
InputEventsModel::InputEventsModel(QmlProfilerModelManager *manager, QObject *parent) :
|
||||
QmlProfilerTimelineModel(manager,
|
||||
tr(QmlProfilerModelManager::featureName(QmlDebug::ProfileInputEvents)),
|
||||
QmlDebug::Event, QmlDebug::MaximumRangeType, parent),
|
||||
m_keyTypeId(-1), m_mouseTypeId(-1)
|
||||
QmlProfilerTimelineModel(manager, QmlDebug::Event, QmlDebug::MaximumRangeType,
|
||||
QmlDebug::ProfileInputEvents, parent),
|
||||
m_keyTypeId(-1), m_mouseTypeId(-1)
|
||||
{
|
||||
announceFeatures(1 << QmlDebug::ProfileInputEvents);
|
||||
}
|
||||
|
||||
int InputEventsModel::typeId(int index) const
|
||||
|
@@ -28,12 +28,11 @@ namespace Internal {
|
||||
using namespace QmlProfiler;
|
||||
|
||||
MemoryUsageModel::MemoryUsageModel(QmlProfilerModelManager *manager, QObject *parent) :
|
||||
QmlProfilerTimelineModel(manager,
|
||||
tr(QmlProfilerModelManager::featureName(QmlDebug::ProfileMemory)),
|
||||
QmlDebug::MemoryAllocation, QmlDebug::MaximumRangeType, parent)
|
||||
QmlProfilerTimelineModel(manager, QmlDebug::MemoryAllocation, QmlDebug::MaximumRangeType,
|
||||
QmlDebug::ProfileMemory, parent)
|
||||
{
|
||||
m_maxSize = 1;
|
||||
announceFeatures((1 << QmlDebug::ProfileMemory) | QmlDebug::Constants::QML_JS_RANGE_FEATURES);
|
||||
announceFeatures((1ULL << mainFeature()) | QmlDebug::Constants::QML_JS_RANGE_FEATURES);
|
||||
}
|
||||
|
||||
int MemoryUsageModel::rowMaxValue(int rowNumber) const
|
||||
|
@@ -26,12 +26,10 @@ namespace Internal {
|
||||
using namespace QmlProfiler;
|
||||
|
||||
PixmapCacheModel::PixmapCacheModel(QmlProfilerModelManager *manager, QObject *parent) :
|
||||
QmlProfilerTimelineModel(manager,
|
||||
tr(QmlProfilerModelManager::featureName(QmlDebug::ProfilePixmapCache)),
|
||||
QmlDebug::PixmapCacheEvent, QmlDebug::MaximumRangeType, parent)
|
||||
QmlProfilerTimelineModel(manager, QmlDebug::PixmapCacheEvent, QmlDebug::MaximumRangeType,
|
||||
QmlDebug::ProfilePixmapCache, parent)
|
||||
{
|
||||
m_maxCacheSize = 1;
|
||||
announceFeatures(1 << QmlDebug::ProfilePixmapCache);
|
||||
}
|
||||
|
||||
int PixmapCacheModel::rowMaxValue(int rowNumber) const
|
||||
|
@@ -70,11 +70,9 @@ Q_STATIC_ASSERT(sizeof(StageLabels) ==
|
||||
|
||||
SceneGraphTimelineModel::SceneGraphTimelineModel(QmlProfilerModelManager *manager,
|
||||
QObject *parent) :
|
||||
QmlProfilerTimelineModel(manager,
|
||||
tr(QmlProfilerModelManager::featureName(QmlDebug::ProfileSceneGraph)),
|
||||
QmlDebug::SceneGraphFrame, QmlDebug::MaximumRangeType, parent)
|
||||
QmlProfilerTimelineModel(manager, QmlDebug::SceneGraphFrame, QmlDebug::MaximumRangeType,
|
||||
QmlDebug::ProfileSceneGraph, parent)
|
||||
{
|
||||
announceFeatures(1 << QmlDebug::ProfileSceneGraph);
|
||||
}
|
||||
|
||||
int SceneGraphTimelineModel::expandedRow(int index) const
|
||||
|
Reference in New Issue
Block a user