]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiDocument.cpp
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiDocument.cpp
index 011d0f2faa7f500609c413533b6f72a3bf768936..71eff5b92c4de5481598a5698cfeff0c97e8e8c4 100644 (file)
@@ -58,6 +58,7 @@
 #include "frontends/alert.h"
 
 #include <QAbstractItemModel>
+#include <QHeaderView>
 #include <QColor>
 #include <QColorDialog>
 #include <QCloseEvent>
@@ -191,11 +192,11 @@ public:
                //   2. Description (lexicographic)
                LayoutFile const & tc1 = LayoutFileList::get()[lhs];
                LayoutFile const & tc2 = LayoutFileList::get()[rhs];
-               int const rel = compare_no_case(
+               int const order = compare_no_case(
                        translateIfPossible(from_utf8(tc1.description())),
                        translateIfPossible(from_utf8(tc2.description())));
                return (tc1.isTeXClassAvailable() && !tc2.isTeXClassAvailable()) ||
-                       (tc1.isTeXClassAvailable() == tc2.isTeXClassAvailable() && rel < 0);
+                       (tc1.isTeXClassAvailable() == tc2.isTeXClassAvailable() && order < 0);
        }
 };
 
@@ -206,7 +207,7 @@ namespace {
 
 vector<string> getRequiredList(string const & modName) 
 {
-       LyXModule const * const mod = moduleList[modName];
+       LyXModule const * const mod = theModuleList[modName];
        if (!mod)
                return vector<string>(); //empty such thing
        return mod->getRequiredModules();
@@ -215,7 +216,7 @@ vector<string> getRequiredList(string const & modName)
 
 vector<string> getExcludedList(string const & modName)
 {
-       LyXModule const * const mod = moduleList[modName];
+       LyXModule const * const mod = theModuleList[modName];
        if (!mod)
                return vector<string>(); //empty such thing
        return mod->getExcludedModules();
@@ -224,7 +225,7 @@ vector<string> getExcludedList(string const & modName)
 
 docstring getModuleDescription(string const & modName)
 {
-       LyXModule const * const mod = moduleList[modName];
+       LyXModule const * const mod = theModuleList[modName];
        if (!mod)
                return _("Module not found!");
        // FIXME Unicode
@@ -234,7 +235,7 @@ docstring getModuleDescription(string const & modName)
 
 vector<string> getPackageList(string const & modName)
 {
-       LyXModule const * const mod = moduleList[modName];
+       LyXModule const * const mod = theModuleList[modName];
        if (!mod)
                return vector<string>(); //empty such thing
        return mod->getPackageList();
@@ -243,7 +244,7 @@ vector<string> getPackageList(string const & modName)
 
 bool isModuleAvailable(string const & modName)
 {
-       LyXModule * mod = moduleList[modName];
+       LyXModule const * const mod = theModuleList[modName];
        if (!mod)
                return false;
        return mod->isAvailable();
@@ -264,7 +265,7 @@ class ModuleSelectionManager : public GuiSelectionManager
 public:
        ///
        ModuleSelectionManager(
-               QListView * availableLV, 
+               QTreeView * availableLV,
                QListView * selectedLV,
                QPushButton * addPB, 
                QPushButton * delPB, 
@@ -302,9 +303,9 @@ private:
                return dynamic_cast<GuiIdListModel *>(selectedModel);
        }
        /// keeps a list of the modules the text class provides
-       std::list<std::string> provided_modules_;
+       list<string> provided_modules_;
        /// similarly...
-       std::list<std::string> excluded_modules_;
+       list<string> excluded_modules_;
        /// 
        GuiDocument const * container_;
 };
@@ -433,26 +434,26 @@ void ModuleSelectionManager::updateDelPB()
                // required module. There would be more flexible ways to proceed,
                // but that would be a lot more complicated, and the logic here is
                // already complicated. (That's why I've left the debugging code.)
-               // lyxerr << "Testing " << thisMod << std::endl;
+               // lyxerr << "Testing " << thisMod << endl;
                bool foundone = false;
                for (int j = 0; j < curRow; ++j) {
                        string const mod = getSelectedModel()->getIDString(j);
-                       // lyxerr << "In loop: Testing " << mod << std::endl;
+                       // lyxerr << "In loop: Testing " << mod << endl;
                        // do we satisfy the require? 
                        if (find(reqs.begin(), reqs.end(), mod) != reqs.end()) {
-                               // lyxerr << mod << " does the trick." << std::endl;
+                               // lyxerr << mod << " does the trick." << endl;
                                foundone = true;
                                break;
                        }
                }
                // did we find a module to satisfy the require?
                if (!foundone) {
-                       // lyxerr << "No matching module found." << std::endl;
+                       // lyxerr << "No matching module found." << endl;
                        deletePB->setEnabled(false);
                        return;
                }
        }
-       // lyxerr << "All's well that ends well." << std::endl; 
+       // lyxerr << "All's well that ends well." << endl;
        deletePB->setEnabled(true);
 }
 
@@ -603,7 +604,7 @@ GuiDocument::GuiDocument(GuiView & lv)
        textLayoutModule->skipCO->addItem(qt_("SmallSkip"));
        textLayoutModule->skipCO->addItem(qt_("MedSkip"));
        textLayoutModule->skipCO->addItem(qt_("BigSkip"));
-       textLayoutModule->skipCO->addItem(qt_("Length"));
+       textLayoutModule->skipCO->addItem(qt_("Custom"));
        textLayoutModule->lspacingCO->insertItem(
                Spacing::Single, qt_("Single"));
        textLayoutModule->lspacingCO->insertItem(
@@ -616,6 +617,27 @@ GuiDocument::GuiDocument(GuiView & lv)
        bc().addCheckedLineEdit(textLayoutModule->indentLE);
        bc().addCheckedLineEdit(textLayoutModule->skipLE);
 
+       // master/child handling
+       masterChildModule = new UiWidget<Ui::MasterChildUi>;
+
+       connect(masterChildModule->childrenTW, SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)),
+               this, SLOT(includeonlyClicked(QTreeWidgetItem *, int)));
+       connect(masterChildModule->includeonlyRB, SIGNAL(toggled(bool)),
+               masterChildModule->childrenTW, SLOT(setEnabled(bool)));
+       connect(masterChildModule->includeonlyRB, SIGNAL(toggled(bool)),
+               masterChildModule->maintainAuxCB, SLOT(setEnabled(bool)));
+       connect(masterChildModule->includeallRB, SIGNAL(clicked()),
+               this, SLOT(change_adaptor()));
+       connect(masterChildModule->includeonlyRB, SIGNAL(clicked()),
+               this, SLOT(change_adaptor()));
+       connect(masterChildModule->maintainAuxCB, SIGNAL(clicked()),
+               this, SLOT(change_adaptor()));
+       masterChildModule->childrenTW->setColumnCount(2);
+       masterChildModule->childrenTW->headerItem()->setText(0, qt_("Child Document"));
+       masterChildModule->childrenTW->headerItem()->setText(1, qt_("Include to Output"));
+       masterChildModule->childrenTW->resizeColumnToContents(1);
+       masterChildModule->childrenTW->resizeColumnToContents(2);
+
        // output
        outputModule = new UiWidget<Ui::OutputUi>;
 
@@ -642,6 +664,12 @@ GuiDocument::GuiDocument(GuiView & lv)
                this, SLOT(ttChanged(int)));
        connect(fontModule->fontsDefaultCO, SIGNAL(activated(int)),
                this, SLOT(change_adaptor()));
+       connect(fontModule->fontencCO, SIGNAL(activated(int)),
+               this, SLOT(change_adaptor()));
+       connect(fontModule->fontencCO, SIGNAL(activated(int)),
+               this, SLOT(fontencChanged(int)));
+       connect(fontModule->fontencLE, SIGNAL(textChanged(const QString &)),
+               this, SLOT(change_adaptor()));
        connect(fontModule->fontsizeCO, SIGNAL(activated(int)),
                this, SLOT(change_adaptor()));
        connect(fontModule->cjkFontLE, SIGNAL(textChanged(const QString &)),
@@ -662,6 +690,10 @@ GuiDocument::GuiDocument(GuiView & lv)
        fontModule->fontsizeCO->addItem(qt_("11"));
        fontModule->fontsizeCO->addItem(qt_("12"));
 
+       fontModule->fontencCO->addItem(qt_("Default"));
+       fontModule->fontencCO->addItem(qt_("Custom"));
+       fontModule->fontencCO->addItem(qt_("None (no fontenc)"));
+
        for (int n = 0; GuiDocument::fontfamilies_gui[n][0]; ++n)
                fontModule->fontsDefaultCO->addItem(
                        qt_(GuiDocument::fontfamilies_gui[n]));
@@ -900,6 +932,8 @@ GuiDocument::GuiDocument(GuiView & lv)
                mathsModule->amsCB, SLOT(setDisabled(bool)));
        connect(mathsModule->esintautoCB, SIGNAL(toggled(bool)),
                mathsModule->esintCB, SLOT(setDisabled(bool)));
+       connect(mathsModule->mhchemautoCB, SIGNAL(toggled(bool)),
+               mathsModule->mhchemCB, SLOT(setDisabled(bool)));
        // maths
        connect(mathsModule->amsCB, SIGNAL(clicked()),
                this, SLOT(change_adaptor()));
@@ -909,6 +943,10 @@ GuiDocument::GuiDocument(GuiView & lv)
                this, SLOT(change_adaptor()));
        connect(mathsModule->esintautoCB, SIGNAL(clicked()),
                this, SLOT(change_adaptor()));
