lqml/examples/cl-repl/qml/ext/ParenButton.qml

15 lines
297 B
QML

import QtQuick 2.15
import QtQuick.Controls 2.15
Button {
id: parenButton
width: 1.4 * (main.small ? 35 : 55)
icon.width: width / 1.4
icon.height: height / 1.4
height: width
focusPolicy: Qt.NoFocus
flat: true
opacity: 0.12
onPressed: Lisp.call(this, "editor:button-pressed")
}