]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbibtex.C
changelogs
[lyx.git] / src / insets / insetbibtex.C
index 895b7a032b7ce96d5c1a33f41cabfe4a5bf878dc..73ca790e50296ee3b8f9153b26cc62cb960ae606 100644 (file)
  *
  * \author Alejandro Aguilar Sierra
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
-#include <config.h>
 
+#include <config.h>
 
 #include "insetbibtex.h"
+
 #include "buffer.h"
-#include "BufferView.h"
+#include "bufferparams.h"
+#include "dispatchresult.h"
 #include "debug.h"
 #include "funcrequest.h"
+#include "LaTeXFeatures.h"
 #include "gettext.h"
+#include "metricsinfo.h"
+#include "outputparams.h"
 
 #include "support/filetools.h"
-#include "support/path.h"
-#include "support/os.h"
 #include "support/lstrings.h"
-#include "support/LAssert.h"
+#include "support/os.h"
+#include "support/path.h"
 
 #include <fstream>
-#include <cstdlib>
 
-using std::ostream;
-using std::ifstream;
-using std::getline;
+using lyx::support::AbsolutePath;
+using lyx::support::ascii_lowercase;
+using lyx::support::ChangeExtension;
+using lyx::support::contains;
+using lyx::support::findtexfile;
+using lyx::support::IsFileReadable;
+using lyx::support::ltrim;
+using lyx::support::MakeAbsPath;
+using lyx::support::MakeRelPath;
+using lyx::support::Path;
+using lyx::support::prefixIs;
+using lyx::support::rtrim;
+using lyx::support::split;
+using lyx::support::subst;
+using lyx::support::tokenPos;
+using lyx::support::trim;
+
+namespace os = lyx::support::os;
+
 using std::endl;
-using std::vector;
+using std::getline;
+using std::string;
+using std::ifstream;
+using std::ostream;
 using std::pair;
+using std::vector;
 
 
-InsetBibtex::InsetBibtex(InsetCommandParams const & p, bool)
-       : InsetCommand(p)
+InsetBibtex::InsetBibtex(InsetCommandParams const & p)
+       : InsetCommand(p, "bibtex")
 {}
 
 
-InsetBibtex::~InsetBibtex()
+std::auto_ptr<InsetBase> InsetBibtex::doClone() const
 {
-       InsetCommandMailer mailer("bibtex", *this);
-       mailer.hideDialog();
+       return std::auto_ptr<InsetBase>(new InsetBibtex(*this));
 }
 
 
