mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
db8c16d554
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23289 a592a061-630c-0410-9148-cb99ea01b6c8
59 lines
1.2 KiB
C++
59 lines
1.2 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file InsetLabel.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef INSET_LABEL_H
|
|
#define INSET_LABEL_H
|
|
|
|
#include "InsetCommand.h"
|
|
|
|
|
|
namespace lyx {
|
|
|
|
class InsetLabel : public InsetCommand {
|
|
public:
|
|
///
|
|
InsetLabel(InsetCommandParams const &);
|
|
///
|
|
docstring screenLabel() const;
|
|
///
|
|
EDITABLE editable() const { return IS_EDITABLE; }
|
|
///
|
|
InsetCode lyxCode() const { return LABEL_CODE; }
|
|
/// Appends \c list with this label
|
|
void getLabelList(std::vector<docstring> & list) const;
|
|
///
|
|
int latex(odocstream &, OutputParams const &) const;
|
|
///
|
|
int plaintext(odocstream &, OutputParams const &) const;
|
|
///
|
|
int docbook(odocstream &, OutputParams const &) const;
|
|
///
|
|
static ParamInfo const & findInfo(std::string const &);
|
|
///
|
|
static std::string defaultCommand() { return "label"; };
|
|
///
|
|
static bool isCompatibleCommand(std::string const & s)
|
|
{ return s == "label"; }
|
|
///
|
|
void addToToc(ParConstIterator const &) const;
|
|
protected:
|
|
///
|
|
void doDispatch(Cursor & cur, FuncRequest & cmd);
|
|
private:
|
|
///
|
|
Inset * clone() const;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|