2023-09-01 10:48:19 +00:00
|
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
2022-06-03 11:26:02 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2020-12-01 12:57:32 +00:00
|
|
|
import QtQuick
|
2024-08-21 10:54:05 +00:00
|
|
|
import QtQuick.Controls.Basic
|
2023-11-24 13:31:37 +00:00
|
|
|
//! [Set application window size]
|
2017-07-04 17:20:08 +00:00
|
|
|
ApplicationWindow {
|
|
|
|
visible: true
|
2024-03-25 13:30:31 +00:00
|
|
|
width: 1000
|
|
|
|
height: 600
|
2017-07-04 17:20:08 +00:00
|
|
|
title: qsTr("Coffee")
|
2023-11-24 13:31:37 +00:00
|
|
|
//! [Set application window size]
|
2017-07-04 17:20:08 +00:00
|
|
|
ApplicationFlow {
|
2023-09-01 10:48:19 +00:00
|
|
|
width: parent.width
|
|
|
|
height: parent.height
|
2017-07-04 17:20:08 +00:00
|
|
|
}
|
2025-07-16 14:29:39 +00:00
|
|
|
|
2025-07-16 14:50:54 +00:00
|
|
|
Binding {
|
|
|
|
target: Config
|
|
|
|
property: "mode"
|
|
|
|
value: (Screen.height > Screen.width) ? "portrait" : "landscape"
|
|
|
|
}
|
|
|
|
}
|