diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-07 23:30:05 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-07 23:30:05 +0900 |
| commit | 17b259df9cb6b28779d4881b2b6c805ee2e48eea (patch) | |
| tree | 5ed61937459cb7081089111b0242c01ec178f1f3 /fbreader/src/optionsDialog/IntegrationTab.cpp | |
| parent | 1cba8bce178eb2d6719c6f7f21e2c9352c5513a6 (diff) | |
| download | tde-ebook-reader-17b259df9cb6b28779d4881b2b6c805ee2e48eea.tar.gz tde-ebook-reader-17b259df9cb6b28779d4881b2b6c805ee2e48eea.zip | |
Rename to tde-ebook-reader
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'fbreader/src/optionsDialog/IntegrationTab.cpp')
| -rw-r--r-- | fbreader/src/optionsDialog/IntegrationTab.cpp | 159 |
1 files changed, 0 insertions, 159 deletions
diff --git a/fbreader/src/optionsDialog/IntegrationTab.cpp b/fbreader/src/optionsDialog/IntegrationTab.cpp deleted file mode 100644 index ca3ebf0..0000000 --- a/fbreader/src/optionsDialog/IntegrationTab.cpp +++ /dev/null @@ -1,159 +0,0 @@ -/* - * Copyright (C) 2004-2012 Geometer Plus <contact@geometerplus.com> - * - * 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. - */ - -#include <ZLOptionsDialog.h> -#include <ZLOptionEntry.h> -#include <ZLStringUtil.h> - -#include <ZLToggleBooleanOptionEntry.h> -#include <ZLSimpleOptionEntry.h> - -#include "AbstractOptionsDialog.h" - -#include "../options/FBCategoryKey.h" -#include "../external/ProgramCollection.h" - - -class ProgramChoiceEntry : public ZLComboOptionEntry { - -public: - ProgramChoiceEntry(const ProgramCollection &collection); - -private: - const std::vector<std::string> &values() const; - void onAccept(const std::string &value); - void onValueSelected(int index); - -public: - const std::string &initialValue() const; - void addDependentEntry(const std::string &name, ZLOptionEntry *dependentEntry); - void updateDependentEntries(bool visible); - -private: - const ProgramCollection &myCollection; - std::string myValue; - std::map<ZLOptionEntry*,std::string> myDependentEntries; -}; - -class EnableIntegrationEntry : public ZLToggleBooleanOptionEntry { - -public: - EnableIntegrationEntry(ZLBooleanOption &option); - void setProgramChoiceEntry(ProgramChoiceEntry *programChoiceEntry); - void onStateChanged(bool state); - -private: - ProgramChoiceEntry *myProgramChoiceEntry; -}; - -ProgramChoiceEntry::ProgramChoiceEntry(const ProgramCollection &collection) : myCollection(collection) { - myValue = initialValue(); -} - -const std::string &ProgramChoiceEntry::initialValue() const { - return myCollection.CurrentNameOption.value(); -} - -const std::vector<std::string> &ProgramChoiceEntry::values() const { - return myCollection.names(); -} - -void ProgramChoiceEntry::onAccept(const std::string &value) { - myCollection.CurrentNameOption.setValue(value); -} - -void ProgramChoiceEntry::addDependentEntry(const std::string &name, ZLOptionEntry *dependentEntry) { - myDependentEntries[dependentEntry] = name; -} - -void ProgramChoiceEntry::onValueSelected(int index) { - myValue = values()[index]; - updateDependentEntries(true); -} - -void ProgramChoiceEntry::updateDependentEntries(bool visible) { - for (std::map<ZLOptionEntry*,std::string>::const_iterator it = myDependentEntries.begin(); it != myDependentEntries.end(); ++it) { - it->first->setVisible(visible && (it->second == myValue)); - } -} - -EnableIntegrationEntry::EnableIntegrationEntry(ZLBooleanOption &option) : ZLToggleBooleanOptionEntry(option), myProgramChoiceEntry(0) { -} - -void EnableIntegrationEntry::setProgramChoiceEntry(ProgramChoiceEntry *programChoiceEntry) { - addDependentEntry(programChoiceEntry); - myProgramChoiceEntry = programChoiceEntry; -} - -void EnableIntegrationEntry::onStateChanged(bool state) { - ZLToggleBooleanOptionEntry::onStateChanged(state); - if (myProgramChoiceEntry != 0) { - myProgramChoiceEntry->updateDependentEntries(state); - } -} - -void AbstractOptionsDialog::createIntegrationTab(shared_ptr<ProgramCollection> collection, const ZLResourceKey &key, std::vector<std::pair<ZLResourceKey,ZLOptionEntry*> > &additionalOptions) { - if (!collection.isNull()) { - const std::vector<std::string> &programNames = collection->names(); - if (!programNames.empty()) { - ZLDialogContent &tab = myDialog->createTab(key); - std::string optionName; - if (programNames.size() == 1) { - optionName = ZLStringUtil::printf(tab.value(ZLResourceKey("enableIntegration")), programNames[0]); - } else { - optionName = tab.value(ZLResourceKey("defaultText")); - } - EnableIntegrationEntry *enableIntegrationEntry = - new EnableIntegrationEntry(collection->EnableCollectionOption); - tab.addOption(optionName, "", enableIntegrationEntry); - - ProgramChoiceEntry *programChoiceEntry = 0; - if (programNames.size() > 1) { - programChoiceEntry = new ProgramChoiceEntry(*collection); - tab.addOption(ZLResourceKey("choice"), programChoiceEntry); - enableIntegrationEntry->setProgramChoiceEntry(programChoiceEntry); - } - - for (std::vector<std::string>::const_iterator it = programNames.begin(); it != programNames.end(); ++it) { - const std::vector<Program::OptionDescription> &options = collection->program(*it)->options(); - for (std::vector<Program::OptionDescription>::const_iterator jt = options.begin(); jt != options.end(); ++jt) { - ZLStringOption *parameterOption = new ZLStringOption(FBCategoryKey::EXTERNAL, *it, jt->OptionName, jt->DefaultValue); - storeTemporaryOption(parameterOption); - ZLOptionEntry *parameterEntry = new ZLSimpleStringOptionEntry(*parameterOption); - if (programChoiceEntry != 0) { - programChoiceEntry->addDependentEntry(*it, parameterEntry); - } else { - enableIntegrationEntry->addDependentEntry(parameterEntry); - } - tab.addOption(ZLResourceKey(jt->OptionName), parameterEntry); - } - } - for (std::vector<std::pair<ZLResourceKey,ZLOptionEntry*> >::const_iterator it = additionalOptions.begin(); it != additionalOptions.end(); ++it) { - enableIntegrationEntry->addDependentEntry(it->second); - tab.addOption(it->first, it->second); - } - enableIntegrationEntry->onStateChanged(enableIntegrationEntry->initialState()); - return; - } - } - - for (std::vector<std::pair<ZLResourceKey,ZLOptionEntry*> >::const_iterator it = additionalOptions.begin(); it != additionalOptions.end(); ++it) { - delete it->second; - } -} |
