2014-12-09 18:27:56 +01:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2014-12-09 18:27:56 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-15 14:58:39 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2014-12-09 18:27:56 +01:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2014-12-09 18:27:56 +01:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "timelineoverviewrenderer_p.h"
|
|
|
|
|
#include "timelinerenderstate.h"
|
|
|
|
|
|
|
|
|
|
namespace Timeline {
|
|
|
|
|
|
|
|
|
|
TimelineOverviewRenderer::TimelineOverviewRenderer(QQuickItem *parent) :
|
|
|
|
|
TimelineAbstractRenderer(*(new TimelineOverviewRendererPrivate), parent)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-14 11:14:28 +02:00
|
|
|
TimelineOverviewRenderer::TimelineOverviewRendererPrivate::TimelineOverviewRendererPrivate() :
|
2019-07-31 17:21:41 +02:00
|
|
|
renderState(nullptr)
|
2014-12-09 18:27:56 +01:00
|
|
|
{
|
2015-04-14 11:14:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TimelineOverviewRenderer::TimelineOverviewRendererPrivate::~TimelineOverviewRendererPrivate()
|
|
|
|
|
{
|
|
|
|
|
delete renderState;
|
2014-12-09 18:27:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QSGNode *TimelineOverviewRenderer::updatePaintNode(QSGNode *oldNode,
|
|
|
|
|
UpdatePaintNodeData *updatePaintNodeData)
|
|
|
|
|
{
|
|
|
|
|
Q_D(TimelineOverviewRenderer);
|
|
|
|
|
|
2015-04-13 16:37:09 +02:00
|
|
|
if (!d->model || d->model->isEmpty() || !d->zoomer || d->zoomer->traceDuration() <= 0) {
|
|
|
|
|
delete oldNode;
|
2019-07-31 17:21:41 +02:00
|
|
|
return nullptr;
|
2015-04-13 16:37:09 +02:00
|
|
|
}
|
|
|
|
|
|
2014-12-09 18:27:56 +01:00
|
|
|
if (d->modelDirty) {
|
|
|
|
|
delete d->renderState;
|
2019-07-31 17:21:41 +02:00
|
|
|
d->renderState = nullptr;
|
2014-12-09 18:27:56 +01:00
|
|
|
}
|
|
|
|
|
|
2019-07-31 17:21:41 +02:00
|
|
|
if (d->renderState == nullptr) {
|
2014-12-09 18:27:56 +01:00
|
|
|
d->renderState = new TimelineRenderState(d->zoomer->traceStart(), d->zoomer->traceEnd(),
|
|
|
|
|
1.0, d->renderPasses.size());
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-11 13:31:58 +01:00
|
|
|
float xSpacing = static_cast<float>(width() / d->zoomer->traceDuration());
|
|
|
|
|
float ySpacing = static_cast<float>(
|
|
|
|
|
height() / (d->model->collapsedRowCount() * TimelineModel::defaultRowHeight()));
|
2014-12-09 18:27:56 +01:00
|
|
|
|
|
|
|
|
for (int i = 0; i < d->renderPasses.length(); ++i) {
|
|
|
|
|
d->renderState->setPassState(i, d->renderPasses[i]->update(this, d->renderState,
|
|
|
|
|
d->renderState->passState(i),
|
|
|
|
|
0, d->model->count(), true,
|
|
|
|
|
xSpacing));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (d->renderState->isEmpty())
|
|
|
|
|
d->renderState->assembleNodeTree(d->model, d->model->height(), 0);
|
|
|
|
|
|
2019-07-31 17:21:41 +02:00
|
|
|
TimelineAbstractRenderer::updatePaintNode(nullptr, updatePaintNodeData);
|
2014-12-09 18:27:56 +01:00
|
|
|
|
|
|
|
|
QMatrix4x4 matrix;
|
|
|
|
|
matrix.scale(xSpacing, ySpacing, 1);
|
|
|
|
|
return d->renderState->finalize(oldNode, false, matrix);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|