Browse Source
Add Application class. Put application initialization code to Application class. Place some code into separate functions.adaptive-webui-19844
Vladimir Golovnev (Glassez)
10 years ago
4 changed files with 349 additions and 238 deletions
@ -0,0 +1,101 @@
@@ -0,0 +1,101 @@
|
||||
/*
|
||||
* Bittorrent Client using Qt and libtorrent. |
||||
* Copyright (C) 2014 Vladimir Golovnev <glassez@yandex.ru> |
||||
* Copyright (C) 2006 Christophe Dumez |
||||
* |
||||
* This program 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 2 |
||||
* of the License, or (at your option) any later version. |
||||
* |
||||
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
||||
* |
||||
* In addition, as a special exception, the copyright holders give permission to |
||||
* link this program with the OpenSSL project's "OpenSSL" library (or with |
||||
* modified versions of it that use the same license as the "OpenSSL" library), |
||||
* and distribute the linked executables. You must obey the GNU General Public |
||||
* License in all respects for all of the code used other than "OpenSSL". If you |
||||
* modify file(s), you may extend this exception to your version of the file(s), |
||||
* but you are not obligated to do so. If you do not wish to do so, delete this |
||||
* exception statement from your version. |
||||
*/ |
||||
|
||||
#include <QDebug> |
||||
#include <QFileInfo> |
||||
#include <QLocale> |
||||
#include <QLibraryInfo> |
||||
#include <QSysInfo> |
||||
|
||||
#include "application.h" |
||||
#include "preferences.h" |
||||
|
||||
Application::Application(const QString &id, int &argc, char **argv) |
||||
#ifndef DISABLE_GUI |
||||
: SessionApplication(id, argc, argv) |
||||
#else |
||||
: QtSingleCoreApplication(id, argc, argv) |
||||
#endif |
||||
{ |
||||
#if defined(Q_OS_MACX) && !defined(DISABLE_GUI) |
||||
if (QSysInfo::MacintoshVersion > QSysInfo::MV_10_8) { |
||||
// fix Mac OS X 10.9 (mavericks) font issue
|
||||
// https://bugreports.qt-project.org/browse/QTBUG-32789
|
||||
QFont::insertSubstitution(".Lucida Grande UI", "Lucida Grande"); |
||||
} |
||||
#endif |
||||
setApplicationName("qBittorrent"); |
||||
initializeTranslation(); |
||||
#ifndef DISABLE_GUI |
||||
setStyleSheet("QStatusBar::item { border-width: 0; }"); |
||||
setQuitOnLastWindowClosed(false); |
||||
#endif |
||||
} |
||||
|
||||
void Application::initializeTranslation() |
||||
{ |
||||
Preferences* const pref = Preferences::instance(); |
||||
// Load translation
|
||||
QString locale = pref->getLocale(); |
||||
if (locale.isEmpty()) { |
||||
locale = QLocale::system().name(); |
||||
pref->setLocale(locale); |
||||
} |
||||
|
||||
if (qtTranslator_.load( |
||||
#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)) |
||||
QString::fromUtf8("qtbase_") + locale, QLibraryInfo::location(QLibraryInfo::TranslationsPath)) || |
||||
qtTranslator_.load( |
||||
#endif |
||||
QString::fromUtf8("qt_") + locale, QLibraryInfo::location(QLibraryInfo::TranslationsPath))) { |
||||
qDebug("Qt %s locale recognized, using translation.", qPrintable(locale)); |
||||
} |
||||
else { |
||||
qDebug("Qt %s locale unrecognized, using default (en).", qPrintable(locale)); |
||||
} |
||||
installTranslator(&qtTranslator_); |
||||
|
||||
if (translator_.load(QString::fromUtf8(":/lang/qbittorrent_") + locale)) { |
||||
qDebug("%s locale recognized, using translation.", qPrintable(locale)); |
||||
} |
||||
else { |
||||
qDebug("%s locale unrecognized, using default (en).", qPrintable(locale)); |
||||
} |
||||
installTranslator(&translator_); |
||||
|
||||
#ifndef DISABLE_GUI |
||||
if (locale.startsWith("ar") || locale.startsWith("he")) { |
||||
qDebug("Right to Left mode"); |
||||
setLayoutDirection(Qt::RightToLeft); |
||||
} |
||||
else { |
||||
setLayoutDirection(Qt::LeftToRight); |
||||
} |
||||
#endif |
||||
} |
@ -0,0 +1,59 @@
@@ -0,0 +1,59 @@
|
||||
/*
|
||||
* Bittorrent Client using Qt and libtorrent. |
||||
* Copyright (C) 2014 Vladimir Golovnev <glassez@yandex.ru> |
||||
* Copyright (C) 2006 Christophe Dumez |
||||
* |
||||
* This program 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 2 |
||||
* of the License, or (at your option) any later version. |
||||
* |
||||
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
||||
* |
||||
* In addition, as a special exception, the copyright holders give permission to |
||||
* link this program with the OpenSSL project's "OpenSSL" library (or with |
||||
* modified versions of it that use the same license as the "OpenSSL" library), |
||||
* and distribute the linked executables. You must obey the GNU General Public |
||||
* License in all respects for all of the code used other than "OpenSSL". If you |
||||
* modify file(s), you may extend this exception to your version of the file(s), |
||||
* but you are not obligated to do so. If you do not wish to do so, delete this |
||||
* exception statement from your version. |
||||
*/ |
||||
|
||||
#ifndef APPLICATION_H |
||||
#define APPLICATION_H |
||||
|
||||
#include <QStringList> |
||||
#include <QTranslator> |
||||
|
||||
#ifndef DISABLE_GUI |
||||
#include "sessionapplication.h" |
||||
#else |
||||
#include "qtsinglecoreapplication.h" |
||||
#endif |
||||
|
||||
class Application |
||||
#ifndef DISABLE_GUI |
||||
: public SessionApplication |
||||
#else |
||||
: public QtSingleCoreApplication |
||||
#endif |
||||
{ |
||||
public: |
||||
Application(const QString &id, int &argc, char **argv); |
||||
|
||||
private: |
||||
QTranslator qtTranslator_; |
||||
QTranslator translator_; |
||||
|
||||
void initializeTranslation(); |
||||
}; |
||||
|
||||
#endif // APPLICATION_H
|
Loading…
Reference in new issue