+       connect(mathsModule->mhchemCB, SIGNAL(clicked()),
+               this, SLOT(change_adaptor()));
+       connect(mathsModule->mhchemautoCB, SIGNAL(clicked()),
+               this, SLOT(change_adaptor()));
 
        latexModule = new UiWidget<Ui::LaTeXUi>;
        // latex class
@@ -932,6 +970,8 @@ GuiDocument::GuiDocument(GuiView & lv)
                this, SLOT(change_adaptor()));
        connect(latexModule->childDocPB, SIGNAL(clicked()),
                this, SLOT(browseMaster()));
+       connect(latexModule->suppressDateCB, SIGNAL(clicked()),
+               this, SLOT(change_adaptor()));
 
        // postscript drivers
        for (int n = 0; tex_graphics[n][0]; ++n) {
@@ -974,7 +1014,7 @@ GuiDocument::GuiDocument(GuiView & lv)
 
        // Modules
        modulesModule = new UiWidget<Ui::ModulesUi>;
-
+       modulesModule->availableLV->header()->setVisible(false);
        selectionManager =
                new ModuleSelectionManager(modulesModule->availableLV,
                        modulesModule->selectedLV,
@@ -1046,6 +1086,7 @@ GuiDocument::GuiDocument(GuiView & lv)
                qt_("Input listings parameters below. Enter ? for a list of parameters."));
 
        docPS->addPanel(latexModule, qt_("Document Class"));
+       docPS->addPanel(masterChildModule, qt_("Child Documents"));
        docPS->addPanel(modulesModule, qt_("Modules"));
        docPS->addPanel(fontModule, qt_("Fonts"));
        docPS->addPanel(textLayoutModule, qt_("Text Layout"));
@@ -1096,6 +1137,26 @@ void GuiDocument::change_adaptor()
 }
 
 
