Warning, /maui/mauikit-imagetools/examples/ImageInfoDialog.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         Button
0020         {
0021             text: "Open"
0022             anchors.centerIn: parent
0023             onClicked: _dialog.open()
0024         }
0025 
0026         IT.ImageInfoDialog
0027         {
0028             id: _dialog
0029             url: "file:///home/camiloh/maui-demo-files/Pictures/4416d027-9fa4-4762-8eb6-31de331623a1.jpg"
0030         }
0031     }
0032 }
0033