ApplicationICWindow QML Type

The application instrument cluster window of a Neptune 3 application. More...

Since: Qt 5.12
Inherits:

NeptuneWindow

Detailed Description

The application instrument cluster window of a Neptune 3 application is displayed on the Instrument Cluster. The content of an application IC window will be rendered behind the gauges. ApplicationICWindow is used by an application that wants to share content between the center console and the instrument cluster.

See Neptune 3 UI App Development for best practices on how to use the APIs.

Example Usage

The following example uses ApplicationICWindow:

import QtQuick 2.10
import application.windows 1.0

QtObject {
    property var mainWindow: ApplicationCCWindow {
       id: mainWindow
       Background {
        anchors.fill: parent
       }

       Content {
           x: root.exposedRect.x
           y: root.exposedRect.x
           width: root.exposedRect.width
           height: root.exposedRect.height
       }
    }

    property var applicationICWindow: ApplicationICWindow {
       id: applicationICWindow
       Background {
        anchors.fill: parent
       }
    }
}

© 2019 Luxoft Sweden AB. Documentation contributions included herein are the copyrights of their respective owners.
The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation.
Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.