17 lines
444 B
QML
17 lines
444 B
QML
import QtQuick
|
|
import "../config" as Cfg
|
|
|
|
Rectangle {
|
|
id: chip
|
|
|
|
property real panelRadius: Cfg.Config.radius / 2
|
|
property int borderWidth: Cfg.Config.panelBorderWidth
|
|
property bool isTop: true
|
|
property var targetScreen: null
|
|
property int barHeight: Cfg.Config.barHeight
|
|
property int barMargin: Cfg.Config.margin
|
|
readonly property var t: Cfg.Config.theme
|
|
|
|
property bool moduleEnabled: true
|
|
}
|