Warning, /maui/mauikit-imagetools/examples/ImageEditor.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick
0002 import QtQuick.Controls
0003 
0004 import org.mauikit.controls as Maui
0005 import org.mauikit.calendar as MC
0006 
0007 import org.mauikit.imagetools as IT
0008 
0009 Maui.ApplicationWindow
0010 {
0011     id: root
0012 
0013     Maui.Page
0014     {
0015         anchors.fill: parent
0016         Maui.Controls.showCSD: true
0017         title: root.title
0018 
0019         IT.ImageEditor
0020         {
0021             anchors.fill: parent
0022             url: "file:///home/camiloh/maui-demo-files/Pictures/4416d027-9fa4-4762-8eb6-31de331623a1.jpg"
0023         }
0024     }
0025 }
0026