mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
add Qt6 version of some examples (see below); revisions
'9999', 'advanced-qml-auto-reload', 'planets', 'sokoban'
This commit is contained in:
parent
ca79dec909
commit
dc29ac9084
87 changed files with 963 additions and 74 deletions
16
examples/Qt6/sokoban/qml/ext/ArrowButton.qml
Normal file
16
examples/Qt6/sokoban/qml/ext/ArrowButton.qml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import QtQuick
|
||||
import QtQuick.Controls
|
||||
import QtQuick.Controls.Basic
|
||||
|
||||
Button {
|
||||
width: main.small ? 37 : 50
|
||||
height: width
|
||||
flat: true
|
||||
focusPolicy: Qt.NoFocus
|
||||
font.family: fontAwesome.name
|
||||
font.pixelSize: 1.2 * width
|
||||
opacity: 0.2
|
||||
scale: 1.2
|
||||
|
||||
onPressed: Lisp.call(this, "qsoko:button-pressed")
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue