@ -26,8 +26,25 @@
# include <QProcess>
# include <QProcess>
# include <QVariantMap>
# include <QVariantMap>
# ifdef WITH_KCONFIG
# include <KConfigGroup>
# include <KSharedConfig>
# endif
CALAMARES_PLUGIN_FACTORY_DEFINITION ( PlasmaLnfViewStepFactory , registerPlugin < PlasmaLnfViewStep > ( ) ; )
CALAMARES_PLUGIN_FACTORY_DEFINITION ( PlasmaLnfViewStepFactory , registerPlugin < PlasmaLnfViewStep > ( ) ; )
static QString
currentPlasmaTheme ( )
{
# ifdef WITH_KCONFIG
KConfigGroup cg ( KSharedConfig : : openConfig ( QStringLiteral ( " kdeglobals " ) ) , " KDE " ) ;
return cg . readEntry ( " LookAndFeelPackage " , QString ( ) ) ;
# else
cWarning ( ) < < " No KConfig support, cannot determine Plasma theme. " ;
return QString ( ) ;
# endif
}
PlasmaLnfViewStep : : PlasmaLnfViewStep ( QObject * parent )
PlasmaLnfViewStep : : PlasmaLnfViewStep ( QObject * parent )
: Calamares : : ViewStep ( parent )
: Calamares : : ViewStep ( parent )
, m_widget ( new PlasmaLnfPage )
, m_widget ( new PlasmaLnfPage )
@ -140,6 +157,8 @@ PlasmaLnfViewStep::setConfigurationMap( const QVariantMap& configurationMap )
QString preselect ;
QString preselect ;
if ( configurationMap . contains ( " preselect " ) & & configurationMap . value ( " preselect " ) . type ( ) = = QVariant : : String )
if ( configurationMap . contains ( " preselect " ) & & configurationMap . value ( " preselect " ) . type ( ) = = QVariant : : String )
preselect = configurationMap . value ( " preselect " ) . toString ( ) ;
preselect = configurationMap . value ( " preselect " ) . toString ( ) ;
if ( preselect = = QStringLiteral ( " * " ) )
preselect = currentPlasmaTheme ( ) ;
if ( ! preselect . isEmpty ( ) )
if ( ! preselect . isEmpty ( ) )
m_widget - > setPreselect ( preselect ) ;
m_widget - > setPreselect ( preselect ) ;