]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/dialogs/SaveDialog.cpp
Enable downloading of files that require login cookies. https://redmine.stoutner...
[PrivacyBrowserPC.git] / src / dialogs / SaveDialog.cpp
1 /*
2  * Copyright 2022 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-pc>.
5  *
6  * Privacy Browser PC is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Privacy Browser PC is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Privacy Browser PC.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 // Application headers.
21 #include "SaveDialog.h"
22 #include "ui_SaveDialog.h"
23
24 // KDE Frameworks headers.
25 #include <KLocalizedString>
26
27 // Qt toolkit headers.
28 #include <QMimeDatabase>
29 #include <QPushButton>
30 #include <QShortcut>
31 #include <QStandardPaths>
32
33 SaveDialog::SaveDialog(QUrl &url, QString &mimeTypeString, int totalBytes, QString fileName, bool nativeDownloader): downloadUrl(url), suggestedFileName(fileName)
34 {
35     // Set the dialog window title.
36     setWindowTitle(i18nc("The save dialog window title", "Save"));
37
38     // Set the window modality.
39     setWindowModality(Qt::WindowModality::ApplicationModal);
40
41     // Instantiate the save dialog UI.
42     Ui::SaveDialog saveDialogUi;
43
44     // Setup the UI.
45     saveDialogUi.setupUi(this);
46
47     // Get handles for the widgets.
48     QGraphicsView *mimeGraphicsViewPointer = saveDialogUi.mimeGraphicsView;
49     QLabel *urlLabelPointer = saveDialogUi.urlLabel;
50     QLabel *filetypeLabelPointer = saveDialogUi.fileTypeLabel;
51     QLabel *mimeTypeLabelPointer = saveDialogUi.mimeTypeLabel;
52     QLabel *sizeLabelPointer = saveDialogUi.sizeLabel;
53     QDialogButtonBox *dialogButtonBoxPointer = saveDialogUi.dialogButtonBox;
54     QPushButton *saveButtonPointer = dialogButtonBoxPointer->button(QDialogButtonBox::Save);
55
56     // Get a MIME type database.
57     QMimeDatabase mimeDatabase;
58
59     // Get the MIME type.
60     QMimeType mimeType = mimeDatabase.mimeTypeForName(mimeTypeString);
61
62     // Get the MIME type icon.
63     QIcon mimeTypeIcon = QIcon::fromTheme(mimeType.iconName());
64
65     // Create a graphics scene.
66     QGraphicsScene *mimeGraphicsScenePointer = new QGraphicsScene(this);
67
68     // Set the graphics scene.
69     mimeGraphicsViewPointer->setScene(mimeGraphicsScenePointer);
70
71     // Set the background of the graphics view to be the same as the window
72     mimeGraphicsViewPointer->setBackgroundRole(QPalette::Window);
73
74     // Add the MIME type icon to the scene.
75     mimeGraphicsScenePointer->addPixmap(mimeTypeIcon.pixmap(64, 64));
76
77     // Populate the labels.
78     urlLabelPointer->setText("<b>" + downloadUrl.toString() + "</b>");
79     filetypeLabelPointer->setText("<b>" + mimeType.comment() + "</b>");
80     mimeTypeLabelPointer->setText("<b>" + mimeTypeString + "</b>");
81
82     // Populate the download size label.
83     if (totalBytes == -1)  // The file size is unknown.
84         sizeLabelPointer->setText(i18nc("Unknown download file size.  The bold style should be preserved.", "<b>unknown</b>"));
85     else  // The file size is known.  Format it according to the locale.
86         sizeLabelPointer->setText(ki18nc("Download file size.  The bold style should be preserved.", "<b>%1 bytes</b>").subs(totalBytes).toString());
87
88     // Create the keyboard shortcuts.
89     QShortcut *sShortcutPointer = new QShortcut(QKeySequence(i18nc("The save key shortcut.", "s")), this);
90     QShortcut *cShortcutPointer = new QShortcut(QKeySequence(i18nc("The close key shortcut.", "c")), this);
91
92     // Connect the save buttons.
93     if (nativeDownloader)
94     {
95         // Show the file picker for the native download.
96         connect(saveButtonPointer, SIGNAL(clicked()), this, SLOT(showFilePicker()));
97         connect(sShortcutPointer, SIGNAL(activated()), this, SLOT(showFilePicker()));
98     }
99     else
100     {
101         // Use WebEngine's downloader
102         connect(saveButtonPointer, SIGNAL(clicked()), this, SLOT(accept()));
103         connect(sShortcutPointer, SIGNAL(activated()), this, SLOT(accept()));
104     }
105
106     // Connect the cancel button.
107     connect(dialogButtonBoxPointer, SIGNAL(rejected()), this, SLOT(reject()));
108     connect(cShortcutPointer, SIGNAL(activated()), this, SLOT(reject()));
109 }
110
111 void SaveDialog::showFilePicker()
112 {
113     // Show the file picker dialog.
114     emit useNativeDownloader(downloadUrl, suggestedFileName);
115
116     // Close the dialog.
117     reject();
118 }
119