This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import QtQuick 2.15 | |
import QtQuick.Controls 2.15 | |
Item { | |
id: workingScreen | |
property QtObject stateObject | |
property QtObject viewModel | |
visible: stateObject.active |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Window { | |
id: root | |
width: 640 | |
height: 480 | |
visible: true | |
title: qsTr("Abstract Baking Oven") | |
signal doTurnOn | |
signal doStandby |