Skip to content
Snippets Groups Projects
Commit 23ddfaae authored by Teo Mrnjavac's avatar Teo Mrnjavac
Browse files

Read configuration map into GreetingViewStep.

parent 43487198
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,8 @@
#include "GreetingPage.h"
#include <QVariant>
GreetingViewStep::GreetingViewStep( QObject* parent )
: Calamares::ViewStep( parent )
, m_widget( new GreetingPage() )
......@@ -95,3 +97,25 @@ GreetingViewStep::jobs() const
return QList< Calamares::job_ptr >();
}
void
GreetingViewStep::setConfigurationMap( const QVariantMap& configurationMap )
{
bool showSupportUrl =
configurationMap.contains( "showSupportUrl" ) &&
configurationMap.value( "showSupportUrl" ).type() == QVariant::Bool &&
configurationMap.value( "showSupportUrl" ).toBool();
bool showKnownIssuesUrl =
configurationMap.contains( "showKnownIssuesUrl" ) &&
configurationMap.value( "showKnownIssuesUrl" ).type() == QVariant::Bool &&
configurationMap.value( "showKnownIssuesUrl" ).toBool();
bool showReleaseNotesUrl =
configurationMap.contains( "showReleaseNotesUrl" ) &&
configurationMap.value( "showReleaseNotesUrl" ).type() == QVariant::Bool &&
configurationMap.value( "showReleaseNotesUrl" ).toBool();
m_widget->setUpLinks( showSupportUrl,
showKnownIssuesUrl,
showReleaseNotesUrl );
}
......@@ -24,6 +24,8 @@
#include "viewpages/ViewStep.h"
#include "PluginDllMacro.h"
#include <QVariantMap>
class GreetingPage;
class PLUGINDLLEXPORT GreetingViewStep : public Calamares::ViewStep
......@@ -52,6 +54,8 @@ public:
QList< Calamares::job_ptr > jobs() const override;
void setConfigurationMap( const QVariantMap& configurationMap ) override;
private:
GreetingPage* m_widget;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment