31 lines
1.2 KiB
QML
31 lines
1.2 KiB
QML
import QtQuick
|
|
import qs.Commons
|
|
|
|
// Small-caps-style label that introduces a panel section ("DNS provider",
|
|
// "Wi-Fi networks", "Output device", "Paired devices"). Sits between a
|
|
// PanelSeparator and the content rows.
|
|
Text {
|
|
id: root
|
|
|
|
property color foreground: Color.foreground
|
|
property string fontFamily: Style.font.family
|
|
property real fontSize: Style.font.caption
|
|
|
|
// Callers bind `text` from outside this file, so the default has to be set
|
|
// here. AutoText would let a section title that happens to carry a device or
|
|
// network name promote itself to rich text.
|
|
textFormat: Text.PlainText
|
|
color: Qt.darker(foreground, 1.4)
|
|
font.family: fontFamily
|
|
font.pixelSize: fontSize
|
|
font.bold: true
|
|
|
|
// Glyphs can paint above the box Text reserves for them: JetBrainsMono Nerd
|
|
// Font's outlines run 10% of the em past its own ascent, and a patched or
|
|
// user-chosen family can be worse. That sliver is invisible in normal flow,
|
|
// but a header sitting at the top of a clipping list — bluetooth's device
|
|
// list, network's station list — loses it to the clip and renders beheaded.
|
|
// Reserve the overshoot here so every panel is covered at once.
|
|
topPadding: Math.ceil(fontSize * 0.15)
|
|
}
|