blob: 4874ba3959abf87aba33071e124999a790873211 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#pragma once
#include <viewpages/ViewStep.h>
#include <utils/PluginFactory.h>
#include <Job.h>
#include <QObject>
#include <QWidget>
#include <QStringList>
#include "DesktopBackend.h"
class QQuickWidget;
class PLUGINDLLEXPORT DesktopSelectViewStep : public Calamares::ViewStep
{
Q_OBJECT
public:
explicit DesktopSelectViewStep(QObject* parent = nullptr);
~DesktopSelectViewStep() override;
QString prettyName() const override;
QWidget* widget() override;
bool isNextEnabled() const override;
bool isBackEnabled() const override;
bool isAtBeginning() const override;
bool isAtEnd() const override;
Calamares::JobList jobs() const override;
void setConfigurationMap(const QVariantMap& config) override;
void onLeave() override;
private:
void buildWidget();
QWidget* m_widget = nullptr;
QQuickWidget* m_quickWidget = nullptr;
DesktopBackend* m_backend = nullptr;
QStringList m_mandatoryPackages;
};
CALAMARES_PLUGIN_FACTORY_DECLARATION(DesktopSelectViewStepFactory)
|