|
|
@ -34,13 +34,13 @@ LabelModel::LabelModel( const QStringList& locales, QObject* parent )
|
|
|
|
m_locales.reserve( locales.count() );
|
|
|
|
m_locales.reserve( locales.count() );
|
|
|
|
|
|
|
|
|
|
|
|
for ( const auto& l : locales )
|
|
|
|
for ( const auto& l : locales )
|
|
|
|
|
|
|
|
{
|
|
|
|
m_locales.push_back( Label( l ) );
|
|
|
|
m_locales.push_back( Label( l ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LabelModel::~LabelModel()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LabelModel::~LabelModel() {}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
int
|
|
|
|
LabelModel::rowCount( const QModelIndex& ) const
|
|
|
|
LabelModel::rowCount( const QModelIndex& ) const
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -51,10 +51,14 @@ QVariant
|
|
|
|
LabelModel::data( const QModelIndex& index, int role ) const
|
|
|
|
LabelModel::data( const QModelIndex& index, int role ) const
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if ( ( role != LabelRole ) && ( role != EnglishLabelRole ) )
|
|
|
|
if ( ( role != LabelRole ) && ( role != EnglishLabelRole ) )
|
|
|
|
|
|
|
|
{
|
|
|
|
return QVariant();
|
|
|
|
return QVariant();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( !index.isValid() )
|
|
|
|
if ( !index.isValid() )
|
|
|
|
|
|
|
|
{
|
|
|
|
return QVariant();
|
|
|
|
return QVariant();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const auto& locale = m_locales.at( index.row() );
|
|
|
|
const auto& locale = m_locales.at( index.row() );
|
|
|
|
switch ( role )
|
|
|
|
switch ( role )
|
|
|
@ -75,7 +79,9 @@ LabelModel::locale( int row ) const
|
|
|
|
{
|
|
|
|
{
|
|
|
|
for ( const auto& l : m_locales )
|
|
|
|
for ( const auto& l : m_locales )
|
|
|
|
if ( l.isEnglish() )
|
|
|
|
if ( l.isEnglish() )
|
|
|
|
|
|
|
|
{
|
|
|
|
return l;
|
|
|
|
return l;
|
|
|
|
|
|
|
|
}
|
|
|
|
return m_locales[ 0 ];
|
|
|
|
return m_locales[ 0 ];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return m_locales[ row ];
|
|
|
|
return m_locales[ row ];
|
|
|
@ -87,47 +93,48 @@ LabelModel::find( std::function<bool ( const Label& )> predicate ) const
|
|
|
|
for ( int row = 0; row < m_locales.count(); ++row )
|
|
|
|
for ( int row = 0; row < m_locales.count(); ++row )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if ( predicate( m_locales[ row ] ) )
|
|
|
|
if ( predicate( m_locales[ row ] ) )
|
|
|
|
|
|
|
|
{
|
|
|
|
return row;
|
|
|
|
return row;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
int
|
|
|
|
LabelModel::find( std::function< bool( const QLocale& ) > predicate ) const
|
|
|
|
LabelModel::find( std::function< bool( const QLocale& ) > predicate ) const
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return find( [&]( const Label& l )
|
|
|
|
return find( [&]( const Label& l ) { return predicate( l.locale() ); } );
|
|
|
|
{
|
|
|
|
|
|
|
|
return predicate( l.locale() );
|
|
|
|
|
|
|
|
} );
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
int
|
|
|
|
LabelModel::find( const QLocale& locale ) const
|
|
|
|
LabelModel::find( const QLocale& locale ) const
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return find( [&]( const Label& l )
|
|
|
|
return find( [&]( const Label& l ) { return locale == l.locale(); } );
|
|
|
|
{
|
|
|
|
|
|
|
|
return locale == l.locale();
|
|
|
|
|
|
|
|
} );
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
int
|
|
|
|
LabelModel::find( const QString& countryCode ) const
|
|
|
|
LabelModel::find( const QString& countryCode ) const
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if ( countryCode.length() != 2 )
|
|
|
|
if ( countryCode.length() != 2 )
|
|
|
|
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
auto c_l = countryData( countryCode );
|
|
|
|
auto c_l = countryData( countryCode );
|
|
|
|
int r = find( [&]( const Label& l ) { return ( l.language() == c_l.second ) && ( l.country() == c_l.first ); } );
|
|
|
|
int r = find( [&]( const Label& l ) { return ( l.language() == c_l.second ) && ( l.country() == c_l.first ); } );
|
|
|
|
if ( r >= 0 )
|
|
|
|
if ( r >= 0 )
|
|
|
|
|
|
|
|
{
|
|
|
|
return r;
|
|
|
|
return r;
|
|
|
|
|
|
|
|
}
|
|
|
|
return find( [&]( const Label& l ) { return l.language() == c_l.second; } );
|
|
|
|
return find( [&]( const Label& l ) { return l.language() == c_l.second; } );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LabelModel* availableTranslations()
|
|
|
|
LabelModel*
|
|
|
|
|
|
|
|
availableTranslations()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
static LabelModel* model = new LabelModel( QString( CALAMARES_TRANSLATION_LANGUAGES ).split( ';' ) );
|
|
|
|
static LabelModel* model = new LabelModel( QString( CALAMARES_TRANSLATION_LANGUAGES ).split( ';' ) );
|
|
|
|
return model;
|
|
|
|
return model;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
} // namespace Locale
|
|
|
|
} // namespace
|
|
|
|
} // namespace CalamaresUtils
|
|
|
|