lyx_mirror/src/insets/insetcite.h
Dekel Tsur a0e6ddd7f4 Update citations if the insetbib key has changed.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1434 a592a061-630c-0410-9148-cb99ea01b6c8
2001-01-31 20:39:53 +00:00

41 lines
841 B
C++

// -*- C++ -*-
/* This file is part of*
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 2000 The LyX Team.
*
* ====================================================== */
#ifndef INSET_CITE_H
#define INSET_CITE_H
#ifdef __GNUG__
#pragma interface
#endif
#include "insetcommand.h"
/** Used to insert citations
*/
class InsetCitation : public InsetCommand {
public:
///
InsetCitation(InsetCommandParams const &);
///
Inset * Clone(Buffer const &) const {
return new InsetCitation(params());
}
///
string const getScreenLabel() const;
///
EDITABLE Editable() const { return IS_EDITABLE; }
///
Inset::Code LyxCode() const { return Inset::CITE_CODE; }
///
void Edit(BufferView *, int, int, unsigned int);
};
#endif // INSET_CITE_H