-dispatch_result InsetBibtex::localDispatch(FuncRequest const & cmd)
+void InsetBibtex::doDispatch(LCursor & cur, FuncRequest & cmd)
 {
-       if (cmd.action != LFUN_INSET_MODIFY)
-               return UNDISPATCHED;
-
-       InsetCommandParams p;
-       InsetCommandMailer::string2params(cmd.argument, p);
-       if (p.getCmdName().empty())
-               return UNDISPATCHED;
+       switch (cmd.action) {
+
+       case LFUN_INSET_MODIFY: {
+               InsetCommandParams p;
+               InsetCommandMailer::string2params("bibtex", cmd.argument, p);
+               if (!p.getCmdName().empty())
+                       setParams(p);
+               break;
+       }
 
-       if (view() && p.getContents() != params().getContents()) {
-               view()->ChangeCitationsIfUnique(params().getContents(),
-                                               p.getContents());
+       default:
+               InsetCommand::doDispatch(cur, cmd);
+               break;
        }
+}
 
-       setParams(p);
-       if (view())
-               view()->updateInset(this, true);
 
-       return DISPATCHED;
+string const InsetBibtex::getScreenLabel(Buffer const &) const
+{
+       return _("BibTeX Generated References");
 }
 
-string const InsetBibtex::getScreenLabel(Buffer const *) const
+
+namespace {
+
+string normalize_name(Buffer const & buffer, OutputParams const & runparams,
+                     string const & name, string const & ext)
 {
-       return _("BibTeX Generated References");
+       string const fname = MakeAbsPath(name, buffer.filePath());
+       if (AbsolutePath(name) || !IsFileReadable(fname + ext))
+               return name;
+       else if (!runparams.nice)
+               return fname;
+       else
+               return MakeRelPath(fname, buffer.getMasterBuffer()->filePath());
+}
+
 }
 
 
-int InsetBibtex::latex(Buffer const * buffer, ostream & os,
-                      bool /*fragile*/, bool/*fs*/) const
+int InsetBibtex::latex(Buffer const & buffer, ostream & os,
+                      OutputParams const & runparams) const
 {
-       // changing the sequence of the commands
+       // the sequence of the commands:
        // 1. \bibliographystyle{style}
        // 2. \addcontentsline{...} - if option bibtotoc set
        // 3. \bibliography{database}
+       // and with bibtopic:
+       // 1. \bibliographystyle{style}
+       // 2. \begin{btSect}{database}
+       // 3. \btPrint{Cited|NotCited|All}
+       // 4. \end{btSect}
+
+       // the database string
        string adb;
        string db_in = getContents();
        db_in = split(db_in, adb, ',');
+       // If we generate in a temp dir, we might need to give an
+       // absolute path there. This is a bit complicated since we can
+       // have a comma-separated list of bibliographies
+       string db_out;
+       while (!adb.empty()) {
+               db_out += os::external_path(normalize_name(buffer, runparams,
+                                                          adb, ".bib"));
+               db_out += ',';
+               db_in = split(db_in, adb,',');
+       }
+       db_out = rtrim(db_out, ",");
 
        // Style-Options
        string style = getOptions(); // maybe empty! and with bibtotoc
@@ -95,24 +149,37 @@ int InsetBibtex::latex(Buffer const * buffer, ostream & os,
                }
        }
 
-       if (!buffer->niceFile
-           && IsFileReadable(MakeAbsPath(style, buffer->filePath()) + ".bst")) {
-               style = MakeAbsPath(style, buffer->filePath());
+       // line count
+       int i = 0;
+
+       if (!style.empty()) {
+               os << "\\bibliographystyle{"
+                  << os::external_path(normalize_name(buffer, runparams,
+                                                      style, ".bst"))
+                  << "}\n";
+               i += 1;
        }
 
-       if (!style.empty()) { // we want no \biblio...{}
-               os << "\\bibliographystyle{" << style << "}\n";
+       if (buffer.params().use_bibtopic){
+               os << "\\begin{btSect}{" << db_out << "}\n";
+               string btprint = getSecOptions();
+               if (btprint.empty())
+                       // default
+                       btprint = "btPrintCited";
+               os << "\\" << btprint << "\n"
+                  << "\\end{btSect}\n";
+               i += 3;
        }
 
        // bibtotoc-Option
-       if (!bibtotoc.empty()) {
+       if (!bibtotoc.empty() && !buffer.params().use_bibtopic) {
                // maybe a problem when a textclass has no "art" as
                // part of its name, because it's than book.
                // For the "official" lyx-layouts it's no problem to support
                // all well
-               if (!contains(buffer->params.getLyXTextClass().name(),
+               if (!contains(buffer.params().getLyXTextClass().name(),
                              "art")) {
-                       if (buffer->params.sides == LyXTextClass::OneSide) {
+                       if (buffer.params().sides == LyXTextClass::OneSide) {
                                // oneside
                                os << "\\clearpage";
                        } else {
@@ -129,28 +196,17 @@ int InsetBibtex::latex(Buffer const * buffer, ostream & os,
                }
        }
 
-       // database
-       // If we generate in a temp dir, we might need to give an
-       // absolute path there. This is a bit complicated since we can
-       // have a comma-separated list of bibliographies
-       string db_out;
-       while (!adb.empty()) {
-               if (!buffer->niceFile &&
-                   IsFileReadable(MakeAbsPath(adb, buffer->filePath())+".bib"))
-                        adb = os::external_path(MakeAbsPath(adb, buffer->filePath()));
-               db_out += adb;
-               db_out += ',';
-               db_in = split(db_in, adb,',');
+       if (!buffer.params().use_bibtopic){
+               os << "\\bibliography{" << db_out << "}\n";
+               i += 1;
        }
-       db_out = rtrim(db_out, ",");
-       os   << "\\bibliography{" << db_out << "}\n";
-       return 2;
+
+       return i;
 }
 
 
 vector<string> const InsetBibtex::getFiles(Buffer const & buffer) const
 {
-       // Doesn't appear to be used (Angus, 31 July 2001)
        Path p(buffer.filePath());
 
        vector<string> vec;
@@ -175,11 +231,10 @@ vector<string> const InsetBibtex::getFiles(Buffer const & buffer) const
 
 
 // This method returns a comma separated list of Bibtex entries
-void InsetBibtex::fillWithBibKeys
-       (Buffer const * buffer, vector<pair<string, string> > & keys) const
+void InsetBibtex::fillWithBibKeys(Buffer const & buffer,
+                                 std::vector<std::pair<string, string> > & keys) const
 {
-       lyx::Assert(buffer);
-       vector<string> const files = getFiles(*buffer);
+       vector<string> const files = getFiles(buffer);
        for (vector<string>::const_iterator it = files.begin();
             it != files.end(); ++ it) {
                // This is a _very_ simple parser for Bibtex database
@@ -212,19 +267,6 @@ void InsetBibtex::fillWithBibKeys
 }
 
 
-void InsetBibtex::edit(BufferView *, int, int, mouse_button::state)
-{
-       InsetCommandMailer mailer("bibtex", *this);
-       mailer.showDialog();
-}
-
-
-void InsetBibtex::edit(BufferView * bv, bool)
-{
-       edit(bv, 0, 0, mouse_button::none);
-}
-
-
 bool InsetBibtex::addDatabase(string const & db)
 {
        string contents(getContents());
@@ -255,3 +297,10 @@ bool InsetBibtex::delDatabase(string const & db)
        }
        return true;
 }
+
+
+void InsetBibtex::validate(LaTeXFeatures & features) const
+{
+       if (features.bufferParams().use_bibtopic)
+               features.require("bibtopic");
+}