harbour-sextant/qml/pages/Editor.qml
Renaud Casenave-Péré e6b27769fa WIP Backup
2025-10-09 09:25:45 +02:00

43 lines
790 B
QML

import QtQuick 2.0
import Sailfish.Silica 1.0
import EQL5 1.0
Page {
id: editor
objectName: "editorPage"
allowedOrientations: Orientation.All
property string filepath
property string filename
property bool readonly: false
SilicaListView {
id: listView
anchors {
top: parent.top
left: parent.left
right: parent.right
bottom: toolbar.top
}
clip: true
header: PageHeader {
title: filename
}
}
DockedPanel {
id: toolbar
anchors {
left: parent.left
right: parent.right
bottom: parent.bottom
}
height: Theme.itemSizeMedium
dock: Dock.Bottom
open: true
}
}