Return of the maintenair

This commit is contained in:
Thierry 2018-08-22 16:52:51 +00:00 committed by Matthieu Gautier
parent 75be2c9311
commit 594ec51110
7 changed files with 59 additions and 66 deletions

View File

@ -6,7 +6,6 @@
QT += core gui QT += core gui
QT += webenginewidgets QT += webenginewidgets
QT += widgets qml quick
CONFIG += link_pkgconfig CONFIG += link_pkgconfig
@ -80,16 +79,15 @@ FORMS += \
ui/about.ui \ ui/about.ui \
src/tocsidebar.ui src/tocsidebar.ui
TRANSLATIONS = "resources/i18n/kiwix-desktop_fr.ts"
CODECFORSRC = UTF-8
isEmpty(PREFIX) { isEmpty(PREFIX) {
PREFIX = /usr/local PREFIX = /usr/local
} }
target.path = $$PREFIX/bin target.path = $$PREFIX/bin
INSTALLS += target INSTALLS += target
TRANSLATIONS = "resources/i18n/kiwix-desktop_fr.ts"
CODECFORSRC = UTF-8
static { static {
PKGCONFIG_OPTION = "--static" PKGCONFIG_OPTION = "--static"
} }

View File

@ -1,7 +1,10 @@
#include "kiwixapp.h" #include "kiwixapp.h"
#include "zim/error.h" #include "zim/error.h"
#include <QtWidgets> #include <QLocale>
#include <QTranslator>
#include <QObject>
#include <QLibraryInfo>
#include <QFontDatabase> #include <QFontDatabase>
#include <QStyleFactory> #include <QStyleFactory>
#include <QFile> #include <QFile>
@ -13,6 +16,15 @@
KiwixApp::KiwixApp(int& argc, char *argv[]) KiwixApp::KiwixApp(int& argc, char *argv[])
: QApplication(argc, argv) : QApplication(argc, argv)
{ {
QTranslator qtTranslator;
qtTranslator.load("qt_" + QLocale::system().name(),
QLibraryInfo::location(QLibraryInfo::TranslationsPath));
installTranslator(&qtTranslator);
QTranslator myappTranslator;
myappTranslator.load(":/i18n/kiwix-desktop.qm");
installTranslator(&myappTranslator);
auto icon = QIcon(); auto icon = QIcon();
icon.addFile(":/icons/kiwix/app_icon.svg"); icon.addFile(":/icons/kiwix/app_icon.svg");
setWindowIcon(icon); setWindowIcon(icon);
@ -84,7 +96,7 @@ void KiwixApp::openZimFile(const QString &zimfile)
if (_zimfile.isEmpty()) { if (_zimfile.isEmpty()) {
_zimfile = QFileDialog::getOpenFileName( _zimfile = QFileDialog::getOpenFileName(
getMainWindow(), getMainWindow(),
tr("Open Zim"), QObject::tr("Open Zim"),
QString(), QString(),
"ZimFile (*.zim*)"); "ZimFile (*.zim*)");
} }
@ -162,109 +174,109 @@ QAction *KiwixApp::getAction(KiwixApp::Actions action)
void KiwixApp::createAction() void KiwixApp::createAction()
{ {
CREATE_ACTION_ICON(KiwixServeAction, "share", tr("Local Kiwix Server")); CREATE_ACTION_ICON(KiwixServeAction, "share", QObject::tr("Local Kiwix Server"));
SET_SHORTCUT(KiwixServeAction, QKeySequence(Qt::CTRL+Qt::Key_I)); SET_SHORTCUT(KiwixServeAction, QKeySequence(Qt::CTRL+Qt::Key_I));
HIDE_ACTION(KiwixServeAction); HIDE_ACTION(KiwixServeAction);
CREATE_ACTION_ICON(RandomArticleAction, "random", tr("Random Article")); CREATE_ACTION_ICON(RandomArticleAction, "random", QObject::tr("Random Article"));
SET_SHORTCUT(RandomArticleAction, QKeySequence(Qt::CTRL+Qt::Key_R)); SET_SHORTCUT(RandomArticleAction, QKeySequence(Qt::CTRL+Qt::Key_R));
connect(mpa_actions[RandomArticleAction], &QAction::triggered, connect(mpa_actions[RandomArticleAction], &QAction::triggered,
this, [=]() { this->openRandomUrl(); }); this, [=]() { this->openRandomUrl(); });
CREATE_ACTION_ICON(PrintAction, "print", tr("Print")); CREATE_ACTION_ICON(PrintAction, "print", QObject::tr("Print"));
SET_SHORTCUT(PrintAction, QKeySequence::Print); SET_SHORTCUT(PrintAction, QKeySequence::Print);
connect(mpa_actions[PrintAction], &QAction::triggered, connect(mpa_actions[PrintAction], &QAction::triggered,
this, &KiwixApp::printPage); this, &KiwixApp::printPage);
CREATE_ACTION(NewTabAction, tr("New tab")); CREATE_ACTION(NewTabAction, QObject::tr("New tab"));
SET_SHORTCUT(NewTabAction, QKeySequence::AddTab); SET_SHORTCUT(NewTabAction, QKeySequence::AddTab);
CREATE_ACTION(CloseTabAction, tr("Close tab")); CREATE_ACTION(CloseTabAction, QObject::tr("Close tab"));
SET_SHORTCUT(CloseTabAction, QKeySequence::Close); SET_SHORTCUT(CloseTabAction, QKeySequence::Close);
CREATE_ACTION(ReopenClosedTabAction, tr("Reopen closed tab")); CREATE_ACTION(ReopenClosedTabAction, QObject::tr("Reopen closed tab"));
SET_SHORTCUT(ReopenClosedTabAction, QKeySequence(Qt::CTRL+Qt::SHIFT+Qt::Key_T)); SET_SHORTCUT(ReopenClosedTabAction, QKeySequence(Qt::CTRL+Qt::SHIFT+Qt::Key_T));
HIDE_ACTION(ReopenClosedTabAction); HIDE_ACTION(ReopenClosedTabAction);
CREATE_ACTION(BrowseLibraryAction, tr("Browse library")); CREATE_ACTION(BrowseLibraryAction, QObject::tr("Browse library"));
SET_SHORTCUT(BrowseLibraryAction, QKeySequence(Qt::CTRL+Qt::Key_E)); SET_SHORTCUT(BrowseLibraryAction, QKeySequence(Qt::CTRL+Qt::Key_E));
HIDE_ACTION(BrowseLibraryAction); HIDE_ACTION(BrowseLibraryAction);
CREATE_ACTION(OpenFileAction, tr("Open file")); CREATE_ACTION(OpenFileAction, QObject::tr("Open file"));
SET_SHORTCUT(OpenFileAction, QKeySequence::Open); SET_SHORTCUT(OpenFileAction, QKeySequence::Open);
connect(mpa_actions[OpenFileAction], &QAction::triggered, connect(mpa_actions[OpenFileAction], &QAction::triggered,
this, [=]() { openZimFile(); }); this, [=]() { openZimFile(); });
CREATE_ACTION(OpenRecentAction, tr("Open recent")); CREATE_ACTION(OpenRecentAction, QObject::tr("Open recent"));
HIDE_ACTION(OpenRecentAction); HIDE_ACTION(OpenRecentAction);
CREATE_ACTION(SavePageAsAction, tr("Save page as ...")); CREATE_ACTION(SavePageAsAction, QObject::tr("Save page as ..."));
SET_SHORTCUT(SavePageAsAction, QKeySequence::SaveAs); SET_SHORTCUT(SavePageAsAction, QKeySequence::SaveAs);
HIDE_ACTION(SavePageAsAction); HIDE_ACTION(SavePageAsAction);
CREATE_ACTION(SearchArticleAction, tr("Search article")); CREATE_ACTION(SearchArticleAction, QObject::tr("Search article"));
SET_SHORTCUT(SearchArticleAction, QKeySequence(Qt::CTRL+Qt::Key_L)); SET_SHORTCUT(SearchArticleAction, QKeySequence(Qt::CTRL+Qt::Key_L));
HIDE_ACTION(SearchArticleAction); HIDE_ACTION(SearchArticleAction);
CREATE_ACTION(SearchLibraryAction, tr("Search in library")); CREATE_ACTION(SearchLibraryAction, QObject::tr("Search in library"));
SET_SHORTCUT(SearchLibraryAction, QKeySequence(Qt::CTRL+Qt::SHIFT+Qt::Key_R)); SET_SHORTCUT(SearchLibraryAction, QKeySequence(Qt::CTRL+Qt::SHIFT+Qt::Key_R));
HIDE_ACTION(SearchLibraryAction); HIDE_ACTION(SearchLibraryAction);
CREATE_ACTION(FindInPageAction, tr("Find in page")); CREATE_ACTION(FindInPageAction, QObject::tr("Find in page"));
SET_SHORTCUT(FindInPageAction, QKeySequence::Find); SET_SHORTCUT(FindInPageAction, QKeySequence::Find);
CREATE_ACTION_ICON(ToggleFullscreenAction, "full-screen-enter", tr("Set fullScreen")); CREATE_ACTION_ICON(ToggleFullscreenAction, "full-screen-enter", QObject::tr("Set fullScreen"));
SET_SHORTCUT(ToggleFullscreenAction, QKeySequence::FullScreen); SET_SHORTCUT(ToggleFullscreenAction, QKeySequence::FullScreen);
connect(mpa_actions[ToggleFullscreenAction], &QAction::toggled, connect(mpa_actions[ToggleFullscreenAction], &QAction::toggled,
this, [=](bool checked) { this, [=](bool checked) {
auto action = mpa_actions[ToggleFullscreenAction]; auto action = mpa_actions[ToggleFullscreenAction];
action->setIcon( action->setIcon(
QIcon(checked ? ":/icons/full-screen-exit.svg" : ":/icons/full-screen-enter.svg")); QIcon(checked ? ":/icons/full-screen-exit.svg" : ":/icons/full-screen-enter.svg"));
action->setText(checked ? tr("Quit fullScreen") : tr("Set fullScreen")); action->setText(checked ? QObject::tr("Quit fullScreen") : QObject::tr("Set fullScreen"));
}); });
mpa_actions[ToggleFullscreenAction]->setCheckable(true); mpa_actions[ToggleFullscreenAction]->setCheckable(true);
CREATE_ACTION(ToggleTOCAction, tr("Table of content")); CREATE_ACTION(ToggleTOCAction, QObject::tr("Table of content"));
SET_SHORTCUT(ToggleTOCAction, QKeySequence(Qt::CTRL+Qt::SHIFT+Qt::Key_1)); SET_SHORTCUT(ToggleTOCAction, QKeySequence(Qt::CTRL+Qt::SHIFT+Qt::Key_1));
HIDE_ACTION(ToggleTOCAction); HIDE_ACTION(ToggleTOCAction);
CREATE_ACTION(ToggleReadingListAction, tr("Reading list")); CREATE_ACTION(ToggleReadingListAction, QObject::tr("Reading list"));
SET_SHORTCUT(ToggleReadingListAction, QKeySequence(Qt::CTRL+Qt::SHIFT+Qt::Key_2)); SET_SHORTCUT(ToggleReadingListAction, QKeySequence(Qt::CTRL+Qt::SHIFT+Qt::Key_2));
HIDE_ACTION(ToggleReadingListAction); HIDE_ACTION(ToggleReadingListAction);
CREATE_ACTION(ZoomInAction, tr("Zoom in")); CREATE_ACTION(ZoomInAction, QObject::tr("Zoom in"));
SET_SHORTCUT(ZoomInAction, QKeySequence::ZoomIn); SET_SHORTCUT(ZoomInAction, QKeySequence::ZoomIn);
CREATE_ACTION(ZoomOutAction, tr("Zoom out")); CREATE_ACTION(ZoomOutAction, QObject::tr("Zoom out"));
SET_SHORTCUT(ZoomOutAction, QKeySequence::ZoomOut); SET_SHORTCUT(ZoomOutAction, QKeySequence::ZoomOut);
CREATE_ACTION(ZoomResetAction, tr("Zoom reset")); CREATE_ACTION(ZoomResetAction, QObject::tr("Zoom reset"));
SET_SHORTCUT(ZoomResetAction, QKeySequence(Qt::CTRL+Qt::Key_0)); SET_SHORTCUT(ZoomResetAction, QKeySequence(Qt::CTRL+Qt::Key_0));
CREATE_ACTION(HelpAction, tr("Help")); CREATE_ACTION(HelpAction, QObject::tr("Help"));
SET_SHORTCUT(HelpAction, QKeySequence::HelpContents); SET_SHORTCUT(HelpAction, QKeySequence::HelpContents);
HIDE_ACTION(HelpAction); HIDE_ACTION(HelpAction);
CREATE_ACTION(FeedbackAction, tr("Feedback")); CREATE_ACTION(FeedbackAction, QObject::tr("Feedback"));
HIDE_ACTION(FeedbackAction); HIDE_ACTION(FeedbackAction);
CREATE_ACTION(ReportBugAction, tr("Repost a bug")); CREATE_ACTION(ReportBugAction, QObject::tr("Repost a bug"));
HIDE_ACTION(ReportBugAction); HIDE_ACTION(ReportBugAction);
CREATE_ACTION(RequestFeatureAction, tr("Request a feature")); CREATE_ACTION(RequestFeatureAction, QObject::tr("Request a feature"));
HIDE_ACTION(RequestFeatureAction); HIDE_ACTION(RequestFeatureAction);
CREATE_ACTION(AboutAction, tr("About Kiwix")); CREATE_ACTION(AboutAction, QObject::tr("About Kiwix"));
CREATE_ACTION_ICON(SettingAction, "settings", tr("Settings")); CREATE_ACTION_ICON(SettingAction, "settings", QObject::tr("Settings"));
SET_SHORTCUT(SettingAction, QKeySequence::Preferences); SET_SHORTCUT(SettingAction, QKeySequence::Preferences);
HIDE_ACTION(SettingAction); HIDE_ACTION(SettingAction);
CREATE_ACTION_ICON(DonateAction, "donate", tr("Donate to support Kiwix")); CREATE_ACTION_ICON(DonateAction, "donate", QObject::tr("Donate to support Kiwix"));
//SET_SHORTCUT(DonateAction, QKeySequence(Qt::CTRL+Qt::Key_BracketLeft+Qt::Key_3)); //SET_SHORTCUT(DonateAction, QKeySequence(Qt::CTRL+Qt::Key_BracketLeft+Qt::Key_3));
HIDE_ACTION(DonateAction); HIDE_ACTION(DonateAction);
CREATE_ACTION_ICON(ExitAction, "exit", tr("Exit")); CREATE_ACTION_ICON(ExitAction, "exit", QObject::tr("Exit"));
SET_SHORTCUT(ExitAction, QKeySequence::Quit); SET_SHORTCUT(ExitAction, QKeySequence::Quit);
} }

View File

@ -1,6 +1,5 @@
#include "library.h" #include "library.h"
#include <QObject>
#include <QtDebug> #include <QtDebug>
Library::Library() Library::Library()
@ -17,7 +16,7 @@ QString Library::openBook(const QString &zimPath)
if(QString::fromStdString(it->second->getZimFilePath()) == zimPath) if(QString::fromStdString(it->second->getZimFilePath()) == zimPath)
return it->first; return it->first;
} }
qInfo() << QObject::tr("Opening") << zimPath; qInfo() << "Opening" << zimPath;
auto zimPath_ = zimPath.toStdString(); auto zimPath_ = zimPath.toStdString();
auto reader = std::shared_ptr<kiwix::Reader>(new kiwix::Reader(zimPath_)); auto reader = std::shared_ptr<kiwix::Reader>(new kiwix::Reader(zimPath_));
auto id = QString::fromStdString(reader->getId() + ".zim"); auto id = QString::fromStdString(reader->getId() + ".zim");

