Warning, /graphics/washipad/src/ToolButton.qml is written in an unsupported language. File is not indexed.
0001 // This file is part of Washi Pad
0002 // SPDX-FileCopyrightText: 2018 Kevin Ottens <ervin@kde.org>
0003 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0004
0005 import QtQuick 2.0
0006
0007 Rectangle {
0008 id: root
0009
0010 signal clicked
0011
0012 implicitHeight: 60
0013 implicitWidth: implicitHeight * 1.5
0014
0015 color: "lightGray"
0016
0017 MouseArea {
0018 anchors.fill: parent
0019 z: 1
0020 onClicked: root.clicked()
0021 }
0022 }