75 lines
1.9 KiB
QML
75 lines
1.9 KiB
QML
pragma ComponentBehavior: Bound
|
|
|
|
import ".."
|
|
import "../components"
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import Caelestia.Config
|
|
import qs.components
|
|
import qs.components.controls
|
|
import qs.components.effects
|
|
import qs.services
|
|
|
|
ColumnLayout {
|
|
id: root
|
|
|
|
required property Session session
|
|
|
|
spacing: Tokens.spacing.medium
|
|
|
|
SettingsHeader {
|
|
icon: "cable"
|
|
title: qsTr("Ethernet settings")
|
|
}
|
|
|
|
StyledText {
|
|
Layout.topMargin: Tokens.spacing.largeIncreased
|
|
text: qsTr("Ethernet devices")
|
|
font: Tokens.font.body.builders.large.weight(Font.Medium).build()
|
|
}
|
|
|
|
StyledText {
|
|
text: qsTr("Available ethernet devices")
|
|
color: Colours.palette.m3outline
|
|
}
|
|
|
|
StyledRect {
|
|
Layout.fillWidth: true
|
|
implicitHeight: ethernetInfo.implicitHeight + Tokens.padding.extraLargeIncreased
|
|
|
|
radius: Tokens.rounding.large
|
|
color: Colours.tPalette.m3surfaceContainer
|
|
|
|
ColumnLayout {
|
|
id: ethernetInfo
|
|
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.margins: Tokens.padding.large
|
|
|
|
spacing: Tokens.spacing.extraSmall
|
|
|
|
StyledText {
|
|
text: qsTr("Total devices")
|
|
}
|
|
|
|
StyledText {
|
|
text: qsTr("%1").arg(Nmcli.ethernetDevices.length)
|
|
color: Colours.palette.m3outline
|
|
font: Tokens.font.body.small
|
|
}
|
|
|
|
StyledText {
|
|
Layout.topMargin: Tokens.spacing.medium
|
|
text: qsTr("Connected devices")
|
|
}
|
|
|
|
StyledText {
|
|
text: qsTr("%1").arg(Nmcli.ethernetDevices.filter(d => d.connected).length)
|
|
color: Colours.palette.m3outline
|
|
font: Tokens.font.body.small
|
|
}
|
|
}
|
|
}
|
|
}
|