Warning, /plasma/plasma-desktop/kcms/keyboard/tastenbrett/qml/TextDoodad.qml is written in an unsupported language. File is not indexed.
0001 /* 0002 SPDX-FileCopyrightText: 2019 Harald Sitter <sitter@kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0005 */ 0006 0007 import QtQuick 2.12 0008 import QtQuick.Controls 2.5 0009 0010 Label { 0011 property QtObject doodad 0012 0013 x: doodad.left 0014 y: doodad.top 0015 z: doodad.priority 0016 // random note: the width is much larger than desired on pc geoms because 0017 // the geom only defines left anchors and has a forced \n inside 0018 width: doodad.width 0019 height: doodad.height 0020 rotation: doodad.angle 0021 text: doodad.text 0022 color: disabledPalette.buttonText 0023 0024 fontSizeMode: Text.Fit 0025 minimumPixelSize: 6 0026 font.pixelSize: height 0027 }