• File: list.qml
  • Full Path: /home/insbudnet/domains/insbud.net/public_html/download/software/qml/olkusz_mila/qml/pl/screens/user/list.qml
  • File size: 843 bytes
  • MIME-type: text/plain
  • Charset: utf-8
 
Open Back
import QtQuick 2.3
import "../../commons/"

Core {
    height: 480
    width: 320

    LauncherList {
        id: ll
        anchors.fill: parent
        Component.onCompleted: {
            addNewLauncherListItem("Temperatura", "Zadana temperatura w pokoju", Qt.resolvedUrl("temperature.qml"))
            addNewLauncherListItem("Wietrzenie", "Czasowe przewietrzanie", Qt.resolvedUrl("ventilation.qml"))
            addNewLauncherListItem("Pogoda", "Prognoza pogody", Qt.resolvedUrl("weather.qml"))
            addNewLauncherListItem("Przegląd", "Przegląd parametrów", Qt.resolvedUrl("parameters_list.qml"))
            addNewLauncherListItem("Nastawy", "Nastawy dodatkowe", Qt.resolvedUrl("more_settings.qml"))
            addNewLauncherListItem("Informacje", "Informacje na temat systemu", Qt.resolvedUrl("about.qml"))
        }
    }
}