mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-09-21 09:05:10 -07:00
Some checks failed
CodeQL / Analyze (cpp) (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
Build Desktop / Configure (push) Has been cancelled
Build Docker / Servatrice (arm) (push) Has been cancelled
Build Docker / Servatrice (x86) (push) Has been cancelled
Build Desktop / Debian 13 (push) Has been cancelled
Build Desktop / Debian 12 (push) Has been cancelled
Build Desktop / Fedora 44 (push) Has been cancelled
Build Desktop / Fedora 43 (push) Has been cancelled
Build Desktop / Servatrice_Debian 12 (push) Has been cancelled
Build Desktop / Ubuntu 26.04 (push) Has been cancelled
Build Desktop / Ubuntu 24.04 (push) Has been cancelled
Build Desktop / Arch (push) Has been cancelled
Build Desktop / macOS 13 Intel (push) Has been cancelled
Build Desktop / macOS 14 (push) Has been cancelled
Build Desktop / macOS 15 (push) Has been cancelled
Build Desktop / macOS 26 Debug (push) Has been cancelled
Build Desktop / Windows 10 (push) Has been cancelled
Build Docker / Publish multi-platform Servatrice image (push) Has been cancelled
* [Oracle/Client] Report card database download progress Card database updates ran invisibly: MTGJSON parsing spun an indeterminate bar on the UI thread and the set import blocked the window, while the onboarding wizard spawned `oracle -b` with no progress to show at all. - Add byte-level scan progress to `RawJson::scanSetRanges` via an optional callback, throttled to ~100 reports per scan. - Emit `OracleImporter::dataReadProgress` during the scan and import sets on a worker thread, driving the wizard's progress bar per set. - With `-b`, write machine-readable `PROGRESS <stage> <done> <total>` lines to stdout for the download/scan/import stages; stderr keeps the log output. - Parse the oracle stdout in `MainWindow` and forward it to the onboarding wizard, giving the card database step a determinate bar with stage-specific status text. - Guard the async workers against the wizard being closed mid-run. - Add Google Test coverage for scan progress reporting. * [Oracle/Client] Harden oracle progress workers and quit prompt Address review feedback on the download-progress change: decompress and read sets files off the UI thread, cancel the load/import workers before the wizard can tear down the importer, and show an 'Extracting file...' status plus a clean 100% tail so the poll never looks stuck. Quitting Cockatrice while a card database update runs now asks for confirmation. * Show 100% for 500ms on complete. * Disable buttons on set import until done. * Clean up progress bar. * Drop wrapper around lambda --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
74 lines
2.1 KiB
C++
74 lines
2.1 KiB
C++
#ifndef FIRST_RUN_WIZARD_H
|
|
#define FIRST_RUN_WIZARD_H
|
|
|
|
#include <QDialog>
|
|
#include <QList>
|
|
|
|
class BannerHost;
|
|
class FirstRunWizardPage;
|
|
class StepIndicatorWidget;
|
|
class CardDatabaseSetupPage;
|
|
class QLabel;
|
|
class QPushButton;
|
|
class QStackedWidget;
|
|
|
|
/** @brief Polished first-run onboarding flow: card database setup, theme
|
|
* selection, server account setup, and a handful of key preferences.
|
|
*
|
|
* Deliberately ignorant of network/registration/download internals --
|
|
* pages that need them emit request signals for MainWindow to fulfill.
|
|
* Every choice is written to SettingsCache as it's made (via the pages
|
|
* themselves, same as AppearanceSettingsPage does), so "Skip" or closing
|
|
* the window never discards anything already confirmed. */
|
|
class FirstRunWizard : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit FirstRunWizard(QWidget *parent = nullptr);
|
|
|
|
signals:
|
|
void registerRequested();
|
|
void connectRequested();
|
|
void cardDatabaseUpdateRequested();
|
|
void manualCardDatabaseSetupRequested();
|
|
|
|
public slots:
|
|
/** @brief Forwarded from MainWindow once the background card database update process exits. */
|
|
void onCardDatabaseUpdateFinished(bool success);
|
|
|
|
/** @brief Forwarded from MainWindow while the background card database update process runs. */
|
|
void onCardDatabaseUpdateProgress(const QString &stage, qint64 done, qint64 total);
|
|
|
|
protected:
|
|
void closeEvent(QCloseEvent *event) override;
|
|
void changeEvent(QEvent *event) override;
|
|
|
|
private slots:
|
|
void goNext();
|
|
void goBack();
|
|
void skip();
|
|
void updateChrome();
|
|
|
|
private:
|
|
void addPage(FirstRunWizardPage *page);
|
|
void showPage(int index);
|
|
void retranslateUi();
|
|
void finish();
|
|
|
|
QStackedWidget *stack;
|
|
StepIndicatorWidget *stepIndicator;
|
|
BannerHost *bannerHost;
|
|
QLabel *titleLabel;
|
|
QLabel *subtitleLabel;
|
|
QPushButton *backButton;
|
|
QPushButton *skipButton;
|
|
QPushButton *nextButton;
|
|
|
|
CardDatabaseSetupPage *cardDatabasePage = nullptr;
|
|
|
|
QList<FirstRunWizardPage *> pages;
|
|
int currentIndex = -1;
|
|
};
|
|
|
|
#endif // FIRST_RUN_WIZARD_H
|