108 lines
2.6 KiB
QML
108 lines
2.6 KiB
QML
import QtQuick 2.6
|
|
import Sailfish.Silica 1.0
|
|
import seaprint.convertchecker 1.0
|
|
|
|
import "../components"
|
|
|
|
Page {
|
|
allowedOrientations: Orientation.All
|
|
backNavigation: false
|
|
|
|
SilicaFlickable {
|
|
anchors.fill: parent
|
|
contentHeight: col.implicitHeight
|
|
|
|
Column {
|
|
id:col
|
|
y: Theme.paddingLarge
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
width: parent.width - 2*Theme.paddingLarge
|
|
spacing: Theme.paddingLarge
|
|
|
|
Label {
|
|
width: parent.width
|
|
wrapMode: Text.WordWrap
|
|
font.bold: true
|
|
|
|
text: qsTr("Optional dependencies are not installed!")
|
|
}
|
|
|
|
Label {
|
|
visible: appWin.expectCalligra
|
|
width: parent.width
|
|
wrapMode: Text.WordWrap
|
|
|
|
text: qsTr("In order to print \"office\" documents like odt and doc(x) you need "+
|
|
"\"calligraconverter\" from the \"calligra\" package (version 3.2.1+, Sailfish OS 4.2).")
|
|
}
|
|
|
|
Label {
|
|
width: parent.width
|
|
wrapMode: Text.WordWrap
|
|
|
|
text: qsTr("To install, enable developer mode, and open a terminal.")
|
|
}
|
|
|
|
Label {
|
|
width: parent.width
|
|
wrapMode: Text.WordWrap
|
|
|
|
text: qsTr("Become root:")
|
|
}
|
|
|
|
Label {
|
|
width: parent.width
|
|
wrapMode: Text.WordWrap
|
|
font.family: "monospace"
|
|
|
|
text: "devel-su"
|
|
Clipper {}
|
|
|
|
}
|
|
|
|
Label {
|
|
visible: appWin.expectCalligra
|
|
width: parent.width
|
|
wrapMode: Text.WordWrap
|
|
|
|
text: qsTr("Install calligra:") + " " + (ConvertChecker.calligra ? qsTr("(done)") : "")
|
|
}
|
|
|
|
Label {
|
|
visible: appWin.expectCalligra
|
|
width: parent.width
|
|
wrapMode: Text.WordWrap
|
|
font.family: "monospace"
|
|
|
|
text: "pkcon install calligra"
|
|
Clipper {}
|
|
}
|
|
|
|
Item{
|
|
width: parent.width
|
|
height: Theme.itemSizeMedium
|
|
}
|
|
|
|
Button {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
text: qsTr("Dismiss")
|
|
onClicked: pageStack.pop()
|
|
}
|
|
|
|
Button {
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
text: qsTr("Don't show again")
|
|
onClicked: {
|
|
nagScreenSetting.value = nagScreenSetting.expectedValue
|
|
pageStack.pop()
|
|
}
|
|
}
|
|
|
|
Item{
|
|
width: parent.width
|
|
height: Theme.itemSizeMedium
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|