/* === This file is part of Calamares - === * * Copyright 2014-2017, Teo Mrnjavac * Copyright 2017, Adriaan de Groot * Copyright 2017, Gabriel Craciunescu * * 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 . */ /* Based on code extracted from RequirementsChecker.cpp */ #ifndef CHECKERCONTAINER_H #define CHECKERCONTAINER_H #include #include "modulesystem/Requirement.h" class ResultsListWidget; class WaitingWidget; /** * A widget that collects requirements results; until the results are * all in, displays a spinner / waiting widget. Then it switches to * a (list) diplay of the results, plus some explanation of the * overall state of the entire list of results. */ class CheckerContainer : public QWidget { Q_OBJECT public: explicit CheckerContainer( QWidget* parent = nullptr ); virtual ~CheckerContainer(); bool verdict() const; public slots: void requirementsChecked( const Calamares::RequirementsList& ); /** @brief All the requirements are complete, switch to list view */ void requirementsComplete( bool ); void requirementsProgress( const QString& message ); protected: WaitingWidget *m_waitingWidget; ResultsListWidget *m_checkerWidget; Calamares::RequirementsList m_requirements; bool m_verdict; } ; #endif