mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
57 lines
1.1 KiB
C
57 lines
1.1 KiB
C
|
// -*- C++ -*-
|
||
|
/* This file is part of*
|
||
|
* ======================================================
|
||
|
*
|
||
|
* LyX, The Document Processor
|
||
|
*
|
||
|
* Copyright (C) 1995 Matthias Ettrich
|
||
|
* 1995-1998 The LyX Team
|
||
|
*
|
||
|
*======================================================*/
|
||
|
|
||
|
#ifndef _INSET_LABEL_H
|
||
|
#define _INSET_LABEL_H
|
||
|
|
||
|
#ifdef __GNUG__
|
||
|
#pragma interface
|
||
|
#endif
|
||
|
|
||
|
#include "insetcommand.h"
|
||
|
#include "LString.h"
|
||
|
|
||
|
///
|
||
|
class InsetLabel: public InsetCommand {
|
||
|
public:
|
||
|
///
|
||
|
InsetLabel(LString const & cmd);
|
||
|
///
|
||
|
InsetLabel() : InsetCommand("label") {;}
|
||
|
///
|
||
|
~InsetLabel();
|
||
|
///
|
||
|
Inset* Clone();
|
||
|
///
|
||
|
Inset::Code LyxCode() const { return Inset::LABEL_CODE; }
|
||
|
///
|
||
|
int GetNumberOfLabels() const;
|
||
|
///
|
||
|
LString getLabel(int) const;
|
||
|
///
|
||
|
LString getScreenLabel() const { return getContents(); }
|
||
|
///
|
||
|
unsigned char Editable() const { return 0; }
|
||
|
///
|
||
|
int Latex(FILE *file, signed char fragile);
|
||
|
///
|
||
|
int Latex(LString &file, signed char fragile);
|
||
|
///
|
||
|
int Linuxdoc(LString &file);
|
||
|
///
|
||
|
int DocBook(LString &file);
|
||
|
private:
|
||
|
/// This function escapes 8-bit characters
|
||
|
LString escape(LString const &) const;
|
||
|
};
|
||
|
|
||
|
#endif
|