Warning, /maui/mauikit-calendar/examples/MonthView.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.dummy2 as Dummy
0008 
0009 Maui.ApplicationWindow
0010 {
0011     id: root
0012 
0013     Maui.Page
0014     {
0015         anchors.fill: parent
0016         Maui.Controls.showCSD: true
0017 
0018         title: _monthsView.title
0019 
0020         headBar.rightContent: Maui.ToolActions
0021         {
0022             checkable: false
0023             Action
0024             {
0025                 icon.name: "go-previous"
0026                 onTriggered: _monthsView.previousDate()
0027             }
0028 
0029             Action
0030             {
0031                 icon.name: "go-next"
0032                 onTriggered: _monthsView.nextDate()
0033 
0034             }
0035         }
0036 
0037         MC.MonthView
0038         {
0039             id: _monthsView
0040             anchors.fill: parent
0041         }
0042     }
0043 }
0044