f71c339094
Introduce extensions files aka .muxt. These files are archives with additional data to extend MuseScore with soundfonts, templates, custom workspaces, etc. Update qzip to fix bug with symlink. Add extensions management to resource manager.
166 lines
7.7 KiB
C++
166 lines
7.7 KiB
C++
//=============================================================================
|
|
// MuseScore
|
|
// Linux Music Score Editor
|
|
// Copyright (C) 2002-2018 Werner Schweer and others
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License version 2.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
//=============================================================================
|
|
|
|
#include "stringutils.h"
|
|
|
|
namespace Ms {
|
|
|
|
//---------------------------------------------------------
|
|
// removeLigatures
|
|
//---------------------------------------------------------
|
|
|
|
QString stringutils::removeLigatures(const QString& pre)
|
|
{
|
|
QString result = pre;
|
|
|
|
// Characters with above dots (Ae, ae, Oe, oe, Ue, ue
|
|
result = result.replace(QRegularExpression("[\\x{00C4}]"), QString("Ae"));
|
|
result = result.replace(QRegularExpression("[\\x{00E4}]"), QString("ae"));
|
|
result = result.replace(QRegularExpression("[\\x{00D6}]"), QString("Oe"));
|
|
result = result.replace(QRegularExpression("[\\x{00F6}]"), QString("oe"));
|
|
result = result.replace(QRegularExpression("[\\x{00DC}]"), QString("Ue"));
|
|
result = result.replace(QRegularExpression("[\\x{00FC}]"), QString("ue"));
|
|
|
|
// Latin Big Letter AA (Ꜳ) and Latin Small Letter aa (ꜳ)
|
|
result = result.replace(QRegularExpression("[\\x{A732}]"), QString("Aa"));
|
|
result = result.replace(QRegularExpression("[\\x{A733}]"), QString("aa"));
|
|
|
|
// Latin Big Letter AE (Æ) and Latin Small Letter ae (æ)
|
|
result = result.replace(QRegularExpression("[\\x{00C6}]"), QString("Ae"));
|
|
result = result.replace(QRegularExpression("[\\x{00E6}]"), QString("ae"));
|
|
|
|
// Latin Big Letter AO (Ꜵ) and Latin Small Letter ao (ꜵ)
|
|
result = result.replace(QRegularExpression("[\\x{A734}]"), QString("Ao"));
|
|
result = result.replace(QRegularExpression("[\\x{A735}]"), QString("ao"));
|
|
|
|
// Latin Big Letter AU (Ꜷ) and Latin Small Letter au (ꜷ)
|
|
result = result.replace(QRegularExpression("[\\x{A736}]"), QString("Au"));
|
|
result = result.replace(QRegularExpression("[\\x{A737}]"), QString("au"));
|
|
|
|
// IJ (IJ) and ij (ij)
|
|
result = result.replace(QRegularExpression("[\\x{0132}]"), QString("IJ"));
|
|
result = result.replace(QRegularExpression("[\\x{0133}]"), QString("ij"));
|
|
|
|
// Eszett SS (ẞ) and ss (ß)
|
|
result = result.replace(QRegularExpression("[\\x{1E9E}]"), QString("SS"));
|
|
result = result.replace(QRegularExpression("[\\x{00DF}]"), QString("ss"));
|
|
|
|
// O with stroke (Ø) and o with stroke (ø)
|
|
result = result.replace(QRegularExpression("[\\x{00D8}]"), QChar('O'));
|
|
result = result.replace(QRegularExpression("[\\x{00F8}]"), QChar('o'));
|
|
|
|
// Big Letter OE (Œ) and small letter oe (œ)
|
|
result = result.replace(QRegularExpression("[\\x{0152}]"), QString("Oe"));
|
|
result = result.replace(QRegularExpression("[\\x{0153}]"), QString("oe"));
|
|
|
|
// Big Letter OO (Ꝏ) and small letter oo (ꝏ)
|
|
result = result.replace(QRegularExpression("[\\x{A74E}]"), QString("Oo"));
|
|
result = result.replace(QRegularExpression("[\\x{A74F}]"), QString("oo"));
|
|
|
|
// ue (ᵫ)
|
|
result = result.replace(QRegularExpression("[\\x{1D6B}]"), QString("ue"));
|
|
|
|
return result;
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// removeDiacritics
|
|
//---------------------------------------------------------
|
|
|
|
QString stringutils::removeDiacritics(const QString& pre)
|
|
{
|
|
QString text = pre.normalized(QString::NormalizationForm_KD);
|
|
QString result;
|
|
for (int i = 0; i < text.length(); ++i) {
|
|
if (text.at(i).category() != QChar::Mark_NonSpacing) {
|
|
result.append(text.at(i));
|
|
}
|
|
}
|
|
result = result.normalized(QString::NormalizationForm_C);
|
|
return result;
|
|
}
|
|
|
|
//---------------------------------------------------------
|
|
// convertFileSizeToHumanReadable
|
|
//---------------------------------------------------------
|
|
|
|
QString stringutils::convertFileSizeToHumanReadable(const qlonglong& bytes)
|
|
{
|
|
QString number;
|
|
if (bytes < 0x400) {//If less than 1 KB, report in B
|
|
number = QLocale::system().toString(bytes);
|
|
number.append(" B");
|
|
return number;
|
|
}
|
|
else {
|
|
if (bytes >= 0x400 && bytes < 0x100000) { //If less than 1 MB, report in KB, unless rounded result is 1024 KB, then report in MB
|
|
qlonglong result = (bytes + (0x400 / 2)) / 0x400;
|
|
if(result < 0x400) {
|
|
number = QLocale::system().toString(result);
|
|
number.append(" kB");
|
|
return number;
|
|
}
|
|
else {
|
|
qlonglong result = (bytes + (0x100000 / 2)) / 0x100000;
|
|
number = QLocale::system().toString(result);
|
|
number.append(" MB");
|
|
return number;
|
|
}
|
|
}
|
|
else {
|
|
if (bytes >= 0x100000 && bytes < 0x40000000) { //If less than 1 GB, report in MB, unless rounded result is 1024 MB, then report in GB
|
|
qlonglong result = (bytes + (0x100000 / 2)) / 0x100000;
|
|
if (result < 0x100000) {
|
|
number = QLocale::system().toString(result);
|
|
number.append(" MB");
|
|
return number;
|
|
}
|
|
else {
|
|
qlonglong result = (bytes + (0x40000000 / 2)) / 0x40000000;
|
|
number = QLocale::system().toString(result);
|
|
number.append(" GB");
|
|
return number;
|
|
}
|
|
}
|
|
else {
|
|
if (bytes >= 0x40000000 && bytes < 0x10000000000) { //If less than 1 TB, report in GB, unless rounded result is 1024 GB, then report in TB
|
|
qlonglong result = (bytes + (0x40000000 / 2)) / 0x40000000;
|
|
if (result < 0x40000000) {
|
|
number = QLocale::system().toString(result);
|
|
number.append(" GB");
|
|
return number;
|
|
}
|
|
else {
|
|
qlonglong result = (bytes + (0x10000000000 / 2)) / 0x10000000000;
|
|
number = QLocale::system().toString(result);
|
|
number.append(" TB");
|
|
return number;
|
|
}
|
|
}
|
|
else {
|
|
qlonglong result = (bytes + (0x10000000000 / 2)) / 0x10000000000; //If more than 1 TB, report in TB
|
|
number = QLocale::system().toString(result);
|
|
number.append(" TB");
|
|
return number;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
} // namespace Ms
|