2011-10-11 17:52:39 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2011-10-11 17:52:39 +02:00
|
|
|
**
|
2011-11-11 09:53:04 +01:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2011-10-11 17:52:39 +02:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
|
|
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
|
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
|
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
|
|
|
|
|
** Please review the following information to ensure the GNU Lesser General
|
|
|
|
|
** Public License version 2.1 requirements will be met:
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-11-11 09:53:04 +01:00
|
|
|
** Nokia at qt-info@nokia.com.
|
2011-10-11 17:52:39 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
import QtQuick 1.0
|
|
|
|
|
import Monitor 1.0
|
|
|
|
|
import "Overview.js" as Plotter
|
|
|
|
|
|
2011-10-28 16:22:45 +02:00
|
|
|
Canvas2D {
|
2011-10-11 17:52:39 +02:00
|
|
|
id: canvas
|
|
|
|
|
|
|
|
|
|
// ***** properties
|
|
|
|
|
height: 50
|
|
|
|
|
property bool dataAvailable: false
|
|
|
|
|
property variant startTime : 0
|
|
|
|
|
property variant endTime : 0
|
|
|
|
|
|
|
|
|
|
// ***** functions
|
|
|
|
|
function clearDisplay()
|
|
|
|
|
{
|
|
|
|
|
dataAvailable = false;
|
2011-10-28 16:22:45 +02:00
|
|
|
requestRedraw();
|
2011-10-11 17:52:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function updateRange() {
|
2011-11-02 16:57:31 +01:00
|
|
|
var newStartTime = Math.round(rangeMover.x * qmlEventList.traceDuration() / width) + qmlEventList.traceStartTime();
|
|
|
|
|
var newEndTime = Math.round((rangeMover.x + rangeMover.width) * qmlEventList.traceDuration() / width) + qmlEventList.traceStartTime();
|
2011-10-11 17:52:39 +02:00
|
|
|
if (startTime !== newStartTime || endTime !== newEndTime) {
|
|
|
|
|
zoomControl.setRange(newStartTime, newEndTime);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ***** connections to external objects
|
|
|
|
|
Connections {
|
|
|
|
|
target: zoomControl
|
|
|
|
|
onRangeChanged: {
|
|
|
|
|
if (qmlEventList) {
|
|
|
|
|
startTime = zoomControl.startTime();
|
|
|
|
|
endTime = zoomControl.endTime();
|
2011-11-02 16:57:31 +01:00
|
|
|
var newRangeX = (startTime - qmlEventList.traceStartTime()) * width / qmlEventList.traceDuration();
|
2011-10-11 17:52:39 +02:00
|
|
|
if (rangeMover.x !== newRangeX)
|
|
|
|
|
rangeMover.x = newRangeX;
|
2011-11-02 16:57:31 +01:00
|
|
|
var newWidth = (endTime-startTime) * width / qmlEventList.traceDuration();
|
2011-10-11 17:52:39 +02:00
|
|
|
if (rangeMover.width !== newWidth)
|
|
|
|
|
rangeMover.width = newWidth;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Connections {
|
|
|
|
|
target: qmlEventList
|
2012-02-13 15:26:57 +01:00
|
|
|
onStateChanged: {
|
|
|
|
|
// State is "done"
|
|
|
|
|
if (qmlEventList.getCurrentStateFromQml() == 3) {
|
2011-10-11 17:52:39 +02:00
|
|
|
dataAvailable = true;
|
2011-10-28 16:22:45 +02:00
|
|
|
requestRedraw();
|
2011-10-11 17:52:39 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ***** slots
|
|
|
|
|
onDrawRegion: {
|
2011-12-21 13:14:12 +01:00
|
|
|
Plotter.qmlEventList = qmlEventList;
|
|
|
|
|
if (dataAvailable) {
|
2011-10-11 17:52:39 +02:00
|
|
|
Plotter.plot(canvas, ctxt, region);
|
2011-12-21 13:14:12 +01:00
|
|
|
} else {
|
2011-10-11 17:52:39 +02:00
|
|
|
Plotter.drawGraph(canvas, ctxt, region) //just draw the background
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ***** child items
|
|
|
|
|
MouseArea {
|
|
|
|
|
anchors.fill: canvas
|
|
|
|
|
function jumpTo(posX) {
|
|
|
|
|
var newX = posX - rangeMover.width/2;
|
|
|
|
|
if (newX < 0)
|
|
|
|
|
newX = 0;
|
|
|
|
|
if (newX + rangeMover.width > canvas.width)
|
|
|
|
|
newX = canvas.width - rangeMover.width;
|
|
|
|
|
rangeMover.x = newX;
|
|
|
|
|
updateRange();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onPressed: {
|
|
|
|
|
jumpTo(mouse.x);
|
|
|
|
|
}
|
|
|
|
|
onMousePositionChanged: {
|
|
|
|
|
jumpTo(mouse.x);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RangeMover {
|
|
|
|
|
id: rangeMover
|
|
|
|
|
visible: dataAvailable
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
|
height: 1
|
|
|
|
|
width: parent.width
|
2011-11-16 16:08:05 +01:00
|
|
|
color: "#858585"
|
2011-10-11 17:52:39 +02:00
|
|
|
}
|
|
|
|
|
}
|