lqml/examples/cl-repl/qml/ext/ParenButton.qml
2022-04-09 19:12:45 +02:00

19 lines
311 B
QML

import QtQuick 2.15
import QtQuick.Controls 2.15
Button {
id: parenButton
width: main.small ? 35 : 55
height: width
focusPolicy: Qt.NoFocus
flat: true
opacity: 0.12
property url source
background: Image {
source: parent.source
}
onPressed: Lisp.call(this, "editor:button-pressed")
}