25 void requestInformation(QUrl url);
27 void installAddon(
const Package& addon);
28 void installLibrary(
const Package& addon);
31 void handleAddonList(
const QJsonObject&);
32 void handleAddon(
const QJsonObject&);
33 void on_message(QNetworkReply* rep);
34 void firstTimeLibraryDownload();
37 void show_progress() W_SIGNAL(show_progress);
38 void update_progress(
double v) W_SIGNAL(update_progress, v);
39 void reset_progress() W_SIGNAL(reset_progress);
40 void set_info() W_SIGNAL(set_info);
41 void progress_from_bytes(qint64 received, qint64 total)
42 W_SIGNAL(progress_from_bytes, received, total);
43 void information(QString title, QString description)
44 W_SIGNAL(information, title, description);
45 void warning(QString title, QString description) W_SIGNAL(warning, title, description);
47 void on_packageInstallSuccess(
48 const Package& addon,
const QDir& destination,
const std::vector<QString>& res);
49 void on_packageInstallFailure(
const Package& addon);
53 QItemSelectionModel remoteSelection;
55 QNetworkAccessManager mgr;
56 int m_addonsToRetrieve = 0;
57 bool m_firstTimeCheck{
false};
Used to access all the application-wide state and structures.
Definition ApplicationContext.hpp:24