@ -36,10 +36,14 @@ class Config : public QObject
Q_PROPERTY ( const QStringList & supportedLocales READ supportedLocales CONSTANT FINAL )
Q_PROPERTY ( CalamaresUtils : : Locale : : CStringListModel * zonesModel READ zonesModel CONSTANT FINAL )
Q_PROPERTY ( CalamaresUtils : : Locale : : CStringListModel * regionModel READ regionModel CONSTANT FINAL )
Q_PROPERTY ( const CalamaresUtils : : Locale : : CStringPairList & timezoneData READ timezoneData CONSTANT FINAL )
Q_PROPERTY ( const CalamaresUtils : : Locale : : TZZone * currentLocation READ currentLocation WRITE setCurrentLocation
NOTIFY currentLocationChanged )
Q_PROPERTY ( QString currentLocationStatus READ currentLocationStatus NOTIFY currentLanguageStatusChanged )
Q_PROPERTY ( QString currentLanguageStatus READ currentLanguageStatus NOTIFY currentLanguageStatusChanged )
Q_PROPERTY ( QString currentLCStatus READ currentLCStatus NOTIFY currentLCStatusChanged )
public :
Config ( QObject * parent = nullptr ) ;
~ Config ( ) ;
@ -47,25 +51,37 @@ public:
void setConfigurationMap ( const QVariantMap & ) ;
Calamares : : JobList createJobs ( ) ;
/** @brief Human-readable status for language and LC
*
* For the current locale config , return two strings describing
* the settings for language and numbers .
*/
std : : pair < QString , QString > prettyLocaleStatus ( ) const ;
/** @brief Human-readable zone, language and LC status
// Underlying data for the models
const CalamaresUtils : : Locale : : CStringPairList & timezoneData ( ) const ;
/** @brief The currently selected location (timezone)
*
* Concatenates all three strings with < br / >
* The location is a pointer into the date that timezoneData ( ) returns .
* It is possible to return nullptr , if no location has been picked yet .
*/
QString prettyStatus ( ) const ;
const CalamaresUtils : : Locale : : TZZone * currentLocation ( ) const { return m_currentLocation ; }
/// locale configuration (LC_* and LANG) based solely on the current location.
LocaleConfiguration automaticLocaleConfiguration ( ) const ;
/// locale configuration that takes explicit settings into account
LocaleConfiguration localeConfiguration ( ) const ;
/// The human-readable description of what timezone is used
QString currentLocationStatus ( ) const ;
/// The human-readable description of what language is used
QString currentLanguageStatus ( ) const ;
/// The human-readable description of what locale (LC_*) is used
QString currentLCStatus ( ) const ;
public Q_SLOTS :
const QStringList & supportedLocales ( ) const { return m_localeGenLines ; }
CalamaresUtils : : Locale : : CStringListModel * regionModel ( ) const { return m_regionModel . get ( ) ; }
CalamaresUtils : : Locale : : CStringListModel * zonesModel ( ) const { return m_zonesModel . get ( ) ; }
// Underlying data for the models
const CalamaresUtils : : Locale : : CStringPairList & timezoneData ( ) const ;
public Q_SLOTS :
/// Set a language by user-choice, overriding future location changes
void setLanguageExplicitly ( const QString & language ) ;
/// Set LC (formats) by user-choice, overriding future location changes
void setLCLocaleExplicitly ( const QString & locale ) ;
/** @brief Sets a location by name
*
@ -82,25 +98,11 @@ public Q_SLOTS:
*/
void setCurrentLocation ( const CalamaresUtils : : Locale : : TZZone * location ) ;
/** @brief The currently selected location (timezone)
*
* The location is a pointer into the date that timezoneData ( ) returns .
* It is possible to return nullptr , if no location has been picked yet .
*/
const CalamaresUtils : : Locale : : TZZone * currentLocation ( ) const { return m_currentLocation ; }
/// locale configuration (LC_* and LANG) based solely on the current location.
LocaleConfiguration automaticLocaleConfiguration ( ) const ;
/// locale configuration that takes explicit settings into account
LocaleConfiguration localeConfiguration ( ) const ;
/// Set a language by user-choice, overriding future location changes
void setLanguageExplicitly ( const QString & language ) ;
/// Set LC (formats) by user-choice, overriding future location changes
void setLCLocaleExplicitly ( const QString & locale ) ;
signals :
void currentLocationChanged ( const CalamaresUtils : : Locale : : TZZone * location ) ;
void currentLocationChanged ( const CalamaresUtils : : Locale : : TZZone * location ) const ;
void currentLocationStatusChanged ( const QString & ) const ;
void currentLanguageStatusChanged ( const QString & ) const ;
void currentLCStatusChanged ( const QString & ) const ;
private :
/// A list of supported locale identifiers (e.g. "en_US.UTF-8")