Warning, /maui/mauikit/examples/PieButton.qml is written in an unsupported language. File is not indexed.
0001 import QtQuick
0002 import QtQuick.Controls
0003 import QtQuick.Layouts
0004 import org.mauikit.controls as Maui
0005
0006 Maui.ApplicationWindow
0007 {
0008 id: root
0009
0010 Maui.Page
0011 {
0012 id: _page
0013
0014 anchors.fill: parent
0015 Maui.Controls.showCSD: true
0016 Maui.Theme.colorSet: Maui.Theme.Complementary
0017
0018 Maui.PieButton
0019 {
0020 Maui.Theme.inherit: false
0021 anchors.right: parent.right
0022 anchors.bottom: parent.bottom
0023 anchors.margins: Maui.Style.space.big
0024
0025 icon.name: "list-add"
0026
0027 Action
0028 {
0029 icon.name: "love"
0030 }
0031
0032 Action
0033 {
0034 icon.name: "folder"
0035 }
0036
0037 Action
0038 {
0039 icon.name: "anchor"
0040 }
0041 }
0042 }
0043 }
0044