summaryrefslogtreecommitdiffstats
path: root/demos/qmloscilloscope/qml/qmloscilloscope/ScopeView.qml
blob: a84708fa9ee5bab2ce720630e5f3da68da169e0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/****************************************************************************
**
** Copyright (C) 2012 Digia Plc
** All rights reserved.
** For any questions to Digia, please use contact form at http://qt.digia.com
**
** This file is part of the Qt Commercial Charts Add-on.
**
** $QT_BEGIN_LICENSE$
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** contact form at http://qt.digia.com
** $QT_END_LICENSE$
**
****************************************************************************/

import QtQuick 1.0
import QtCommercial.Chart 1.0

ChartView {
    id: chartView
    animationOptions: ChartView.NoAnimation

    ValuesAxis {
        id: axisY
        min: -1
        max: 3
    }

    ValuesAxis {
        id: axisX
        min: 0
        max: 1000
    }

    LineSeries {
        id: lineSeries1
        name: "signal 1"
    }
    LineSeries {
        id: lineSeries2
        name: "signal 2"
    }

    Component.onCompleted: {
        chartView.setAxisX(axisX, lineSeries1);
        chartView.setAxisY(axisY, lineSeries1);
        chartView.setAxisX(axisX, lineSeries2);
        chartView.setAxisY(axisY, lineSeries2);
    }

    Timer {
        id: refreshTimer
        interval: 1 / 60 * 1000 // 60 Hz
        running: true
        repeat: true
        onTriggered: {
            dataSource.update(chartView.series(0));
            dataSource.update(chartView.series(1));
        }
    }

    function changeSeriesType(type) {
        chartView.series(1).destroy();
        chartView.series(0).destroy();
        var seriesCount = 2;
        for (var i = 0; i < seriesCount; i++) {
            var series;
            if (type == "line") {
                series = scopeView.createSeries(ChartView.SeriesTypeLine, "signal " + (i + 1));
            } else if (type == "spline") {
                series = chartView.createSeries(ChartView.SeriesTypeSpline, "signal " + (i + 1));
            } else {
                series = chartView.createSeries(ChartView.SeriesTypeScatter, "signal " + (i + 1));
                series.markerSize = 3;
                series.borderColor = "transparent";
            }
            chartView.setAxisX(axisX, series);
            chartView.setAxisY(axisY, series);
        }
    }

    function setAnimations(enabled) {
        if (enabled)
            scopeView.animationOptions = ChartView.SeriesAnimations;
        else
            scopeView.animationOptions = ChartView.NoAnimation;
    }

    function changeRefreshRate(rate) {
        console.log("rate " + rate);
        refreshTimer.interval = 1 / Number(rate) * 1000;
    }
}