/* === This file is part of Calamares - === * * Copyright 2014, Teo Mrnjavac * * Calamares 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. * * Calamares 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 Calamares. If not, see . */ #ifndef VIEWMANAGER_H #define VIEWMANAGER_H #include "UiDllMacro.h" #include #include #include namespace Calamares { class ViewStep; class InstallationViewStep; class UIDLLEXPORT ViewManager : public QObject { Q_OBJECT public: static ViewManager* instance(); explicit ViewManager( QObject* parent = nullptr ); virtual ~ViewManager(); QWidget* centralWidget(); void addViewStep( ViewStep* step ); QList< ViewStep* > prepareSteps() const; ViewStep* installationStep() const; ViewStep* currentStep() const; int currentStepIndex() const; public slots: void next(); void back(); signals: void currentStepChanged(); private: static ViewManager* s_instance; QList< ViewStep* > m_steps; QList< ViewStep* > m_prepareSteps; InstallationViewStep* m_installationViewStep; int m_currentStep; QWidget* m_widget; QStackedWidget* m_stack; QPushButton* m_back; QPushButton* m_next; QPushButton* m_quit; void insertViewStep( int before, ViewStep* step ); void startInstallation(); void onInstallationFailed( const QString& message, const QString& details ); }; } #endif // VIEWMANAGER_H