43 lines
790 B
QML
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
|
|
}
|
|
}
|