Warning, /plasma/qqc2-breeze-style/style/qtquickcontrols/AbstractButton.qml is written in an unsupported language. File is not indexed.

0001 /* SPDX-FileCopyrightText: 2020 Noah Davis <noahadvs@gmail.com>
0002  * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0003  */
0004 
0005 import QtQuick
0006 import QtQuick.Templates as T
0007 import org.kde.kirigami as Kirigami
0008 
0009 T.AbstractButton {
0010     id: control
0011 
0012     // palette: Kirigami.Theme.palette
0013 
0014     implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
0015                             implicitContentWidth + leftPadding + rightPadding)
0016     implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
0017                              implicitContentHeight + topPadding + bottomPadding)
0018 }