-
Notifications
You must be signed in to change notification settings - Fork 400
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
231 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* Ricochet - https://ricochet.im/ | ||
* Copyright (C) 2014, John Brooks <[email protected]> | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions are | ||
* met: | ||
* | ||
* * Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* | ||
* * Redistributions in binary form must reproduce the above | ||
* copyright notice, this list of conditions and the following disclaimer | ||
* in the documentation and/or other materials provided with the | ||
* distribution. | ||
* | ||
* * Neither the names of the copyright owners nor the names of its | ||
* contributors may be used to endorse or promote products derived from | ||
* this software without specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
|
||
#include "LanguagesModel.h" | ||
#include <QDir> | ||
#include <QLocale> | ||
#include <QVariant> | ||
|
||
LanguagesModel::LanguagesModel(QObject* parent) | ||
: QAbstractListModel(parent) | ||
{ | ||
// create the list of languages based on present translation files in ":/lang" folder | ||
QDir languagesFolder(QStringLiteral(":/lang")); | ||
languages.append(LanguageEntry(tr("System default"), QString())); | ||
foreach (const QString& translationFile, languagesFolder.entryList()) { | ||
QString localeID = translationFile; | ||
localeID.remove(QLatin1String("ricochet_")).remove(QLatin1String(".qm")); | ||
QString nativeName = QLocale(localeID).nativeLanguageName(); | ||
languages.append(LanguageEntry(nativeName, localeID)); | ||
} | ||
} | ||
|
||
int LanguagesModel::rowCount(const QModelIndex &) const | ||
{ | ||
return languages.length(); | ||
} | ||
|
||
QVariant LanguagesModel::data(const QModelIndex &index, int role) const | ||
{ | ||
if (index.row() >= 0 && index.row() < languages.length()) { | ||
switch( role ) { | ||
case NameRole: | ||
return languages[index.row()].nativeName; | ||
case LocaleIDRole: | ||
return languages[index.row()].localeID; | ||
default: | ||
return QVariant(); | ||
} | ||
} else { | ||
return QVariant(); | ||
} | ||
} | ||
|
||
QHash<int, QByteArray> LanguagesModel::roleNames() const | ||
{ | ||
QHash<int, QByteArray> roles; | ||
roles[NameRole] = "nativeName"; | ||
roles[LocaleIDRole] = "localeID"; | ||
return roles; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* Ricochet - https://ricochet.im/ | ||
* Copyright (C) 2014, John Brooks <[email protected]> | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions are | ||
* met: | ||
* | ||
* * Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* | ||
* * Redistributions in binary form must reproduce the above | ||
* copyright notice, this list of conditions and the following disclaimer | ||
* in the documentation and/or other materials provided with the | ||
* distribution. | ||
* | ||
* * Neither the names of the copyright owners nor the names of its | ||
* contributors may be used to endorse or promote products derived from | ||
* this software without specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
|
||
#ifndef LANGUAGESMODEL_H | ||
#define LANGUAGESMODEL_H | ||
|
||
#include <QAbstractListModel> | ||
|
||
class LanguagesModel : public QAbstractListModel | ||
{ | ||
public: | ||
enum { | ||
NameRole = Qt::UserRole, | ||
LocaleIDRole | ||
}; | ||
|
||
LanguagesModel(QObject* parent = 0); | ||
|
||
virtual int rowCount(const QModelIndex &parent) const; | ||
virtual QVariant data(const QModelIndex &index, int role) const; | ||
virtual QHash<int,QByteArray> roleNames() const; | ||
|
||
private: | ||
struct LanguageEntry | ||
{ | ||
QString nativeName; | ||
QString localeID; | ||
|
||
LanguageEntry(const QString& name, const QString& localeID) | ||
: nativeName(name), localeID(localeID) {} | ||
}; | ||
|
||
QList<LanguageEntry> languages; | ||
}; | ||
|
||
#endif // LANGUAGESMODEL_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
import QtQuick 2.0 | ||
import QtQuick.Controls 1.0 | ||
import QtQuick.Layouts 1.0 | ||
import im.ricochet 1.0 | ||
|
||
ColumnLayout { | ||
anchors { | ||
fill: parent | ||
margins: 8 | ||
} | ||
|
||
property string previousLanguage: uiSettings.data.language | ||
|
||
ExclusiveGroup { | ||
id: languageGroup | ||
} | ||
|
||
Item { height: 8 } | ||
|
||
Label { | ||
Layout.fillWidth: true | ||
text: qsTr("Select Language") | ||
} | ||
|
||
Item { height: 10 } | ||
|
||
GridLayout { | ||
columns: 2 | ||
|
||
Repeater { | ||
model: LanguagesModel { } | ||
delegate: RadioButton { | ||
id: languageSelection | ||
Layout.fillWidth: true | ||
text: nativeName | ||
checked: localeID === uiSettings.data.language | ||
exclusiveGroup: languageGroup | ||
onCheckedChanged: { | ||
if (checked && previousLanguage !== localeID) { | ||
restartNotification.visible = true | ||
uiSettings.write("language", localeID) | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
Item { height: 15 } | ||
|
||
Label { | ||
id: restartNotification | ||
text: qsTr("Restart Ricochet to apply changes") | ||
Layout.fillWidth: true | ||
horizontalAlignment: Text.AlignHCenter | ||
visible: false | ||
} | ||
|
||
Item { | ||
Layout.fillHeight: true | ||
Layout.fillWidth: true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters