qtdoc/examples/demos/coffee/ChoosingCoffeeForm.ui.qml

73 lines
2.0 KiB
QML
Raw Normal View History

// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
import QtQuick.Layouts
Item {
// Height, width and any other size related properties containing odd looking float or other dividers
// that do not seem to have any logical origin are just arbitrary and based on original design
// and/or personal preference on what looks nice.
id: root
property alias cappuccinoButton: cappuccino.button
property alias latteButton: latte.button
property alias espressoButton: espresso.button
property alias macchiatoButton: macchiato.button
property alias cards: cards
property alias cappuccino: cappuccino
property alias macchiato: macchiato
property alias espresso: espresso
property alias latte: latte
states: [
State {
name: "portrait"
PropertyChanges {
target: cards
flow: GridLayout.TopToBottom
rows: 2
}
},
State {
name: "landscape"
PropertyChanges {
target: cards
flow: GridLayout.LeftToRight
columns: 4
}
}
]
//! [Coffees]
GridLayout {
id: cards
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: parent.top
rowSpacing: 20
columnSpacing: 20
CoffeeCard {
id: cappuccino
coffeeName: "Cappuccino"
ingredients: "Milk, Espresso, Foam"
time: 2
}
CoffeeCard {
id: latte
coffeeName: "Latte"
ingredients: "Coffee, Foam"
time: 3
}
CoffeeCard {
id: espresso
coffeeName: "Espresso"
ingredients: "Milk, Espresso"
time: 2
}
CoffeeCard {
id: macchiato
coffeeName: "Macchiato"
ingredients: "Milk foam, Espresso"
time: 4
}
}
//! [Coffees]
}