/** * @file llfloaterspellchecksettings.h * @brief Spell checker settings floater * * $LicenseInfo:firstyear=2011&license=viewerlgpl$ * Second Life Viewer Source Code * Copyright (C) 2010, Linden Research, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License only. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA * $/LicenseInfo$ */ #include "llviewerprecompiledheaders.h" #include "llcombobox.h" #include "llfilepicker.h" #include "llfloaterreg.h" #include "llfloaterspellchecksettings.h" #include "llscrolllistctrl.h" #include "llsdserialize.h" #include "llspellcheck.h" #include "lltrans.h" #include "llviewercontrol.h" #include ///---------------------------------------------------------------------------- /// Class LLFloaterSpellCheckerSettings ///---------------------------------------------------------------------------- LLFloaterSpellCheckerSettings::LLFloaterSpellCheckerSettings(const LLSD& key) : LLFloater(key) { } void LLFloaterSpellCheckerSettings::draw() { LLFloater::draw(); std::vector sel_items = getChild("spellcheck_available_list")->getAllSelected(); bool enable_remove = !sel_items.empty(); for (std::vector::const_iterator sel_it = sel_items.begin(); sel_it != sel_items.end(); ++sel_it) { enable_remove &= LLSpellChecker::canRemoveDictionary((*sel_it)->getValue().asString()); } getChild("spellcheck_remove_btn")->setEnabled(enable_remove); } BOOL LLFloaterSpellCheckerSettings::postBuild(void) { gSavedSettings.getControl("SpellCheck")->getSignal()->connect(boost::bind(&LLFloaterSpellCheckerSettings::refreshDictionaries, this, false)); LLSpellChecker::setSettingsChangeCallback(boost::bind(&LLFloaterSpellCheckerSettings::onSpellCheckSettingsChange, this)); getChild("spellcheck_remove_btn")->setCommitCallback(boost::bind(&LLFloaterSpellCheckerSettings::onBtnRemove, this)); getChild("spellcheck_import_btn")->setCommitCallback(boost::bind(&LLFloaterSpellCheckerSettings::onBtnImport, this)); getChild("spellcheck_main_combo")->setCommitCallback(boost::bind(&LLFloaterSpellCheckerSettings::refreshDictionaries, this, false)); getChild("spellcheck_moveleft_btn")->setCommitCallback(boost::bind(&LLFloaterSpellCheckerSettings::onBtnMove, this, "spellcheck_active_list", "spellcheck_available_list")); getChild("spellcheck_moveright_btn")->setCommitCallback(boost::bind(&LLFloaterSpellCheckerSettings::onBtnMove, this, "spellcheck_available_list", "spellcheck_active_list")); return true; } void LLFloaterSpellCheckerSettings::onBtnImport() { LLFloaterReg::showInstance("prefs_spellchecker_import"); } void LLFloaterSpellCheckerSettings::onBtnMove(const std::string& from, const std::string& to) { LLScrollListCtrl* from_ctrl = findChild(from); LLScrollListCtrl* to_ctrl = findChild(to); LLSD row; row["columns"][0]["column"] = "name"; row["columns"][0]["font"]["name"] = "SANSSERIF_SMALL"; row["columns"][0]["font"]["style"] = "NORMAL"; std::vector sel_items = from_ctrl->getAllSelected(); for (std::vector::const_iterator sel_it = sel_items.begin(); sel_it != sel_items.end(); ++sel_it) { row["value"] = (*sel_it)->getValue(); row["columns"][0]["value"] = (*sel_it)->getColumn(0)->getValue(); to_ctrl->addElement(row); } from_ctrl->deleteSelectedItems(); } void LLFloaterSpellCheckerSettings::onClose(bool app_quitting) { if (app_quitting) { // don't save anything return; } std::list list_dict; LLComboBox* dict_combo = findChild("spellcheck_main_combo"); const std::string dict_name = dict_combo->getSelectedItemLabel(); if (!dict_name.empty()) { list_dict.push_back(dict_name); LLScrollListCtrl* list_ctrl = findChild("spellcheck_active_list"); std::vector list_items = list_ctrl->getAllData(); for (std::vector::const_iterator item_it = list_items.begin(); item_it != list_items.end(); ++item_it) { const std::string language = (*item_it)->getValue().asString(); if (LLSpellChecker::hasDictionary(language, true)) { list_dict.push_back(language); } } } gSavedSettings.setString("SpellCheckDictionary", boost::join(list_dict, ",")); } void LLFloaterSpellCheckerSettings::onOpen(const LLSD& key) { refreshDictionaries(true); } void LLFloaterSpellCheckerSettings::onBtnRemove() { std::vector sel_items = getChild("spellcheck_available_list")->getAllSelected(); for (std::vector::const_iterator sel_it = sel_items.begin(); sel_it != sel_items.end(); ++sel_it) { LLSpellChecker::instance().removeDictionary((*sel_it)->getValue().asString()); } } void LLFloaterSpellCheckerSettings::onSpellCheckSettingsChange() { refreshDictionaries(true); } void LLFloaterSpellCheckerSettings::refreshDictionaries(bool from_settings) { bool enabled = gSavedSettings.getBOOL("SpellCheck"); getChild("spellcheck_moveleft_btn")->setEnabled(enabled); getChild("spellcheck_moveright_btn")->setEnabled(enabled); // Populate the dictionary combobox LLComboBox* dict_combo = findChild("spellcheck_main_combo"); std::string dict_cur = dict_combo->getSelectedItemLabel(); if ((dict_cur.empty() || from_settings) && (LLSpellChecker::getUseSpellCheck())) { dict_cur = LLSpellChecker::instance().getPrimaryDictionary(); } dict_combo->clearRows(); dict_combo->setEnabled(enabled); const LLSD& dict_map = LLSpellChecker::getDictionaryMap(); if (dict_map.size()) { for (LLSD::array_const_iterator dict_it = dict_map.beginArray(); dict_it != dict_map.endArray(); ++dict_it) { const LLSD& dict = *dict_it; if ( (dict["installed"].asBoolean()) && (dict["is_primary"].asBoolean()) && (dict.has("language")) ) { dict_combo->add(dict["language"].asString()); } } if (!dict_combo->selectByValue(dict_cur)) { dict_combo->clear(); } } // Populate the available and active dictionary list LLScrollListCtrl* avail_ctrl = findChild("spellcheck_available_list"); LLScrollListCtrl* active_ctrl = findChild("spellcheck_active_list"); LLSpellChecker::dict_list_t active_list; if ( ((!avail_ctrl->getItemCount()) && (!active_ctrl->getItemCount())) || (from_settings) ) { if (LLSpellChecker::getUseSpellCheck()) { active_list = LLSpellChecker::instance().getSecondaryDictionaries(); } } else { std::vector active_items = active_ctrl->getAllData(); for (std::vector::const_iterator item_it = active_items.begin(); item_it != active_items.end(); ++item_it) { std::string dict = (*item_it)->getValue().asString(); if (dict_cur != dict) { active_list.push_back(dict); } } } LLSD row; row["columns"][0]["column"] = "name"; row["columns"][0]["font"]["name"] = "SANSSERIF_SMALL"; row["columns"][0]["font"]["style"] = "NORMAL"; active_ctrl->clearRows(); active_ctrl->setEnabled(enabled); for (LLSpellChecker::dict_list_t::const_iterator it = active_list.begin(); it != active_list.end(); ++it) { const std::string language = *it; const LLSD dict = LLSpellChecker::getDictionaryData(language); row["value"] = language; row["columns"][0]["value"] = (!dict["user_installed"].asBoolean()) ? language : language + " " + LLTrans::getString("UserDictionary"); active_ctrl->addElement(row); } active_ctrl->sortByColumnIndex(0, true); active_list.push_back(dict_cur); avail_ctrl->clearRows(); avail_ctrl->setEnabled(enabled); for (LLSD::array_const_iterator dict_it = dict_map.beginArray(); dict_it != dict_map.endArray(); ++dict_it) { const LLSD& dict = *dict_it; const std::string language = dict["language"].asString(); if ( (dict["installed"].asBoolean()) && (active_list.end() == std::find(active_list.begin(), active_list.end(), language)) ) { row["value"] = language; row["columns"][0]["value"] = (!dict["user_installed"].asBoolean()) ? language : language + " " + LLTrans::getString("UserDictionary"); avail_ctrl->addElement(row); } } avail_ctrl->sortByColumnIndex(0, true); } ///---------------------------------------------------------------------------- /// Class LLFloaterSpellCheckerImport ///---------------------------------------------------------------------------- LLFloaterSpellCheckerImport::LLFloaterSpellCheckerImport(const LLSD& key) : LLFloater(key) { } BOOL LLFloaterSpellCheckerImport::postBuild(void) { getChild("dictionary_path_browse")->setCommitCallback(boost::bind(&LLFloaterSpellCheckerImport::onBtnBrowse, this)); getChild("ok_btn")->setCommitCallback(boost::bind(&LLFloaterSpellCheckerImport::onBtnOK, this)); getChild("cancel_btn")->setCommitCallback(boost::bind(&LLFloaterSpellCheckerImport::onBtnCancel, this)); center(); return true; } void LLFloaterSpellCheckerImport::onBtnBrowse() { LLFilePicker& file_picker = LLFilePicker::instance(); if (!file_picker.getOpenFile(LLFilePicker::FFLOAD_DICTIONARY)) { return; } const std::string filepath = file_picker.getFirstFile(); getChild("dictionary_path")->setValue(filepath); mDictionaryDir = gDirUtilp->getDirName(filepath); mDictionaryBasename = gDirUtilp->getBaseFileName(filepath, true); getChild("dictionary_name")->setValue(mDictionaryBasename); } void LLFloaterSpellCheckerImport::onBtnCancel() { closeFloater(false); } void LLFloaterSpellCheckerImport::onBtnOK() { const std::string dict_dic = mDictionaryDir + gDirUtilp->getDirDelimiter() + mDictionaryBasename + ".dic"; const std::string dict_aff = mDictionaryDir + gDirUtilp->getDirDelimiter() + mDictionaryBasename + ".aff"; std::string dict_language = getChild("dictionary_language")->getValue().asString(); LLStringUtil::trim(dict_language); if ( (dict_language.empty()) || (!gDirUtilp->fileExists(dict_dic)) || (mDictionaryDir.empty()) || (mDictionaryBasename.empty()) ) { return; } LLSD custom_dict_info; custom_dict_info["is_primary"] = (bool)gDirUtilp->fileExists(dict_aff); custom_dict_info["name"] = mDictionaryBasename; custom_dict_info["language"] = dict_language; LLSD custom_dict_map; llifstream custom_file_in(LLSpellChecker::getDictionaryUserPath() + "user_dictionaries.xml"); if (custom_file_in.is_open()) { LLSDSerialize::fromXMLDocument(custom_dict_map, custom_file_in); custom_file_in.close(); } LLSD::array_iterator it = custom_dict_map.beginArray(); for (; it != custom_dict_map.endArray(); ++it) { LLSD& dict_info = *it; if (dict_info["name"].asString() == mDictionaryBasename) { dict_info = custom_dict_info; break; } } if (custom_dict_map.endArray() == it) { custom_dict_map.append(custom_dict_info); } llofstream custom_file_out(LLSpellChecker::getDictionaryUserPath() + "user_dictionaries.xml", std::ios::trunc); if (custom_file_out.is_open()) { LLSDSerialize::toPrettyXML(custom_dict_map, custom_file_out); custom_file_out.close(); } LLFile::rename(dict_dic, LLSpellChecker::getDictionaryUserPath() + mDictionaryBasename + ".dic"); if (gDirUtilp->fileExists(dict_aff)) { LLFile::rename(dict_aff, LLSpellChecker::getDictionaryUserPath() + mDictionaryBasename + ".aff"); } LLSpellChecker::refreshDictionaryMap(); closeFloater(false); }