1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
/************************************************************************
**
** Copyright (C) 2019 Kevin B. Hendricks, Stratford, Ontario Canada
** Copyright (C) 2019 Doug Massay
**
** This file is part of PageEdit.
**
** PageEdit is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
**
** PageEdit 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 PageEdit. If not, see <http://www.gnu.org/licenses/>.
**
*************************************************************************/
#include <QDir>
#include <QCoreApplication>
#include <QLibraryInfo>
#include <QString>
#include <QStringList>
#include "UIDictionary.h"
#include "Utility.h"
#if !defined(Q_OS_WIN32) && !defined(Q_OS_MAC)
#include <stdlib.h>
#endif
static QString DICTIONARY_FILE_SUFFIX = ".bdic";
QString UIDictionary::GetDictionaryPath()
{
QString dict_path;
// the environment variable takes precedence on all platforms
if (qEnvironmentVariableIsSet("QTWEBENGINE_DICTIONARIES_PATH")) {
dict_path = Utility::GetEnvironmentVar("QTWEBENGINE_DICTIONARIES_PATH");
return dict_path;
}
// next look relative to the executable
#ifndef Q_OS_MAC
dict_path = QCoreApplication::applicationDirPath() + "/qtwebengine_dictionaries";
#else
dict_path = QCoreApplication::applicationDirPath() + "/../Resources/qtwebengine_dictionaries";
#endif
if (QDir(dict_path).exists()) {
return dict_path;
}
// finally look inside the installed Qt directories
#ifndef Q_OS_MAC
dict_path = QLibraryInfo::location(QLibraryInfo::DataPath) + "/qtwebengine_dictionaries";
#else
dict_path = QCoreApplication::applicationDirPath() +
"/../Frameworks/QtWebEngineCore.framework/Resources/qtwebengine_dictionaries";
#endif
if (QDir(dict_path).exists()) {
return dict_path;
}
return QString();
}
QStringList UIDictionary::GetUIDictionaries()
{
QStringList dictionaries;
QString dict_path = GetDictionaryPath();
if (dict_path.isEmpty()) {
return dictionaries;
}
QDir dictDir(dict_path);
if (dictDir.exists()) {
QStringList filters;
// Look for all *.bdic files.
filters << "*" + DICTIONARY_FILE_SUFFIX;
dictDir.setNameFilters(filters);
QStringList dictionary_files = dictDir.entryList();
foreach(QString file, dictionary_files) {
QFileInfo fileInfo(file);
QString dname = fileInfo.baseName();
dictionaries.append(dname);
}
}
return dictionaries;
}
|