2019-12-01 17:40:10 +03:00
|
|
|
import QtQuick 2.0
|
|
|
|
import Sailfish.Silica 1.0
|
2019-12-01 17:55:55 +03:00
|
|
|
import Sailfish.Pickers 1.0
|
|
|
|
import seaprint.ippdiscovery 1.0
|
2020-05-11 21:44:53 +03:00
|
|
|
import seaprint.convertchecker 1.0
|
2019-12-01 17:55:55 +03:00
|
|
|
import seaprint.ippprinter 1.0
|
2020-02-18 22:40:31 +03:00
|
|
|
import seaprint.mimer 1.0
|
2019-12-01 17:55:55 +03:00
|
|
|
import "utils.js" as Utils
|
2019-12-15 14:11:40 +03:00
|
|
|
import "../components"
|
2019-12-01 17:55:55 +03:00
|
|
|
import Nemo.DBus 2.0
|
2019-12-01 17:40:10 +03:00
|
|
|
|
|
|
|
Page {
|
|
|
|
id: page
|
|
|
|
allowedOrientations: Orientation.All
|
|
|
|
|
2019-12-17 22:33:21 +03:00
|
|
|
property string selectedFile: ""
|
2020-01-03 14:45:51 +03:00
|
|
|
property string selectedFileType
|
2019-12-01 17:55:55 +03:00
|
|
|
|
2019-12-02 22:56:38 +03:00
|
|
|
WifiChecker {
|
|
|
|
id: wifi
|
|
|
|
onConnectedChanged: {
|
2020-01-04 15:30:55 +03:00
|
|
|
console.log("conn", connected, ssid)
|
2019-12-02 22:56:38 +03:00
|
|
|
if(connected) {
|
|
|
|
var favourites = db.getFavourites(ssid);
|
|
|
|
console.log(favourites);
|
2020-01-05 20:41:24 +03:00
|
|
|
IppDiscovery.favourites = favourites;
|
2019-12-02 22:56:38 +03:00
|
|
|
}
|
|
|
|
else {
|
2020-01-05 20:41:24 +03:00
|
|
|
IppDiscovery.favourites = []
|
2019-12-02 22:56:38 +03:00
|
|
|
}
|
2019-12-02 22:23:44 +03:00
|
|
|
|
2019-12-01 22:21:36 +03:00
|
|
|
}
|
2020-01-04 15:30:55 +03:00
|
|
|
|
|
|
|
property bool initialSSIDchange: true
|
|
|
|
|
2020-01-02 23:28:35 +03:00
|
|
|
onSsidChanged: {
|
2020-01-04 15:30:55 +03:00
|
|
|
console.log("ssid changed", ssid);
|
|
|
|
if(!initialSSIDchange)
|
|
|
|
{
|
2020-01-05 20:41:24 +03:00
|
|
|
IppDiscovery.reset();
|
2020-01-04 15:30:55 +03:00
|
|
|
}
|
|
|
|
initialSSIDchange = false;
|
2020-01-02 23:28:35 +03:00
|
|
|
}
|
2019-12-01 17:55:55 +03:00
|
|
|
}
|
|
|
|
|
2019-12-17 22:20:09 +03:00
|
|
|
signal refreshed()
|
|
|
|
|
2019-12-01 17:55:55 +03:00
|
|
|
Component.onCompleted: {
|
2020-01-05 20:41:24 +03:00
|
|
|
IppDiscovery.discover();
|
2020-01-05 15:24:25 +03:00
|
|
|
if(selectedFile != "")
|
2020-02-18 22:40:31 +03:00
|
|
|
{
|
|
|
|
var type = Mimer.get_type(selectedFile);
|
|
|
|
console.log(type);
|
|
|
|
selectedFileType = type;
|
2020-01-05 15:24:25 +03:00
|
|
|
}
|
2019-12-01 17:55:55 +03:00
|
|
|
}
|
|
|
|
|
2020-06-07 15:28:54 +03:00
|
|
|
property bool nagged: false
|
|
|
|
|
|
|
|
onStatusChanged: {
|
|
|
|
if(status==PageStatus.Active && !nagged && nagScreenSetting.value != nagScreenSetting.expectedValue)
|
|
|
|
{
|
|
|
|
console.log("Can convert from PDF:", ConvertChecker.pdf)
|
|
|
|
if(!ConvertChecker.pdf)
|
|
|
|
{
|
|
|
|
nagged=true
|
|
|
|
pageStack.push(Qt.resolvedUrl("NagScreen.qml"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-01 17:40:10 +03:00
|
|
|
// To enable PullDownMenu, place our content in a SilicaFlickable
|
|
|
|
SilicaFlickable {
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
// PullDownMenu and PushUpMenu must be declared in SilicaFlickable, SilicaListView or SilicaGridView
|
|
|
|
PullDownMenu {
|
|
|
|
MenuItem {
|
2019-12-13 23:36:39 +03:00
|
|
|
text: qsTr("About SeaPrint")
|
|
|
|
onClicked: pageStack.push(Qt.resolvedUrl("AboutPage.qml"))
|
2020-06-07 18:05:46 +03:00
|
|
|
}
|
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Settings")
|
|
|
|
onClicked: pageStack.push(Qt.resolvedUrl("SettingsPage.qml"))
|
|
|
|
}
|
2019-12-01 17:40:10 +03:00
|
|
|
MenuItem {
|
2019-12-01 17:55:55 +03:00
|
|
|
text: qsTr("Add by URL")
|
2019-12-02 22:56:38 +03:00
|
|
|
enabled: wifi.connected
|
2019-12-02 22:23:44 +03:00
|
|
|
onClicked: {
|
|
|
|
var dialog = pageStack.push(Qt.resolvedUrl("AddPrinterDialog.qml"),
|
2019-12-02 22:56:38 +03:00
|
|
|
{ssid: wifi.ssid, title: qsTr("URL")});
|
2019-12-02 22:23:44 +03:00
|
|
|
dialog.accepted.connect(function() {
|
2019-12-13 21:14:50 +03:00
|
|
|
console.log("add", wifi.ssid, dialog.value);
|
2019-12-02 22:56:38 +03:00
|
|
|
db.addFavourite(wifi.ssid, dialog.value);
|
2020-01-05 20:41:24 +03:00
|
|
|
IppDiscovery.favourites = db.getFavourites(wifi.ssid);
|
2019-12-02 22:23:44 +03:00
|
|
|
})
|
2019-12-01 17:55:55 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Refresh")
|
2019-12-01 22:21:36 +03:00
|
|
|
onClicked: {
|
2020-01-05 20:41:24 +03:00
|
|
|
IppDiscovery.discover();
|
2019-12-17 22:20:09 +03:00
|
|
|
page.refreshed();
|
2019-12-01 22:21:36 +03:00
|
|
|
}
|
2019-12-01 17:40:10 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-01 17:55:55 +03:00
|
|
|
SilicaListView {
|
|
|
|
anchors.fill: parent
|
|
|
|
id: listView
|
2020-01-05 20:41:24 +03:00
|
|
|
model: IppDiscovery
|
2019-12-01 17:55:55 +03:00
|
|
|
spacing: Theme.paddingSmall
|
|
|
|
|
|
|
|
|
2020-08-09 16:23:05 +03:00
|
|
|
header: PageHeader {
|
|
|
|
id: pageHeader
|
|
|
|
title: "SeaPrint"
|
|
|
|
description: qsTr("Available printers")
|
|
|
|
}
|
|
|
|
|
2019-12-08 15:55:56 +03:00
|
|
|
delegate: ListItem {
|
2019-12-01 17:55:55 +03:00
|
|
|
id: delegate
|
2019-12-08 15:55:56 +03:00
|
|
|
contentItem.height: visible ? Math.max(column.implicitHeight, Theme.itemSizeLarge+2*Theme.paddingMedium) : 0
|
2019-12-13 21:14:50 +03:00
|
|
|
|
2019-12-15 13:24:36 +03:00
|
|
|
visible: false
|
|
|
|
|
2020-01-03 00:10:58 +03:00
|
|
|
property string name: printer.attrs["printer-name"].value != "" ? printer.attrs["printer-name"].value : qsTr("Unknown")
|
2020-06-07 15:54:15 +03:00
|
|
|
property bool canPrint: Utils.supported_formats(printer, ConvertChecker, considerAdditionalFormatsSetting.value).mimetypes.indexOf(selectedFileType) != -1
|
2019-12-13 21:14:50 +03:00
|
|
|
|
2019-12-15 13:24:36 +03:00
|
|
|
Connections {
|
|
|
|
target: printer
|
|
|
|
onAttrsChanged: {
|
|
|
|
if(Object.keys(printer.attrs).length === 0) {
|
|
|
|
delegate.visible = false
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
delegate.visible = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-17 22:20:09 +03:00
|
|
|
|
|
|
|
Connections {
|
|
|
|
target: page
|
|
|
|
onRefreshed: {
|
|
|
|
console.log("onRefreshed")
|
|
|
|
printer.refresh()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-26 15:27:56 +03:00
|
|
|
Timer
|
|
|
|
{
|
|
|
|
id: debugCountReset
|
|
|
|
interval: 666
|
|
|
|
repeat: false
|
|
|
|
onTriggered:
|
|
|
|
{
|
|
|
|
debugCount = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
property int debugCount: 0
|
|
|
|
|
2019-12-01 17:55:55 +03:00
|
|
|
onClicked: {
|
2020-05-09 15:24:51 +03:00
|
|
|
|
2020-01-26 15:27:56 +03:00
|
|
|
if(++debugCount == 5)
|
|
|
|
{
|
|
|
|
pageStack.push(Qt.resolvedUrl("DebugPage.qml"), {printer: printer})
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
debugCountReset.restart();
|
2019-12-13 21:14:50 +03:00
|
|
|
if(!canPrint)
|
|
|
|
return;
|
2019-12-01 17:55:55 +03:00
|
|
|
if(selectedFile != "")
|
|
|
|
{
|
|
|
|
pageStack.push(Qt.resolvedUrl("PrinterPage.qml"), {printer: printer, selectedFile: selectedFile})
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
notifier.notify(qsTr("No file selected"))
|
|
|
|
}
|
|
|
|
}
|
2019-12-01 17:40:10 +03:00
|
|
|
|
2019-12-01 17:55:55 +03:00
|
|
|
IppPrinter {
|
|
|
|
id: printer
|
|
|
|
url: model.display
|
|
|
|
}
|
|
|
|
|
|
|
|
Image {
|
|
|
|
id: icon
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.topMargin: Theme.paddingMedium
|
|
|
|
anchors.leftMargin: Theme.paddingMedium
|
|
|
|
|
|
|
|
height: Theme.itemSizeLarge
|
|
|
|
width: Theme.itemSizeLarge
|
2020-06-13 13:51:21 +03:00
|
|
|
source: printer.attrs["printer-icons"] ? "image://ippdiscovery/"+Utils.selectIcon(printer.attrs["printer-icons"].value)
|
|
|
|
: "icon-seaprint-nobg.svg"
|
2019-12-01 17:55:55 +03:00
|
|
|
// Some printers serve their icons over https with invalid certs...
|
2019-12-12 23:59:58 +03:00
|
|
|
onStatusChanged: if (status == Image.Error) source = "icon-seaprint-nobg.svg"
|
2020-01-26 15:27:56 +03:00
|
|
|
|
2019-12-01 17:55:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Column {
|
|
|
|
id: column
|
|
|
|
anchors.left: icon.right
|
|
|
|
anchors.leftMargin: Theme.paddingMedium
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: name_label
|
2020-05-09 15:24:51 +03:00
|
|
|
color: canPrint || selectedFile == "" ? Theme.primaryColor : Theme.secondaryColor
|
2019-12-13 21:14:50 +03:00
|
|
|
text: name
|
2019-12-01 17:55:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: mm_label
|
2020-05-09 15:24:51 +03:00
|
|
|
color: canPrint || selectedFile == "" ? Theme.primaryColor : Theme.secondaryColor
|
2019-12-01 17:55:55 +03:00
|
|
|
font.pixelSize: Theme.fontSizeExtraSmall
|
|
|
|
text: printer.attrs["printer-make-and-model"].value
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: uri_label
|
2020-05-09 15:24:51 +03:00
|
|
|
color: canPrint || selectedFile == "" ? Theme.highlightColor : Theme.secondaryColor
|
2019-12-01 17:55:55 +03:00
|
|
|
font.pixelSize: Theme.fontSizeTiny
|
2020-01-03 18:36:24 +03:00
|
|
|
text: printer.url
|
2019-12-01 17:55:55 +03:00
|
|
|
}
|
|
|
|
|
2020-02-16 16:01:19 +03:00
|
|
|
Row {
|
|
|
|
spacing: Theme.paddingMedium
|
2020-02-16 16:15:48 +03:00
|
|
|
Label {
|
|
|
|
id: format_unsupported_label
|
2020-06-05 21:05:48 +03:00
|
|
|
visible: format_label.text == ""
|
2020-02-16 16:15:48 +03:00
|
|
|
color: "red"
|
|
|
|
font.pixelSize: Theme.fontSizeExtraSmall
|
|
|
|
text: qsTr("No compatible formats supported")
|
|
|
|
}
|
2020-02-16 16:01:19 +03:00
|
|
|
Label {
|
|
|
|
id: format_label
|
2020-05-09 15:24:51 +03:00
|
|
|
color: selectedFile == "" ? Theme.secondaryColor : canPrint ? Theme.primaryColor : "red"
|
2020-02-16 16:01:19 +03:00
|
|
|
font.pixelSize: Theme.fontSizeExtraSmall
|
2020-06-07 15:54:15 +03:00
|
|
|
text: Utils.supported_formats(printer, ConvertChecker, considerAdditionalFormatsSetting.value).supported
|
2020-02-16 16:01:19 +03:00
|
|
|
}
|
2019-12-01 17:55:55 +03:00
|
|
|
}
|
2020-02-16 16:01:19 +03:00
|
|
|
|
2019-12-01 17:55:55 +03:00
|
|
|
}
|
2019-12-01 17:40:10 +03:00
|
|
|
|
2019-12-15 13:29:07 +03:00
|
|
|
RemorseItem {
|
|
|
|
id: removeRemorse
|
|
|
|
}
|
|
|
|
|
2019-12-08 15:55:56 +03:00
|
|
|
menu: ContextMenu {
|
|
|
|
MenuItem {
|
|
|
|
text: qsTr("View jobs")
|
|
|
|
onClicked: pageStack.push(Qt.resolvedUrl("JobsPage.qml"), {printer: printer})
|
|
|
|
}
|
2019-12-13 21:14:50 +03:00
|
|
|
MenuItem {
|
|
|
|
text: qsTr("Remove printer")
|
|
|
|
visible: db.isFavourite(wifi.ssid, model.display)
|
2019-12-15 13:29:07 +03:00
|
|
|
onClicked: {
|
|
|
|
removeRemorse.execute(delegate, qsTr("Removing printer"),
|
|
|
|
function() {db.removeFavourite(wifi.ssid, model.display);
|
2020-01-05 20:41:24 +03:00
|
|
|
IppDiscovery.favourites = db.getFavourites()})
|
2019-12-13 21:14:50 +03:00
|
|
|
}
|
|
|
|
}
|
2019-12-08 15:55:56 +03:00
|
|
|
}
|
|
|
|
|
2019-12-01 17:40:10 +03:00
|
|
|
}
|
2019-12-01 17:55:55 +03:00
|
|
|
onCountChanged: {
|
|
|
|
console.log("count", count)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DockedPanel {
|
|
|
|
id: fileDock
|
|
|
|
open: true
|
2020-05-01 00:05:46 +03:00
|
|
|
height: fileLabel.height+folderButton.height+3*Theme.paddingLarge
|
2019-12-01 17:55:55 +03:00
|
|
|
width: parent.width
|
|
|
|
dock: Dock.Bottom
|
|
|
|
|
2020-05-01 00:05:46 +03:00
|
|
|
Label {
|
|
|
|
id: fileLabel
|
2020-08-09 16:29:50 +03:00
|
|
|
width: parent.width-2*Theme.paddingLarge
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
top: parent.top
|
|
|
|
topMargin: Theme.paddingLarge
|
|
|
|
horizontalCenter: parent.horizontalCenter
|
|
|
|
}
|
|
|
|
|
|
|
|
horizontalAlignment: contentWidth > width ? Text.AlignRight : Text.AlignHCenter
|
|
|
|
truncationMode: TruncationMode.Fade
|
2020-05-01 00:05:46 +03:00
|
|
|
text: selectedFile != "" ? selectedFile : qsTr("No file selected")
|
|
|
|
}
|
|
|
|
|
2020-08-09 16:29:50 +03:00
|
|
|
|
2020-05-01 00:05:46 +03:00
|
|
|
Row {
|
|
|
|
width: parent.width
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.bottomMargin: Theme.paddingLarge
|
|
|
|
IconButton {
|
|
|
|
id: folderButton
|
|
|
|
icon.source: "image://theme/icon-m-file-folder"
|
|
|
|
width: parent.width/2
|
|
|
|
onClicked: pageStack.push(filePickerPage)
|
|
|
|
}
|
|
|
|
IconButton {
|
|
|
|
icon.source: "image://theme/icon-m-file-image"
|
|
|
|
width: parent.width/2
|
|
|
|
onClicked: pageStack.push(imagePickerPage)
|
|
|
|
}
|
|
|
|
|
2019-12-01 17:55:55 +03:00
|
|
|
}
|
|
|
|
Component {
|
|
|
|
id: filePickerPage
|
|
|
|
FilePickerPage {
|
2020-08-06 18:34:14 +03:00
|
|
|
allowedOrientations: Orientation.All
|
|
|
|
|
2020-05-01 00:05:46 +03:00
|
|
|
title: qsTr("Choose file")
|
2019-12-18 23:32:49 +03:00
|
|
|
showSystemFiles: false
|
2020-02-17 22:06:39 +03:00
|
|
|
nameFilters: ["*.pdf", "*.jpg", "*.jpeg", "*.ps"]
|
2019-12-01 17:55:55 +03:00
|
|
|
|
|
|
|
onSelectedContentPropertiesChanged: {
|
|
|
|
page.selectedFile = selectedContentProperties.filePath
|
2020-02-18 22:40:31 +03:00
|
|
|
page.selectedFileType = Mimer.get_type(selectedContentProperties.filePath)
|
2019-12-01 17:55:55 +03:00
|
|
|
}
|
2019-12-01 17:40:10 +03:00
|
|
|
}
|
|
|
|
}
|
2020-05-01 00:05:46 +03:00
|
|
|
Component {
|
|
|
|
id: imagePickerPage
|
|
|
|
ImagePickerPage {
|
2020-08-06 18:34:14 +03:00
|
|
|
allowedOrientations: Orientation.All
|
|
|
|
|
2020-05-01 00:05:46 +03:00
|
|
|
onSelectedContentPropertiesChanged: {
|
|
|
|
page.selectedFile = selectedContentProperties.filePath
|
|
|
|
page.selectedFileType = Mimer.get_type(selectedContentProperties.filePath)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-12-01 17:40:10 +03:00
|
|
|
}
|
|
|
|
}
|