+void GuiDocument::includeonlyClicked(QTreeWidgetItem * item, int)
+{
+       if (item == 0)
+               return;
+
+       string child = fromqstr(item->text(0));
+       if (child.empty())
+               return;
+
+       if (std::find(includeonlys_.begin(),
+                     includeonlys_.end(), child) != includeonlys_.end())
+               includeonlys_.remove(child);
+       else
+               includeonlys_.push_back(child);
+       
+       updateIncludeonlys();
+       changed();
+}
+
+
 QString GuiDocument::validateListingsParameters()
 {
        // use a cache here to avoid repeated validation
@@ -1315,6 +1376,10 @@ void GuiDocument::xetexChanged(bool xetex)
                font = tex_fonts_roman[fontModule->fontsRomanCO->currentIndex()];
        fontModule->fontScCB->setEnabled(providesSC(font));
        fontModule->fontOsfCB->setEnabled(providesOSF(font));
+       
+       fontModule->fontencLA->setEnabled(!xetex);
+       fontModule->fontencCO->setEnabled(!xetex);
+       fontModule->fontencLE->setEnabled(!xetex);
 }
 
 
@@ -1379,6 +1444,12 @@ void GuiDocument::updateFontlist()
 }
 
 
+void GuiDocument::fontencChanged(int item)
+{
+       fontModule->fontencLE->setEnabled(item == 1);
+}
+
+
 void GuiDocument::romanChanged(int item)
 {
        if (outputModule->xetexCB->isChecked())
@@ -1504,7 +1575,8 @@ void GuiDocument::browseMaster()
        QString file = browseRelFile(old, docpath, title, filter, false,
                qt_("Documents|#o#O"), toqstr(lyxrc.document_path));
 
-       latexModule->childDocLE->setText(file);
+       if (!file.isEmpty())
+               latexModule->childDocLE->setText(file);
 }
 
 