View File

@ -1,7 +1,5 @@
#include "kiwixapp.h" #include "kiwixapp.h"
#include <QTranslator>
#include <QLibraryInfo>
#include <QCommandLineParser> #include <QCommandLineParser>
#include <iostream> #include <iostream>
@ -10,20 +8,6 @@ int main(int argc, char *argv[])
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
KiwixApp a(argc, argv); KiwixApp a(argc, argv);
// format systems language
QString defaultLocale = QLocale::system().name(); // e.g. "de_DE"
defaultLocale.truncate(defaultLocale.lastIndexOf('_')); // e.g. "de"
QLocale::setDefault(defaultLocale);
QTranslator qtTranslator;
qtTranslator.load("qt_" + QLocale::system().name(),
QLibraryInfo::location(QLibraryInfo::TranslationsPath));
a.installTranslator(&qtTranslator);
QTranslator myappTranslator;
myappTranslator.load(":/i18n/kiwix-desktop.qm");
a.installTranslator(&myappTranslator);
QCommandLineParser parser; QCommandLineParser parser;
parser.addPositionalArgument("zimfile", "The zim file"); parser.addPositionalArgument("zimfile", "The zim file");

View File

@ -1,4 +1,4 @@
#include <QtWidgets> #include <QTranslator>
#include "mainmenu.h" #include "mainmenu.h"
#include "kiwixapp.h" #include "kiwixapp.h"
@ -15,7 +15,7 @@ MainMenu::MainMenu(QWidget *parent) :
ADD_ACTION(PrintAction); ADD_ACTION(PrintAction);
addSeparator(); addSeparator();
m_fileMenu.setTitle(tr("File")); m_fileMenu.setTitle(QObject::tr("File"));
m_fileMenu.ADD_ACTION(NewTabAction); m_fileMenu.ADD_ACTION(NewTabAction);
m_fileMenu.ADD_ACTION(CloseTabAction); m_fileMenu.ADD_ACTION(CloseTabAction);
m_fileMenu.ADD_ACTION(ReopenClosedTabAction); m_fileMenu.ADD_ACTION(ReopenClosedTabAction);
@ -25,13 +25,13 @@ MainMenu::MainMenu(QWidget *parent) :
m_fileMenu.ADD_ACTION(SavePageAsAction); m_fileMenu.ADD_ACTION(SavePageAsAction);
addMenu(&m_fileMenu); addMenu(&m_fileMenu);
m_editMenu.setTitle(tr("Edit")); m_editMenu.setTitle(QObject::tr("Edit"));
m_editMenu.ADD_ACTION(SearchArticleAction); m_editMenu.ADD_ACTION(SearchArticleAction);
m_editMenu.ADD_ACTION(SearchLibraryAction); m_editMenu.ADD_ACTION(SearchLibraryAction);
m_editMenu.ADD_ACTION(FindInPageAction); m_editMenu.ADD_ACTION(FindInPageAction);
addMenu(&m_editMenu); addMenu(&m_editMenu);
m_viewMenu.setTitle(tr("View")); m_viewMenu.setTitle(QObject::tr("View"));
m_viewMenu.ADD_ACTION(ToggleFullscreenAction); m_viewMenu.ADD_ACTION(ToggleFullscreenAction);
m_viewMenu.ADD_ACTION(ToggleTOCAction); m_viewMenu.ADD_ACTION(ToggleTOCAction);
m_viewMenu.ADD_ACTION(ToggleReadingListAction); m_viewMenu.ADD_ACTION(ToggleReadingListAction);
@ -40,11 +40,11 @@ MainMenu::MainMenu(QWidget *parent) :
m_viewMenu.ADD_ACTION(ZoomResetAction); m_viewMenu.ADD_ACTION(ZoomResetAction);
addMenu(&m_viewMenu); addMenu(&m_viewMenu);
m_toolsMenu.setTitle(tr("Tools")); m_toolsMenu.setTitle(QObject::tr("Tools"));
// m_toolsMenu.addAction(); // m_toolsMenu.addAction();
// addMenu(&m_toolsMenu); // addMenu(&m_toolsMenu);
m_helpMenu.setTitle(tr("Help")); m_helpMenu.setTitle(QObject::tr("Help"));
m_helpMenu.ADD_ACTION(HelpAction); m_helpMenu.ADD_ACTION(HelpAction);
m_helpMenu.ADD_ACTION(FeedbackAction); m_helpMenu.ADD_ACTION(FeedbackAction);
m_helpMenu.ADD_ACTION(ReportBugAction); m_helpMenu.ADD_ACTION(ReportBugAction);

