mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
19a1d8bc10
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9532 a592a061-630c-0410-9148-cb99ea01b6c8
67 lines
1.5 KiB
C++
67 lines
1.5 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file insetbibitem.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_BIBITEM_H
|
|
#define INSET_BIBITEM_H
|
|
|
|
|
|
#include "insetcommand.h"
|
|
|
|
/** Used to insert bibitem's information (key and label)
|
|
|
|
Must be automatically inserted as the first object in a
|
|
bibliography paragraph.
|
|
*/
|
|
class InsetBibitem : public InsetCommand {
|
|
public:
|
|
///
|
|
InsetBibitem(InsetCommandParams const &);
|
|
/** Currently \bibitem is used as a LyX2.x command,
|
|
so we need this method.
|
|
*/
|
|
void write(Buffer const &, std::ostream &) const;
|
|
///
|
|
void read(Buffer const &, LyXLex & lex);
|
|
///
|
|
virtual std::string const getScreenLabel(Buffer const &) const;
|
|
///
|
|
EDITABLE editable() const { return IS_EDITABLE; }
|
|
///
|
|
InsetBase::Code lyxCode() const { return InsetBase::BIBITEM_CODE; }
|
|
/// keep .lyx format compatible
|
|
bool directWrite() const { return true; }
|
|
///
|
|
void setCounter(int);
|
|
///
|
|
int getCounter() const { return counter; }
|
|
///
|
|
std::string const getBibLabel() const;
|
|
///
|
|
int plaintext(Buffer const &, std::ostream &,
|
|
OutputParams const &) const;
|
|
protected:
|
|
///
|
|
virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
|
|
private:
|
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
|
|
|
///
|
|
int counter;
|
|
///
|
|
static int key_counter;
|
|
};
|
|
|
|
|
|
/// Return the widest label in the Bibliography.
|
|
std::string const bibitemWidest(Buffer const &);
|
|
|
|
#endif // INSET_BIBITEM_H
|