@@ -1604,7 +1676,7 @@ namespace {
                vector<string>::const_iterator it  = idList.begin();
                vector<string>::const_iterator end = idList.end();
                for (; it != end; ++it) {
-                       LyXModule const * const mod = moduleList[*it];
+                       LyXModule const * const mod = theModuleList[*it];
                        if (!mod)
                                retval.push_back(*it + " (Unavailable)");
                        else
@@ -1661,8 +1733,11 @@ void GuiDocument::updateModuleInfo()
        
        //Module description
        bool const focus_on_selected = selectionManager->selectedFocused();
-       QListView const * const lv = 
-                       focus_on_selected ? modulesModule->selectedLV : modulesModule->availableLV;
+       QAbstractItemView * lv;
+       if (focus_on_selected)
+               lv = modulesModule->selectedLV;
+       else
+               lv= modulesModule->availableLV;
        if (lv->selectionModel()->selectedIndexes().isEmpty()) {
                modulesModule->infoML->document()->clear();
                return;
@@ -1772,11 +1847,23 @@ void GuiDocument::updateDefaultFormat()
 }
 
 
+bool GuiDocument::isChildIncluded(string const & child)
+{
+       if (includeonlys_.empty())
+               return false;
+       return (std::find(includeonlys_.begin(),
+                         includeonlys_.end(), child) != includeonlys_.end());
+}
+
+
 void GuiDocument::applyView()
 {
        // preamble
        preambleModule->apply(bp_);
 
+       // date
+       bp_.suppress_date = latexModule->suppressDateCB->isChecked();
+
        // biblio
        bp_.setCiteEngine(ENGINE_BASIC);
 
@@ -1860,7 +1947,7 @@ void GuiDocument::applyView()
 
        QString const lang = langModule->languageCO->itemData(
                langModule->languageCO->currentIndex()).toString();
-       bp_.language = languages.getLanguage(fromqstr(lang));
+       bp_.language = lyx::languages.getLanguage(fromqstr(lang));
 
        // numbering
        if (bp_.documentClass().hasTocLevels()) {
@@ -1897,7 +1984,6 @@ void GuiDocument::applyView()
                else
                        bp_.use_amsmath = BufferParams::package_off;
        }
-
        if (mathsModule->esintautoCB->isChecked())
                bp_.use_esint = BufferParams::package_auto;
        else {
@@ -1906,6 +1992,14 @@ void GuiDocument::applyView()
                else
                        bp_.use_esint = BufferParams::package_off;
        }
+       if (mathsModule->mhchemautoCB->isChecked())
+               bp_.use_mhchem = BufferParams::package_auto;
+       else {
+               if (mathsModule->mhchemCB->isChecked())
+                       bp_.use_mhchem = BufferParams::package_on;
+               else
+                       bp_.use_mhchem = BufferParams::package_off;
+       }
 
        // Page Layout
        if (pageLayoutModule->pagestyleCO->currentIndex() == 0)
@@ -2000,6 +2094,17 @@ void GuiDocument::applyView()
        else
                bp_.master = string();
 
+       // Master/Child
+       bp_.clearIncludedChildren();
+       if (masterChildModule->includeonlyRB->isChecked()) {
+               list<string>::const_iterator it = includeonlys_.begin();
+               for (; it != includeonlys_.end() ; ++it) {
+                       bp_.addIncludedChildren(*it);
+               }
+       }
+       bp_.maintain_unincluded_children =
+               masterChildModule->maintainAuxCB->isChecked();
+
        // Float Placement
        bp_.float_placement = floatModule->get();
 
@@ -2045,6 +2150,13 @@ void GuiDocument::applyView()
                        tex_fonts_monospaced[fontModule->fontsTypewriterCO->currentIndex()];
        }
 
+       if (fontModule->fontencCO->currentIndex() == 0)
+               bp_.fontenc = "global";
+       else if (fontModule->fontencCO->currentIndex() == 1)
+               bp_.fontenc = fromqstr(fontModule->fontencLE->text());
+       else if (fontModule->fontencCO->currentIndex() == 2)
+               bp_.fontenc = "default";
+
        bp_.fontsCJK =
                fromqstr(fontModule->cjkFontLE->text());
 
@@ -2148,6 +2260,9 @@ void GuiDocument::paramsToDialog()
        // preamble
        preambleModule->update(bp_, id());
 
+       // date
+       latexModule->suppressDateCB->setChecked(bp_.suppress_date);
+
        // biblio
        biblioModule->citeDefaultRB->setChecked(
                bp_.citeEngine() == ENGINE_BASIC);
@@ -2258,6 +2373,11 @@ void GuiDocument::paramsToDialog()
        mathsModule->esintautoCB->setChecked(
                bp_.use_esint == BufferParams::package_auto);
 
+       mathsModule->mhchemCB->setChecked(
+               bp_.use_mhchem == BufferParams::package_on);
+       mathsModule->mhchemautoCB->setChecked(
+               bp_.use_mhchem == BufferParams::package_auto);
+
        switch (bp_.spacing().getSpace()) {
                case Spacing::Other: nitem = 3; break;
                case Spacing::Double: nitem = 2; break;
@@ -2364,6 +2484,23 @@ void GuiDocument::paramsToDialog()
                latexModule->childDocGB->setChecked(false);
        }
 
+       // Master/Child
+       std::vector<Buffer *> children = buffer().getChildren(false);
+       if (children.empty()) {
+               masterChildModule->childrenTW->clear();
+               includeonlys_.clear();
+               docPS->showPanel(qt_("Child Documents"), false);
+               if (docPS->isCurrentPanel(qt_("Child Documents")))
+                       docPS->setCurrentPanel(qt_("Document Class"));
+       } else {
+               docPS->showPanel(qt_("Child Documents"), true);
+               masterChildModule->setEnabled(true);
+               includeonlys_ = bp_.getIncludedChildren();
+               updateIncludeonlys();
+       }
+       masterChildModule->maintainAuxCB->setChecked(
+               bp_.maintain_unincluded_children);
+
        // Float Settings
        floatModule->set(bp_.float_placement);
 
@@ -2391,6 +2528,9 @@ void GuiDocument::paramsToDialog()
                        bp_.fontsize);
 
        if (bp_.useXetex) {
+               fontModule->fontencLA->setEnabled(false);
+               fontModule->fontencCO->setEnabled(false);
+               fontModule->fontencLE->setEnabled(false);
                for (int i = 0; i < fontModule->fontsRomanCO->count(); ++i) {
                        if (fontModule->fontsRomanCO->itemText(i) == toqstr(bp_.fontsRoman)) {
                                fontModule->fontsRomanCO->setCurrentIndex(i);
@@ -2412,6 +2552,9 @@ void GuiDocument::paramsToDialog()
                        }
                }
        } else {
+               fontModule->fontencLA->setEnabled(true);
+               fontModule->fontencCO->setEnabled(true);
+               fontModule->fontencLE->setEnabled(true);
                int n = findToken(tex_fonts_roman, bp_.fontsRoman);
                if (n >= 0) {
                        fontModule->fontsRomanCO->setCurrentIndex(n);
@@ -2446,6 +2589,15 @@ void GuiDocument::paramsToDialog()
        if (nn >= 0)
                fontModule->fontsDefaultCO->setCurrentIndex(nn);
 
+       if (bp_.fontenc == "global")
+               fontModule->fontencCO->setCurrentIndex(0);
+       else if (bp_.fontenc == "default")
+               fontModule->fontencCO->setCurrentIndex(2);
+       else {
+               fontModule->fontencCO->setCurrentIndex(1);
+               fontModule->fontencLE->setText(toqstr(bp_.fontenc));
+       }
+
        // paper
        bool const extern_geometry =
                documentClass().provides("geometry");
@@ -2576,6 +2728,54 @@ void GuiDocument::updateSelectedModules()
 }
 
 
+void GuiDocument::updateIncludeonlys()
+{
+       masterChildModule->childrenTW->clear();
+       QString const no = qt_("No");
+       QString const yes = qt_("Yes");
+
+       if (includeonlys_.empty()) {
+               masterChildModule->includeallRB->setChecked(true);
+               masterChildModule->childrenTW->setEnabled(false);
+               masterChildModule->maintainAuxCB->setEnabled(false);
+       } else {
+               masterChildModule->includeonlyRB->setChecked(true);
+               masterChildModule->childrenTW->setEnabled(true);
+               masterChildModule->maintainAuxCB->setEnabled(true);
+       }
+       QTreeWidgetItem * item = 0;
+       std::vector<Buffer *> children = buffer().getChildren(false);
+       vector<Buffer *>::const_iterator it  = children.begin();
+       vector<Buffer *>::const_iterator end = children.end();
+       bool has_unincluded = false;
+       bool all_unincluded = true;
+       for (; it != end; ++it) {
+               item = new QTreeWidgetItem(masterChildModule->childrenTW);
+               // FIXME Unicode
+               string const name =
+                       to_utf8(makeRelPath(from_utf8((*it)->fileName().absFilename()),
+                                                       from_utf8(buffer().filePath())));
+               item->setText(0, toqstr(name));
+               item->setText(1, isChildIncluded(name) ? yes : no);
+               if (!isChildIncluded(name))
+                       has_unincluded = true;
+               else
+                       all_unincluded = false;
+       }
+       // Both if all childs are included and if none is included
+       // is equal to "include all" (i.e., ommit \includeonly).
+       // Thus, reset the GUI.
+       if (!has_unincluded || all_unincluded) {
+               masterChildModule->includeallRB->setChecked(true);
+               masterChildModule->childrenTW->setEnabled(false);
+               includeonlys_.clear();
+       }
+       // If all are included, we need to update again.
+       if (!has_unincluded)
+               updateIncludeonlys();
+}
+
+
 void GuiDocument::updateContents()
 {
        // Nothing to do here as the document settings is not cursor dependant.
@@ -2686,7 +2886,7 @@ list<GuiDocument::modInfoStruct> const
        for (; it != end; ++it) {
                modInfoStruct m;
                m.id = *it;
-               LyXModule * mod = moduleList[*it];
+               LyXModule const * const mod = theModuleList[*it];
                if (mod)
                        // FIXME Unicode
                        m.name = toqstr(translateIfPossible(from_utf8(mod->getName())));
@@ -2878,8 +3078,8 @@ bool GuiDocument::providesScale(string const & font) const
 void GuiDocument::loadModuleInfo()
 {
        moduleNames_.clear();
-       LyXModuleList::const_iterator it  = moduleList.begin();
-       LyXModuleList::const_iterator end = moduleList.end();
+       LyXModuleList::const_iterator it  = theModuleList.begin();
+       LyXModuleList::const_iterator end = theModuleList.end();
        for (; it != end; ++it) {
                modInfoStruct m;
                m.id = it->getID();