41fecf341b
- Register the types with the Qt type system. This is needed because we're passing them as signal and slot parameters across threads.
65 lines
1.9 KiB
C++
65 lines
1.9 KiB
C++
/* === This file is part of Calamares - <http://github.com/calamares> ===
|
|
*
|
|
* Copyright 2017, Adriaan de Groot <groot@kde.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/>.
|
|
*/
|
|
#ifndef CALAMARES_REQUIREMENT_H
|
|
#define CALAMARES_REQUIREMENT_H
|
|
|
|
#include <QList>
|
|
#include <QMetaType>
|
|
#include <QString>
|
|
|
|
#include <functional>
|
|
|
|
namespace Calamares
|
|
{
|
|
|
|
/**
|
|
* An indication of a requirement, which is checked in preparation
|
|
* for system installation. An entry has a name and some explanation functions
|
|
* (functions, because they need to respond to translations).
|
|
*
|
|
* A requirement can be *satisfied* or not.
|
|
* A requirement can be optional (i.e. a "good to have") or mandatory.
|
|
*
|
|
* Requirements which are not satisfied, and also mandatory, will prevent the
|
|
* installation from proceeding.
|
|
*/
|
|
struct RequirementEntry
|
|
{
|
|
using TextFunction = std::function< QString() >;
|
|
|
|
/// @brief name of this requirement; not shown to user and used as ID
|
|
QString name;
|
|
|
|
/// @brief Description of this requirement, for use in user-visible lists
|
|
TextFunction enumerationText;
|
|
|
|
/// @brief User-visible string to show that the requirement is not met
|
|
TextFunction negatedText;
|
|
|
|
bool satisfied;
|
|
bool mandatory;
|
|
};
|
|
|
|
using RequirementsList = QList< RequirementEntry >;
|
|
|
|
} // namespace Calamares
|
|
|
|
Q_DECLARE_METATYPE(Calamares::RequirementEntry)
|
|
|
|
#endif
|