2020-01-14 16:47:42 +03:00
|
|
|
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 {
|
2020-05-25 09:05:16 +03:00
|
|
|
icon.source: Theme.colorScheme === Theme.DarkOnLight ? "../img/nextcloud-logo-dark.png" : "../img/nextcloud-logo-light.png"
|
2018-12-06 16:14:54 +03:00
|
|
|
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
|
2021-01-03 21:07:47 +03:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|