forked from AdrianTM/mx-packageinstaller
-
Notifications
You must be signed in to change notification settings - Fork 11
/
mainwindow.h
314 lines (290 loc) · 10.5 KB
/
mainwindow.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
/**********************************************************************
* mxpackageinstaller.h
**********************************************************************
* Copyright (C) 2017 MX Authors
*
* Authors: Adrian
* Dolphin_Oracle
* MX Linux <http://mxlinux.org>
*
* This file is part of mx-packageinstaller.
*
* mx-packageinstaller is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* mx-packageinstaller is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with mx-packageinstaller. If not, see <http://www.gnu.org/licenses/>.
**********************************************************************/
#pragma once
#include <QCommandLineParser>
#include <QDomDocument>
#include <QFile>
#include <QMessageBox>
#include <QNetworkAccessManager>
#include <QNetworkReply>
#include <QProcess>
#include <QProgressDialog>
#include <QSettings>
#include <QTemporaryDir>
#include <QTimer>
#include <QTreeWidgetItem>
#include "aptcache.h"
#include "cmd.h"
#include "lockfile.h"
#include "remotes.h"
#include "versionnumber.h"
namespace Ui
{
class MainWindow;
}
namespace Status
{
enum { Installed = 1, Upgradable, NotInstalled, Autoremovable }; // Also used for filter combo index
}
namespace Tab
{
enum { Popular, EnabledRepos, Test, Backports, Flatpak, Output };
}
namespace PopCol
{
enum {
Icon,
Check,
Name,
Info,
Description,
InstallNames,
UninstallNames,
Screenshot,
PostUninstall,
PreUninstall,
MAX
};
} // Namespace PopCol
namespace TreeCol
{
enum { Check, Name, RepoVersion, InstalledVersion, Description, Status };
}
namespace FlatCol
{
enum { Check, Name, LongName, Version, Size, Status, Duplicate, FullName };
}
namespace Release
{
enum { Jessie = 8, Stretch, Buster, Bullseye, Bookworm, Trixie };
}
struct PopularInfo {
QString category;
QString name;
QString description;
QString installable;
QString screenshot;
QString preInstall;
QString postInstall;
QString installNames;
QString uninstallNames;
QString postUninstall;
QString preUninstall;
};
constexpr uint KiB = 1024;
constexpr uint MiB = KiB * 1024;
constexpr uint GiB = MiB * 1024;
class MainWindow : public QDialog
{
Q_OBJECT
public:
explicit MainWindow(const QCommandLineParser &arg_parser, QWidget *parent = nullptr);
~MainWindow() override;
protected:
void keyPressEvent(QKeyEvent *event) override;
signals:
void displayPackagesFinished();
private slots:
void checkUncheckItem();
void cleanup();
void cmdDone();
void cmdStart();
void disableOutput();
void displayInfoTestOrBackport(const QTreeWidget *tree, const QTreeWidgetItem *item);
void displayPackageInfo(const QTreeWidget *tree, QPoint pos);
void displayPackageInfo(const QTreeWidgetItem *item);
void displayPopularInfo(const QTreeWidgetItem *item, int column);
void enableOutput();
void filterChanged(const QString &arg1);
void findPackage();
void findPopular() const;
void outputAvailable(const QString &output);
void showOutput();
void updateBar();
void checkHideLibsBP_clicked(bool checked);
void checkHideLibsMX_clicked(bool checked);
void checkHideLibs_toggled(bool checked);
void comboRemote_activated(int index = 0);
void comboUser_currentIndexChanged(int index);
void lineEdit_returnPressed();
void pushAbout_clicked();
void pushCancel_clicked();
void pushEnter_clicked();
void pushForceUpdateBP_clicked();
void pushForceUpdateEnabled_clicked();
void pushForceUpdateMX_clicked();
void pushForceUpdateFP_clicked();
void pushHelp_clicked();
void pushInstall_clicked();
void pushRemotes_clicked();
void pushRemoveAutoremovable_clicked();
void pushRemoveUnused_clicked();
void pushUninstall_clicked();
void pushUpgradeAll_clicked();
void pushUpgradeFP_clicked();
void tabWidget_currentChanged(int index);
void treeBackports_itemChanged(QTreeWidgetItem *item);
void treeEnabled_itemChanged(QTreeWidgetItem *item);
void treeFlatpak_itemChanged(QTreeWidgetItem *item);
void treeMXtest_itemChanged(QTreeWidgetItem *item);
void treePopularApps_customContextMenuRequested(QPoint pos);
void treePopularApps_expanded();
void treePopularApps_itemChanged(QTreeWidgetItem *item);
void treePopularApps_itemCollapsed(QTreeWidgetItem *item);
void treePopularApps_itemExpanded(QTreeWidgetItem *item);
private:
Ui::MainWindow *ui;
QString indexFilterFP;
bool dirtyBackports {true};
bool dirtyEnabledRepos {true};
bool dirtyTest {true};
bool displayFlatpaksIsRunning {false};
bool displayPackagesIsRunning {false};
bool firstRunFP {true};
bool hideLibsChecked {true};
bool test_initially_enabled {false};
bool updated_once {false};
bool warning_backports {false};
bool warning_flatpaks {false};
bool warning_test {false};
int savedComboIndex {0};
Cmd cmd;
LockFile lock_file {"/var/lib/dpkg/lock"};
QHash<QString, VersionNumber> listInstalledVersions();
QIcon qicon_installed;
QIcon qicon_upgradable;
QList<PopularInfo> popular_apps;
QLocale locale;
QMap<QString, PackageInfo> backports_list;
QMap<QString, PackageInfo> enabled_list;
QMap<QString, PackageInfo> installed_packages;
QMap<QString, PackageInfo> mx_list;
QProgressBar *bar {};
QProgressDialog *progress {};
QPushButton *pushCancel {};
QSettings dictionary;
QSettings settings;
QString FPuser;
QString arch;
QString temp_list {"/etc/apt/sources.list.d/mxpitemp.list"};
QString ver_name;
QStringList change_list;
QStringList flatpaks;
QStringList flatpaks_apps;
QStringList flatpaks_runtimes;
QStringList installed_apps_fp;
QStringList installed_runtimes_fp;
QTemporaryDir tmp_dir;
QTimer timer;
QTreeWidget *currentTree {}; // current/calling tree
QTreeWidgetItem *lastItemClicked {};
const QCommandLineParser &args;
QNetworkAccessManager manager;
QNetworkReply *reply;
[[nodiscard]] QMap<QString, PackageInfo> listInstalled();
[[nodiscard]] QString categoryTranslation(const QString &item);
[[nodiscard]] QString getMXTestRepoUrl();
[[nodiscard]] QString getArchOption() const;
[[nodiscard]] QString getLocalizedName(const QDomElement &element) const;
[[nodiscard]] QString getVersion(const QString &name) const;
[[nodiscard]] QString mapArchToFormat(const QString &arch) const;
[[nodiscard]] QStringList listFlatpaks(const QString &remote, const QString &type = QLatin1String("")) const;
[[nodiscard]] QStringList listInstalledFlatpaks(const QString &type = QLatin1String(""));
[[nodiscard]] QTreeWidgetItem *createFlatpakItem(const QString &item, const QStringList &installed_all) const;
[[nodiscard]] QTreeWidgetItem *createTreeItem(const QString &name, const QString &version,
const QString &description) const;
[[nodiscard]] bool checkInstalled(const QVariant &names) const;
[[nodiscard]] bool checkUpgradable(const QStringList &name_list) const;
[[nodiscard]] bool isOnline();
[[nodiscard]] bool isPackageInstallable(const QString &installable, const QString &modArch) const;
[[nodiscard]] static QString getDebianVerName();
[[nodiscard]] static bool isFilteredName(const QString &name);
[[nodiscard]] static uchar getDebianVerNum();
[[nodiscard]] QList<QTreeWidgetItem *> createTreeItemsList(QMap<QString, PackageInfo> *list) const;
[[nodiscard]] QMap<QString, PackageInfo> *getCurrentList();
[[nodiscard]] QTreeWidget *getCurrentTree();
bool buildPackageLists(bool force_download = false);
bool confirmActions(const QString &names, const QString &action);
bool downloadAndUnzip(const QString &url, QFile &file);
bool downloadAndUnzip(const QString &url, const QString &repo_name, const QString &branch, const QString &format,
QFile &file);
bool downloadFile(const QString &url, QFile &file);
bool downloadPackageList(bool force_download = false);
bool install(const QString &names);
bool installBatch(const QStringList &name_list);
bool installPopularApp(const QString &name);
bool installPopularApps();
bool installSelected();
bool markKeep();
bool readPackageList(bool force_download = false);
bool uninstall(const QString &names, const QString &preuninstall = QLatin1String(""),
const QString &postuninstall = QLatin1String(""));
bool updateApt();
static QString convert(quint64 bytes);
static quint64 convert(const QString &size);
void blockInterfaceFP(bool block);
void buildChangeList(QTreeWidgetItem *item);
void cancelDownload();
void centerWindow();
void clearUi();
void displayAutoremovable(const QTreeWidget *newtree);
void displayFilteredFP(QStringList list, bool raw = false);
void displayFlatpaks(bool force_update = false);
void displayPackages();
void displayPopularApps() const;
void displayWarning(const QString &repo);
void enableTabs(bool enable);
void finalizeFlatpakDisplay();
void formatFlatpakTree() const;
void handleEnabledReposTab(const QString &search_str);
void handleFlatpakTab(const QString &search_str);
void handleOutputTab();
void handleTab(const QString &search_str, QLineEdit *searchBox, const QString &warningMessage, bool dirtyFlag);
void hideColumns() const;
void hideLibs() const;
void ifDownloadFailed() const;
void installFlatpak();
void listFlatpakRemotes() const;
void listSizeInstalledFP();
void loadFlatpakData();
void loadPmFiles();
void populateFlatpakTree();
void processDoc(const QDomDocument &doc);
void refreshPopularApps();
void removeDuplicatesFP() const;
void resetCheckboxes();
void saveSearchText(QString &search_str, int &filter_idx);
void setConnections() const;
void setCurrentTree();
void setDirty();
void setIcons();
void setProgressDialog();
void setSearchFocus() const;
void setup();
void setupFlatpakDisplay();
void updateFlatpakCounts(uint total_count);
void updateInterface() const;
void updateTreeItems(QTreeWidget *tree);
};