mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
a0e6ddd7f4
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1434 a592a061-630c-0410-9148-cb99ea01b6c8
41 lines
841 B
C++
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
|