mirror of https://github.com/cutefishos/calamares
[welcome] Restructure requirements checking
- Move widget behavior into its own container / widget class - Change the RequirementsChecker class to just check the requirements, returning a results list - Connect from the module manager to the results widget.main
parent
b6fed964ce
commit
bd27dda474
@ -0,0 +1,72 @@
|
|||||||
|
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
||||||
|
*
|
||||||
|
* Copyright 2014-2017, Teo Mrnjavac <teo@kde.org>
|
||||||
|
* Copyright 2017, Adriaan de Groot <groot@kde.org>
|
||||||
|
* Copyright 2017, Gabriel Craciunescu <crazy@frugalware.org>
|
||||||
|
*
|
||||||
|
* 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 <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Based on code extracted from RequirementsChecker.cpp */
|
||||||
|
|
||||||
|
#include "CheckerContainer.h"
|
||||||
|
|
||||||
|
#include "CheckerWidget.h"
|
||||||
|
|
||||||
|
#include "utils/CalamaresUtilsGui.h"
|
||||||
|
#include "utils/Logger.h"
|
||||||
|
#include "utils/Retranslator.h"
|
||||||
|
#include "widgets/WaitingWidget.h"
|
||||||
|
|
||||||
|
CheckerContainer::CheckerContainer(QWidget* parent)
|
||||||
|
: QWidget( parent )
|
||||||
|
, m_waitingWidget( new WaitingWidget( QString() ) )
|
||||||
|
, m_checkerWidget( new CheckerWidget() )
|
||||||
|
, m_verdict( false )
|
||||||
|
{
|
||||||
|
QBoxLayout* mainLayout = new QHBoxLayout;
|
||||||
|
setLayout( mainLayout );
|
||||||
|
CalamaresUtils::unmarginLayout( mainLayout );
|
||||||
|
|
||||||
|
mainLayout->addWidget( m_waitingWidget );
|
||||||
|
CALAMARES_RETRANSLATE( m_waitingWidget->setText( tr( "Gathering system information..." ) ); )
|
||||||
|
}
|
||||||
|
|
||||||
|
CheckerContainer::~CheckerContainer()
|
||||||
|
{
|
||||||
|
delete m_waitingWidget;
|
||||||
|
delete m_checkerWidget;
|
||||||
|
}
|
||||||
|
|
||||||
|
void CheckerContainer::requirementsComplete( bool ok )
|
||||||
|
{
|
||||||
|
m_checkerWidget->init( m_requirements );
|
||||||
|
layout()->removeWidget( m_waitingWidget );
|
||||||
|
m_waitingWidget->deleteLater();
|
||||||
|
m_waitingWidget = nullptr; // Don't delete in constructor
|
||||||
|
m_checkerWidget->setParent( this );
|
||||||
|
layout()->addWidget( m_checkerWidget );
|
||||||
|
|
||||||
|
m_verdict = ok;
|
||||||
|
}
|
||||||
|
|
||||||
|
void CheckerContainer::requirementsChecked(const Calamares::RequirementsList& l)
|
||||||
|
{
|
||||||
|
m_requirements.append( l );
|
||||||
|
}
|
||||||
|
|
||||||
|
bool CheckerContainer::verdict() const
|
||||||
|
{
|
||||||
|
return m_verdict;
|
||||||
|
}
|
||||||
@ -0,0 +1,62 @@
|
|||||||
|
/* === This file is part of Calamares - <https://github.com/calamares> ===
|
||||||
|
*
|
||||||
|
* Copyright 2014-2017, Teo Mrnjavac <teo@kde.org>
|
||||||
|
* Copyright 2017, Adriaan de Groot <groot@kde.org>
|
||||||
|
* Copyright 2017, Gabriel Craciunescu <crazy@frugalware.org>
|
||||||
|
*
|
||||||
|
* 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 <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Based on code extracted from RequirementsChecker.cpp */
|
||||||
|
|
||||||
|
#ifndef CHECKERCONTAINER_H
|
||||||
|
#define CHECKERCONTAINER_H
|
||||||
|
|
||||||
|
#include <QWidget>
|
||||||
|
|
||||||
|
#include "modulesystem/Requirement.h"
|
||||||
|
|
||||||
|
class CheckerWidget;
|
||||||
|
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 );
|
||||||
|
|
||||||
|
protected:
|
||||||
|
WaitingWidget *m_waitingWidget;
|
||||||
|
CheckerWidget *m_checkerWidget;
|
||||||
|
|
||||||
|
Calamares::RequirementsList m_requirements;
|
||||||
|
bool m_verdict;
|
||||||
|
} ;
|
||||||
|
|
||||||
|
#endif
|
||||||
Loading…
Reference in New Issue