View File

@ -1,6 +1,6 @@
#include "searchbar.h" #include "searchbar.h"
#include <QtWidgets> #include <QObject>
#include <QCompleter> #include <QCompleter>
#include <QTimer> #include <QTimer>
@ -10,7 +10,7 @@ SearchBar::SearchBar(QWidget *parent) :
QLineEdit(parent), QLineEdit(parent),
m_completer(&m_completionModel, this) m_completer(&m_completionModel, this)
{ {
setPlaceholderText(tr("Search")); setPlaceholderText(QObject::tr("Search"));
m_completer.setCompletionMode(QCompleter::UnfilteredPopupCompletion); m_completer.setCompletionMode(QCompleter::UnfilteredPopupCompletion);
setCompleter(&m_completer); setCompleter(&m_completer);
connect(this, &QLineEdit::textEdited, this, &SearchBar::updateCompletion); connect(this, &QLineEdit::textEdited, this, &SearchBar::updateCompletion);

View File

@ -4,7 +4,7 @@
#include "kiwixapp.h" #include "kiwixapp.h"
#include "mainmenu.h" #include "mainmenu.h"
#include <QtWidgets> #include <QObject>
#include <QMouseEvent> #include <QMouseEvent>
#include <QAction> #include <QAction>
@ -13,16 +13,16 @@ TopWidget::TopWidget(QWidget *parent) :
{ {
mp_historyBackAction = new QAction(this); mp_historyBackAction = new QAction(this);
mp_historyBackAction->setIcon(QIcon(":/icons/back.svg")); mp_historyBackAction->setIcon(QIcon(":/icons/back.svg"));
mp_historyBackAction->setText(tr("back")); mp_historyBackAction->setText(QObject::tr("back"));
mp_historyBackAction->setToolTip(tr("back")); mp_historyBackAction->setToolTip(QObject::tr("back"));
connect(mp_historyBackAction, &QAction::triggered, [this](){ connect(mp_historyBackAction, &QAction::triggered, [this](){
KiwixApp::instance()->getTabWidget()->triggerWebPageAction(QWebEnginePage::Back); KiwixApp::instance()->getTabWidget()->triggerWebPageAction(QWebEnginePage::Back);
}); });
addAction(mp_historyBackAction); addAction(mp_historyBackAction);
mp_historyForwardAction = new QAction(this); mp_historyForwardAction = new QAction(this);
mp_historyForwardAction->setIcon(QIcon(":/icons/forward.svg")); mp_historyForwardAction->setIcon(QIcon(":/icons/forward.svg"));
mp_historyForwardAction->setText(tr("forward")); mp_historyForwardAction->setText(QObject::tr("forward"));
mp_historyForwardAction->setToolTip(tr("forward")); mp_historyForwardAction->setToolTip(QObject::tr("forward"));
connect(mp_historyForwardAction, &QAction::triggered, [this](){ connect(mp_historyForwardAction, &QAction::triggered, [this](){
KiwixApp::instance()->getTabWidget()->triggerWebPageAction(QWebEnginePage::Forward); KiwixApp::instance()->getTabWidget()->triggerWebPageAction(QWebEnginePage::Forward);
}); });