// -*- C++ -*- /* This file is part of* * ====================================================== * * LyX, The Document Processor * * Copyright (C) 1995 Matthias Ettrich * Copyright (C) 1995-1998 The LyX Team. *
*======================================================*/
/** Used to insert bibitem's information (key and label) Must be automatically inserted as the first object in a bibliography paragraph.
*/ class InsetBibKey: public InsetCommand { public: ///
InsetBibKey(): InsetCommand("bibitem") { counter = 1; } ///
InsetBibKey(LString const & key, LString const & label=LString()); ///
InsetBibKey(InsetBibKey const*); ///
~InsetBibKey(); ///
Inset* Clone() { returnnew InsetBibKey(this); } /// Currently \bibitem is used as a LyX2.x command, so we need this method. void Write(FILE *); ///
LString getScreenLabel() const; /// void Edit(int, int); /// unsignedchar Editable() const { return 1;
} /// A user can't neither insert nor delete this inset bool Deletable() const { returnfalse;
} /// void setCounter(int); /// int getCounter() const { return counter; }
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.