/* * The ManaPlus Client * Copyright (C) 2009 The Mana World Development Team * Copyright (C) 2009-2010 Andrei Karas * Copyright (C) 2011-2012 The ManaPlus developers * * This file is part of The ManaPlus Client. * * 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 * 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, see . */ #include "gui/setup_theme.h" #include "gui/gui.h" #include "gui/editdialog.h" #include "gui/okdialog.h" #include "gui/widgets/button.h" #include "gui/widgets/checkbox.h" #include "gui/widgets/dropdown.h" #include "gui/widgets/label.h" #include "gui/widgets/layouthelper.h" #include "gui/widgets/namesmodel.h" #include "configuration.h" #include "localplayer.h" #include "utils/gettext.h" #include "resources/resourcemanager.h" #include "debug.h" const char* ACTION_THEME = "theme"; const char* ACTION_FONT = "font"; const char* ACTION_LANG = "lang"; const char* ACTION_BOLD_FONT = "bold font"; const char* ACTION_PARTICLE_FONT = "particle font"; const char* ACTION_HELP_FONT = "help font"; const char* ACTION_SECURE_FONT = "secure font"; const char* ACTION_JAPAN_FONT = "japan font"; const char* ACTION_INFO = "info"; class ThemesModel final : public NamesModel { public: ThemesModel() : NamesModel() { mNames.push_back(gettext("(default)")); Theme::fillSkinsList(mNames); } virtual ~ThemesModel() { } }; class FontsModel final : public NamesModel { public: FontsModel() : NamesModel() { Theme::fillFontsList(mNames); } virtual ~FontsModel() { } }; const int maxFontSizes = 11; const char *SIZE_NAME[maxFontSizes] = { N_("Very small (9)"), N_("Tiny (10)"), N_("Small (11)"), N_("Medium (12)"), N_("Normal (13)"), N_("Large (14)"), N_("Very large (15)"), N_("Big (16)"), N_("Very big (17)"), N_("Huge (18)"), N_("Very huge (19)"), }; class FontSizeChoiceListModel final : public gcn::ListModel { public: virtual ~FontSizeChoiceListModel() { } virtual int getNumberOfElements() { return maxFontSizes; } virtual std::string getElementAt(int i) { if (i >= getNumberOfElements() || i < 0) return _("???"); return gettext(SIZE_NAME[i]); } }; struct Language final { std::string name; std::string value; }; const int langs_count = 16; const Language LANG_NAME[langs_count] = { {N_("(default)"), ""}, {N_("Chinese (China)"), "zh_CN"}, {N_("Czech"), "cs_CZ"}, {N_("English"), "C"}, {N_("Finnish"), "fi_FI"}, {N_("French"), "fr_FR"}, {N_("German"), "de_DE"}, {N_("Indonesian"), "id_ID"}, {N_("Italian"), "it_IT"}, {N_("Polish"), "pl_PL"}, {N_("Japanese"), "ja_JP.utf8"}, {N_("Dutch (Belgium/Flemish)"), "nl_BE"}, {N_("Portuguese"), "pt_PT"}, {N_("Portuguese (Brazilian)"), "pt_BR"}, {N_("Russian"), "ru_RU"}, {N_("Spanish (Castilian)"), "es_ES"} }; class LangListModel final : public gcn::ListModel { public: virtual ~LangListModel() { } virtual int getNumberOfElements() override { return langs_count; } virtual std::string getElementAt(int i) override { if (i >= getNumberOfElements() || i < 0) return _("???"); return gettext(LANG_NAME[i].name.c_str()); } }; Setup_Theme::Setup_Theme(const Widget2 *const widget) : SetupTab(widget), mThemeLabel(new Label(this, _("Gui theme"))), mThemesModel(new ThemesModel), mThemeDropDown(new DropDown(this, mThemesModel)), mTheme(config.getStringValue("theme")), mFontsModel(new FontsModel), mFontLabel(new Label(this, _("Main Font"))), mFontDropDown(new DropDown(this, mFontsModel)), mFont(config.getStringValue("font")), mLangListModel(new LangListModel), mLangLabel(new Label(this, _("Language"))), mLangDropDown(new DropDown(this, mLangListModel)), mLang(config.getStringValue("lang")), mBoldFontLabel(new Label(this, _("Bold font"))), mBoldFontDropDown(new DropDown(this, mFontsModel)), mBoldFont(config.getStringValue("boldFont")), mParticleFontLabel(new Label(this, _("Particle font"))), mParticleFontDropDown(new DropDown(this, mFontsModel)), mParticleFont(config.getStringValue("particleFont")), mHelpFontLabel(new Label(this, _("Help font"))), mHelpFontDropDown(new DropDown(this, mFontsModel)), mHelpFont(config.getStringValue("helpFont")), mSecureFontLabel(new Label(this, _("Secure font"))), mSecureFontDropDown(new DropDown(this, mFontsModel)), mSecureFont(config.getStringValue("secureFont")), mJapanFontLabel(new Label(this, _("Japanese font"))), mJapanFontDropDown(new DropDown(this, mFontsModel)), mJapanFont(config.getStringValue("japanFont")), mFontSizeListModel(new FontSizeChoiceListModel), mFontSizeLabel(new Label(this, _("Font size"))), mFontSize(config.getIntValue("fontSize")), mFontSizeDropDown(new DropDown(this, mFontSizeListModel)), mNpcFontSizeListModel(new FontSizeChoiceListModel), mNpcFontSizeLabel(new Label(this, _("Npc font size"))), mNpcFontSize(config.getIntValue("npcfontSize")), mNpcFontSizeDropDown(new DropDown(this, mNpcFontSizeListModel)), // TRANSLATORS: button name with information about selected theme mInfoButton(new Button(this, _(" i "), ACTION_INFO, this)) { setName(_("Theme")); mThemeDropDown->setActionEventId(ACTION_THEME); mThemeDropDown->addActionListener(this); mFontDropDown->setActionEventId(ACTION_FONT); mFontDropDown->addActionListener(this); mLangDropDown->setActionEventId(ACTION_LANG); mLangDropDown->addActionListener(this); mBoldFontDropDown->setActionEventId(ACTION_BOLD_FONT); mBoldFontDropDown->addActionListener(this); mParticleFontDropDown->setActionEventId(ACTION_PARTICLE_FONT); mParticleFontDropDown->addActionListener(this); mHelpFontDropDown->setActionEventId(ACTION_HELP_FONT); mHelpFontDropDown->addActionListener(this); mSecureFontDropDown->setActionEventId(ACTION_SECURE_FONT); mSecureFontDropDown->addActionListener(this); mJapanFontDropDown->setActionEventId(ACTION_JAPAN_FONT); mJapanFontDropDown->addActionListener(this); mFontSizeDropDown->setSelected(mFontSize - 9); mFontSizeDropDown->adjustHeight(); mNpcFontSizeDropDown->setSelected(mNpcFontSize - 9); mNpcFontSizeDropDown->adjustHeight(); std::string skin = Theme::getThemeName(); if (!skin.empty()) mThemeDropDown->setSelectedString(skin); else mThemeDropDown->setSelected(0); const std::string str = config.getStringValue("lang"); for (int f = 0; f < langs_count; f ++) { if (LANG_NAME[f].value == str) { mLangDropDown->setSelected(f); break; } } mFontDropDown->setSelectedString(getFileName( config.getStringValue("font"))); mBoldFontDropDown->setSelectedString(getFileName( config.getStringValue("boldFont"))); mParticleFontDropDown->setSelectedString(getFileName( config.getStringValue("particleFont"))); mHelpFontDropDown->setSelectedString(getFileName( config.getStringValue("helpFont"))); mSecureFontDropDown->setSelectedString(getFileName( config.getStringValue("secureFont"))); mJapanFontDropDown->setSelectedString(getFileName( config.getStringValue("japanFont"))); updateInfo(); // Do the layout LayoutHelper h(this); ContainerPlacer place = h.getPlacer(0, 0); place(0, 0, mThemeLabel, 5); place(0, 1, mLangLabel, 5); place(0, 2, mFontSizeLabel, 5); place(0, 3, mNpcFontSizeLabel, 5); place(0, 4, mFontLabel, 5); place(0, 5, mBoldFontLabel, 5); place(0, 6, mParticleFontLabel, 5); place(0, 7, mHelpFontLabel, 5); place(0, 8, mSecureFontLabel, 5); place(0, 9, mJapanFontLabel, 5); place(6, 0, mThemeDropDown, 10); place(6, 1, mLangDropDown, 10); place(6, 2, mFontSizeDropDown, 10); place(6, 3, mNpcFontSizeDropDown, 10); place(6, 4, mFontDropDown, 10); place(6, 5, mBoldFontDropDown, 10); place(6, 6, mParticleFontDropDown, 10); place(6, 7, mHelpFontDropDown, 10); place(6, 8, mSecureFontDropDown, 10); place(6, 9, mJapanFontDropDown, 10); place(17, 0, mInfoButton, 1); setDimension(gcn::Rectangle(0, 0, 365, 500)); } Setup_Theme::~Setup_Theme() { delete mThemesModel; mThemesModel = nullptr; delete mFontsModel; mFontsModel = nullptr; delete mFontSizeListModel; mFontSizeListModel = nullptr; delete mNpcFontSizeListModel; mNpcFontSizeListModel = nullptr; delete mLangListModel; mLangListModel = nullptr; } void Setup_Theme::updateInfo() { ThemeInfo *info = Theme::loadInfo(mTheme); if (info) { mThemeInfo = "Name: " + info->name + "\nCopyright:\n" + info->copyright; } else { mThemeInfo = ""; } replaceAll(mThemeInfo, "\\n", "\n"); mInfoButton->setEnabled(!mThemeInfo.empty()); delete info; } void Setup_Theme::action(const gcn::ActionEvent &event) { if (event.getId() == ACTION_THEME) { if (mThemeDropDown->getSelected() == 0) mTheme = ""; else mTheme = mThemeDropDown->getSelectedString(); updateInfo(); } else if (event.getId() == ACTION_FONT) { mFont = mFontDropDown->getSelectedString(); } else if (event.getId() == ACTION_LANG) { const int id = mLangDropDown->getSelected(); if (id < 0 || id >= langs_count) mLang = ""; else mLang = LANG_NAME[id].value; } else if (event.getId() == ACTION_BOLD_FONT) { mBoldFont = mBoldFontDropDown->getSelectedString(); } else if (event.getId() == ACTION_PARTICLE_FONT) { mParticleFont = mParticleFontDropDown->getSelectedString(); } else if (event.getId() == ACTION_HELP_FONT) { mHelpFont = mHelpFontDropDown->getSelectedString(); } else if (event.getId() == ACTION_SECURE_FONT) { mSecureFont = mSecureFontDropDown->getSelectedString(); } else if (event.getId() == ACTION_JAPAN_FONT) { mJapanFont = mJapanFontDropDown->getSelectedString(); } else if (event.getId() == ACTION_INFO) { new OkDialog(_("Theme info"), mThemeInfo, DIALOG_OK, false, true, nullptr, 600); } } void Setup_Theme::cancel() { mTheme = config.getStringValue("theme"); mLang = config.getStringValue("lang"); mFont = getFileName(config.getStringValue("font")); mBoldFont = getFileName(config.getStringValue("boldFont")); mParticleFont = getFileName(config.getStringValue("particleFont")); mHelpFont = getFileName(config.getStringValue("helpFont")); mSecureFont = getFileName(config.getStringValue("secureFont")); mJapanFont = getFileName(config.getStringValue("japanFont")); } void Setup_Theme::apply() { if (config.getStringValue("theme") != mTheme) { new OkDialog(_("Theme Changed"), _("Restart your client for " "the change to take effect.")); } config.setValue("selectedSkin", ""); config.setValue("theme", mTheme); config.setValue("lang", mLang); if (config.getValue("font", "dejavusans.ttf") != mFont || config.getValue("boldFont", "dejavusans-bold.ttf") != mBoldFont || config.getValue("particleFont", "dejavusans.ttf") != mParticleFont || config.getValue("helpFont", "dejavusansmono.ttf") != mHelpFont || config.getValue("secureFont", "dejavusansmono.ttf") != mSecureFont || config.getValue("japanFont", "mplus-1p-regular.ttf") != mJapanFont || config.getIntValue("fontSize") != static_cast(mFontSizeDropDown->getSelected()) + 9 || config.getIntValue("npcfontSize") != static_cast(mNpcFontSizeDropDown->getSelected()) + 9) { config.setValue("font", "fonts/" + getFileName(mFont)); config.setValue("boldFont", "fonts/" + getFileName(mBoldFont)); config.setValue("particleFont", "fonts/" + getFileName(mParticleFont)); config.setValue("helpFont", "fonts/" + getFileName(mHelpFont)); config.setValue("secureFont", "fonts/" + getFileName(mSecureFont)); config.setValue("japanFont", "fonts/" + getFileName(mJapanFont)); config.setValue("fontSize", mFontSizeDropDown->getSelected() + 9); config.setValue("npcfontSize", mNpcFontSizeDropDown->getSelected() + 9); gui->updateFonts(); } }