harbour-nextcloudnotes/qml/cover/CoverPage.qml

26 lines
637 B
QML
Raw Normal View History

import QtQuick 2.2
2018-10-16 18:50:58 +03:00
import Sailfish.Silica 1.0
CoverBackground {
2018-10-27 20:19:35 +03:00
CoverPlaceholder {
icon.source: Theme.colorScheme === Theme.DarkOnLight ? "../img/nextcloud-logo-dark.png" : "../img/nextcloud-logo-light.png"
icon.width: parent.width
icon.fillMode: Image.PreserveAspectFit
2018-10-27 20:19:35 +03:00
text: qsTr("Notes")
2018-10-16 18:50:58 +03:00
}
CoverActionList {
id: coverAction
enabled: account != null
2018-10-16 18:50:58 +03:00
CoverAction {
2018-10-27 20:19:35 +03:00
iconSource: "image://theme/icon-cover-new"
onTriggered: {
2018-12-07 02:30:18 +03:00
api.createNote({'content': ""})
2018-10-27 20:19:35 +03:00
appWindow.activate()
}
2018-10-16 18:50:58 +03:00
}
}
}