mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
86e2d69f18
code but do not yet attempt to collapse them into LFUN_DIALOG_APPLY. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6289 a592a061-630c-0410-9148-cb99ea01b6c8
71 lines
1.5 KiB
C++
71 lines
1.5 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file insetbibtex.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Alejandro Aguilar Sierra
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#ifndef INSET_BIBTEX_H
|
|
#define INSET_BIBTEX_H
|
|
|
|
|
|
#include <vector>
|
|
#include "insetcommand.h"
|
|
|
|
class Buffer;
|
|
|
|
/** Used to insert BibTeX's information
|
|
*/
|
|
class InsetBibtex : public InsetCommand {
|
|
public:
|
|
///
|
|
InsetBibtex(InsetCommandParams const &, bool same_id = false);
|
|
///
|
|
~InsetBibtex();
|
|
///
|
|
Inset * clone(Buffer const &, bool same_id = false) const {
|
|
return new InsetBibtex(params(), same_id);
|
|
}
|
|
/// small wrapper for the time being
|
|
virtual dispatch_result localDispatch(FuncRequest const & cmd);
|
|
///
|
|
string const getScreenLabel(Buffer const *) const;
|
|
///
|
|
EDITABLE editable() const { return IS_EDITABLE; }
|
|
///
|
|
Inset::Code lyxCode() const { return Inset::BIBTEX_CODE; }
|
|
///
|
|
void edit(BufferView *, int x, int y, mouse_button::state button);
|
|
///
|
|
void edit(BufferView * bv, bool front = true);
|
|
///
|
|
int latex(Buffer const *, std::ostream &,
|
|
bool fragile, bool freespace) const;
|
|
///
|
|
void fillWithBibKeys(Buffer const *,
|
|
std::vector<std::pair<string,string> > &) const;
|
|
///
|
|
std::vector<string> const getFiles(Buffer const &) const;
|
|
///
|
|
bool addDatabase(string const &);
|
|
///
|
|
bool delDatabase(string const &);
|
|
///
|
|
bool display() const { return true; }
|
|
///
|
|
struct Holder {
|
|
InsetBibtex * inset;
|
|
BufferView * view;
|
|
};
|
|
|
|
private:
|
|
///
|
|
Holder holder;
|
|
};
|
|
|
|
#endif // INSET_BIBTEX_H
|