From 8bc9c319d23b1846096498585163dad5a1012090 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Thu, 16 Oct 2008 15:29:56 +0000 Subject: [PATCH] Fix bug connected with excluded modules and default modules: We need to make sure that default modules do not exclude loaded modules and also that loaded modules do not exclude them. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26922 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/BufferParams.cpp | 36 ++++++++++++++++++++++++++++++++---- 1 file changed, 32 insertions(+), 4 deletions(-) diff --git a/src/BufferParams.cpp b/src/BufferParams.cpp index aa0c011259..81481ada8f 100644 --- a/src/BufferParams.cpp +++ b/src/BufferParams.cpp @@ -1494,10 +1494,15 @@ bool BufferParams::setBaseClass(string const & classname) pimpl_->baseClass_ = classname; - // add any required modules not already in use + // add any default modules not already in use list const & mods = baseClass()->defaultModules(); list::const_iterator mit = mods.begin(); list::const_iterator men = mods.end(); + + // we want to add these to the front, but in the right order, + // so we collect them here first. + list modulesToAdd; + for (; mit != men; mit++) { string const & modName = *mit; // see if we're already in use @@ -1514,12 +1519,25 @@ bool BufferParams::setBaseClass(string const & classname) "' not added because removed by user."); continue; } + // Now we want to check the list of selected modules to see if any of them - // exclude this one. + // excludes this one, or if we exclude one of them. + LyXModule * thismod = moduleList[modName]; + if (!thismod) { + LYXERR0("Adding default module " << modName << + " even though it is unavailable."); + modulesToAdd.push_back(modName); + continue; + } + bool foundit = false; + vector const ourExcMods = thismod->getExcludedModules(); + vector::const_iterator const eit = ourExcMods.begin(); + vector::const_iterator const een = ourExcMods.end(); + // so iterate over the selected modules... LayoutModuleList::const_iterator lit = layoutModules_.begin(); - LayoutModuleList::const_iterator len = layoutModules_.end(); + LayoutModuleList::const_iterator const len = layoutModules_.end(); for (; lit != len; lit++) { LyXModule * lm = moduleList[*lit]; if (!lm) @@ -1533,12 +1551,22 @@ bool BufferParams::setBaseClass(string const & classname) *lit << "'."); break; } + if (find(eit, een, *lit) != een) { + foundit = true; + LYXERR(Debug::TCLASS, "Default module `" << modName << + "' not added because it excludes loaded module `" << + *lit << "'."); + break; + } } + if (!foundit) { LYXERR(Debug::TCLASS, "Default module `" << modName << "' added."); - layoutModules_.push_back(modName); + modulesToAdd.push_back(modName); } } + + layoutModules_.insert(layoutModules_.begin(), modulesToAdd.begin(), modulesToAdd.end()); return true; } -- 2.39.2