summaryrefslogtreecommitdiff
path: root/src/components/qt_hmi/References/Work/bananasnacks/qml/Bananas/Sections/Navigation/video_moving_map.qml
blob: 2f6b798d18f998de25974cf5df6b031bf069c572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick 2.0
import "../../Components"
import QtMultimedia 5.0

Item {
    Video {
        anchors.fill: parent
        source: "rtsp://172.20.10.7:8086"
        autoPlay: true
    }

    Button {
        text: "Go"
        anchors.top: parent.top
        anchors.topMargin: 3
        anchors.right: parent.right
        anchors.rightMargin: 20
        onPress: section.state = 'menu'
    }
}