]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiTexinfo.cpp
do what the FIXME suggested
[lyx.git] / src / frontends / qt4 / GuiTexinfo.cpp
index fa4c4284acc9a55c8940c1c3d56e35f82cbfcbe7..b718d4b28788e22f62470c74e047ec852668181e 100644 (file)
@@ -4,6 +4,7 @@
  * Licence details can be found in the file COPYING.
  *
  * \author Edwin Leuven
+ * \author Herbert Voß
  *
  * Full author contact details are available in file CREDITS.
  */
 
 #include "GuiTexinfo.h"
 
-#include "ControlTexinfo.h"
-#include "qt_helpers.h"
+#include "FuncRequest.h"
 
+#include "support/debug.h"
 #include "support/filetools.h"
+#include "support/FileName.h"
+#include "support/lstrings.h"
+
+#include "qt_helpers.h"
 
-#include <QCloseEvent>
 #include <QCheckBox>
 #include <QListWidget>
 #include <QPushButton>
 
-using std::string;
-using std::vector;
+#include <fstream>
+#include <algorithm>
 
+using namespace std;
+using namespace lyx::support;
 
 namespace lyx {
 namespace frontend {
 
-GuiTexinfoDialog::GuiTexinfoDialog(LyXView & lv)
-       : GuiDialog(lv, "texinfo")
+
+static string texFileFromList(string const & file, string const & type)
+{
+       string file_ = file;
+       // do we need to add the suffix?
+       if (!(getExtension(file) == type))
+               file_ += '.' + type;
+
+       lyxerr << "Searching for file " << file_ << endl;
+
+       string lstfile = type + "Files.lst";
+       if (type == "cls")
+               lstfile = "clsFiles.lst";
+       else if (type == "sty")
+               lstfile = "styFiles.lst";
+       else if (type == "bst")
+               lstfile = "bstFiles.lst";
+       else if (type == "bib")
+               lstfile = "bibFiles.lst";
+       FileName const abslstfile = libFileSearch(string(), lstfile);
+       if (abslstfile.empty()) {
+               lyxerr << "File `'" << lstfile << "' not found." << endl;
+               return string();
+       }
+       // FIXME UNICODE
+       string const allClasses = to_utf8(abslstfile.fileContents("UTF-8"));
+       int entries = 0;
+       string classfile = token(allClasses, '\n', entries);
+       int count = 0;
+       while ((!contains(classfile, file) ||
+               (onlyFilename(classfile) != file)) &&
+               (++count < 1000)) {
+               classfile = token(allClasses, '\n', ++entries);
+       }
+
+       // now we have filename with full path
+       lyxerr << "with full path: " << classfile << endl;
+
+       return classfile;
+}
+
+
+GuiTexInfo::GuiTexInfo(GuiView & lv)
+       : GuiDialog(lv, "texinfo", qt_("TeX Information"))
 {
        setupUi(this);
-       setViewTitle(_("TeX Information"));
-       setController(new ControlTexinfo(*this));
 
        warningPosted = false;
-       activeStyle = ControlTexinfo::cls;
+       activeStyle = ClsType;
 
        connect(closePB, SIGNAL(clicked()), this, SLOT(slotClose()));
 
        connect(viewPB, SIGNAL(clicked()), this, SLOT(viewClicked()));
-       connect(whatStyleCO, SIGNAL(activated(const QString &)),
+       connect(whatStyleCO, SIGNAL(activated(QString)),
                this, SLOT(enableViewPB()));
        connect(whatStyleCO, SIGNAL(activated(int)), this, SLOT(updateView()));
        connect(pathCB, SIGNAL(stateChanged(int)), this, SLOT(updateView()));
@@ -53,33 +99,20 @@ GuiTexinfoDialog::GuiTexinfoDialog(LyXView & lv)
        connect(fileListLW, SIGNAL(itemSelectionChanged()),
                this, SLOT(enableViewPB()));
 
-       updateStyles(ControlTexinfo::cls);
+       updateStyles(ClsType);
 
        bc().setPolicy(ButtonPolicy::OkCancelPolicy);
        bc().setCancel(closePB);
 }
 
 
-ControlTexinfo & GuiTexinfoDialog::controller() const
-{
-       return static_cast<ControlTexinfo &>(Dialog::controller());
-}
-
-
-void GuiTexinfoDialog::change_adaptor()
+void GuiTexInfo::change_adaptor()
 {
        changed();
 }
 
 
-void GuiTexinfoDialog::closeEvent(QCloseEvent * e)
-{
-       slotWMHide();
-       e->accept();
-}
-
-
-void GuiTexinfoDialog::rescanClicked()
+void GuiTexInfo::rescanClicked()
 {
        // build new *Files.lst
        rescanTexStyles();
@@ -88,50 +121,56 @@ void GuiTexinfoDialog::rescanClicked()
 }
 
 
-void GuiTexinfoDialog::viewClicked()
+void GuiTexInfo::viewClicked()
 {
        size_t const fitem = fileListLW->currentRow();
        vector<string> const & data = texdata_[activeStyle];
        string file = data[fitem];
        if (!pathCB->isChecked())
-               file = getTexFileFromList(data[fitem],
-                       controller().getFileType(activeStyle));
-       controller().viewFile(file);
+               file = texFileFromList(data[fitem], fileType(activeStyle));
+       viewFile(file);
 }
 
 
-void GuiTexinfoDialog::updateView()
+void GuiTexInfo::updateView()
 {
-       switch (whatStyleCO->currentIndex()) {
-               case 0:
-                       updateStyles(ControlTexinfo::cls);
-                       break;
-               case 1:
-                       updateStyles(ControlTexinfo::sty);
-                       break;
-               case 2:
-                       updateStyles(ControlTexinfo::bst);
-                       break;
-               default:
-                       break;
-       }
-
+       // takes advantage of enum order
+       updateStyles(static_cast<TexFileType>(whatStyleCO->currentIndex()));
        enableViewPB();
 }
 
 
-void GuiTexinfoDialog::enableViewPB()
+void GuiTexInfo::enableViewPB()
 {
        viewPB->setEnabled(fileListLW->currentRow() > -1);
 }
 
 
-void GuiTexinfoDialog::updateStyles(ControlTexinfo::texFileSuffix whichStyle)
+void GuiTexInfo::updateStyles(TexFileType type)
 {
-       ContentsType & data = texdata_[whichStyle];
+       ContentsType & data = texdata_[type];
+
+       static string filenames[] = { "clsFile.lst", "styFiles.lst", "bstFiles.lst" };
+       string filename = filenames[type];
+
+       getTexFileList(filename, data);
+       if (data.empty()) {
+               // build filelists of all availabe bst/cls/sty-files.
+               // Done through kpsewhich and an external script,
+               // saved in *Files.lst
+               rescanTexStyles();
+               getTexFileList(filename, data);
+       }
        bool const withFullPath = pathCB->isChecked();
+       if (withFullPath)
+               return;
+       vector<string>::iterator it1  = data.begin();
+       vector<string>::iterator end1 = data.end();
+       for (; it1 != end1; ++it1)
+               *it1 = onlyFilename(*it1);
 
-       getTexFileList(whichStyle, data, withFullPath);
+       // sort on filename only (no path)
+       sort(data.begin(), data.end());
 
        fileListLW->clear();
        ContentsType::const_iterator it  = data.begin();
@@ -139,15 +178,55 @@ void GuiTexinfoDialog::updateStyles(ControlTexinfo::texFileSuffix whichStyle)
        for (; it != end; ++it)
                fileListLW->addItem(toqstr(*it));
 
-       activeStyle = whichStyle;
+       activeStyle = type;
 }
 
 
-void GuiTexinfoDialog::updateStyles()
+void GuiTexInfo::updateStyles()
 {
        updateStyles(activeStyle);
 }
 
+
+void GuiTexInfo::viewFile(string const & filename) const
+{
+       dispatch(FuncRequest(LFUN_DIALOG_SHOW, "file " + filename));
+}
+
+
+/// get a class with full path from the list
+string GuiTexInfo::classOptions(string const & classname) const
+{
+       FileName const filename(texFileFromList(classname, "cls"));
+       if (filename.empty())
+               return string();
+       string optionList;
+       ifstream is(filename.toFilesystemEncoding().c_str());
+       while (is) {
+               string s;
+               is >> s;
+               if (contains(s, "DeclareOption")) {
+                       s = s.substr(s.find("DeclareOption"));
+                       s = split(s, '{');              // cut front
+                       s = token(s, '}', 0);           // cut end
+                       optionList += (s + '\n');
+               }
+       }
+       return optionList;
+}
+
+
+string GuiTexInfo::fileType(TexFileType type) const
+{
+       // takes advantage of enum order
+       static string const ext[] = { "cls", "sty", "bst" };
+       return ext[type];
+}
+
+
+Dialog * createGuiTexInfo(GuiView & lv) { return new GuiTexInfo(lv); }
+
+
 } // namespace frontend
 } // namespace lyx