1999-09-27 18:44:28 +00:00
|
|
|
// -*- C++ -*-
|
2002-09-25 14:26:13 +00:00
|
|
|
/**
|
2007-04-25 01:24:38 +00:00
|
|
|
* \file InsetBibtex.h
|
2002-09-25 14:26:13 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
* \author Alejandro Aguilar Sierra
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-09-25 14:26:13 +00:00
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2003-02-21 09:20:18 +00:00
|
|
|
#ifndef INSET_BIBTEX_H
|
|
|
|
#define INSET_BIBTEX_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2007-08-20 17:04:36 +00:00
|
|
|
#include "BiblioInfo.h"
|
2008-03-09 06:05:22 +00:00
|
|
|
#include "EmbeddedFiles.h"
|
2008-03-29 14:38:38 +00:00
|
|
|
#include "InsetCommand.h"
|
|
|
|
|
|
|
|
#include <map>
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2007-12-05 10:32:49 +00:00
|
|
|
namespace lyx {
|
2006-12-01 20:09:08 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
2003-09-03 17:40:58 +00:00
|
|
|
/** Used to insert BibTeX's information
|
|
|
|
*/
|
|
|
|
class InsetBibtex : public InsetCommand {
|
1999-09-27 18:44:28 +00:00
|
|
|
public:
|
|
|
|
///
|
2003-09-03 17:40:58 +00:00
|
|
|
InsetBibtex(InsetCommandParams const &);
|
2003-05-26 09:13:55 +00:00
|
|
|
///
|
2008-03-29 14:38:38 +00:00
|
|
|
virtual void setBuffer(Buffer & buffer);
|
2008-03-15 04:48:31 +00:00
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
docstring screenLabel() const;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
EDITABLE editable() const { return IS_EDITABLE; }
|
2000-08-04 13:12:30 +00:00
|
|
|
///
|
2007-10-13 09:04:52 +00:00
|
|
|
InsetCode lyxCode() const { return BIBTEX_CODE; }
|
2000-08-04 13:12:30 +00:00
|
|
|
///
|
2007-05-18 14:32:29 +00:00
|
|
|
DisplayType display() const { return AlignCenter; }
|
2003-10-22 10:22:09 +00:00
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
int latex(odocstream &, OutputParams const &) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2008-02-27 21:51:29 +00:00
|
|
|
void fillWithBibKeys(BiblioInfo &, InsetIterator const &) const;
|
2001-07-20 14:18:48 +00:00
|
|
|
///
|
2008-03-29 14:38:38 +00:00
|
|
|
EmbeddedFileList const & getBibFiles() const;
|
2001-08-20 13:42:29 +00:00
|
|
|
///
|
2008-03-29 14:49:13 +00:00
|
|
|
bool addDatabase(docstring const &);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2008-03-29 14:49:13 +00:00
|
|
|
bool delDatabase(docstring const &);
|
2004-03-29 13:17:25 +00:00
|
|
|
///
|
|
|
|
void validate(LaTeXFeatures &) const;
|
2007-10-25 04:13:56 +00:00
|
|
|
///
|
2008-02-23 22:01:02 +00:00
|
|
|
static ParamInfo const & findInfo(std::string const &);
|
2007-10-25 04:13:56 +00:00
|
|
|
///
|
|
|
|
static std::string defaultCommand() { return "bibtex"; };
|
|
|
|
///
|
|
|
|
static bool isCompatibleCommand(std::string const & s)
|
|
|
|
{ return s == "bibtex"; }
|
2008-03-09 06:05:22 +00:00
|
|
|
/// update bibfiles and embed from bibfiles_
|
|
|
|
void updateParam();
|
2008-03-29 15:32:36 +00:00
|
|
|
/// look up the path to the file using TeX
|
|
|
|
static support::FileName
|
|
|
|
getBibTeXPath(docstring const & filename, Buffer const & buf);
|
2008-03-05 00:21:05 +00:00
|
|
|
private:
|
2008-03-29 15:32:36 +00:00
|
|
|
///
|
2008-03-29 21:53:25 +00:00
|
|
|
void updateBibFiles() const;
|
2008-01-08 17:02:09 +00:00
|
|
|
///
|
2008-02-27 21:51:29 +00:00
|
|
|
void registerEmbeddedFiles(EmbeddedFileList &) const;
|
2008-01-08 17:02:09 +00:00
|
|
|
///
|
2008-02-27 21:51:29 +00:00
|
|
|
void updateEmbeddedFile(EmbeddedFile const & file);
|
2008-02-23 22:01:02 +00:00
|
|
|
///
|
2008-02-27 21:51:29 +00:00
|
|
|
void doDispatch(Cursor & cur, FuncRequest & cmd);
|
2008-02-23 22:01:02 +00:00
|
|
|
///
|
2008-03-05 00:21:05 +00:00
|
|
|
Inset * clone() const { return new InsetBibtex(*this); }
|
2008-03-29 14:38:38 +00:00
|
|
|
/// embedded bib files
|
|
|
|
mutable EmbeddedFileList bibfiles_;
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
2003-02-21 09:20:18 +00:00
|
|
|
#endif // INSET_BIBTEX_H
|