mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
c6150425e5
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@688 a592a061-630c-0410-9148-cb99ea01b6c8
70 lines
1.4 KiB
C++
70 lines
1.4 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of*
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright (C) 1995 Matthias Ettrich
|
|
*
|
|
* ====================================================== */
|
|
|
|
#ifndef INSET_LATEX_H
|
|
#define INSET_LATEX_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "lyxinset.h"
|
|
#include "LString.h"
|
|
|
|
/** Latex. Used to insert non-deletable LaTeX-Code automatically
|
|
|
|
Behaves as LaTeXDels, but cannot be deleted with the normal
|
|
delete/backspace operations. This is used when you insert a LaTeX
|
|
figure (done as "\input "), but you still have to type the filename
|
|
yourself after the inset. */
|
|
class InsetLatex : public Inset {
|
|
public:
|
|
///
|
|
InsetLatex();
|
|
///
|
|
explicit
|
|
InsetLatex(string const & string);
|
|
///
|
|
~InsetLatex();
|
|
///
|
|
int Ascent(LyXFont const & font) const;
|
|
///
|
|
int Descent(LyXFont const & font) const;
|
|
///
|
|
int Width(LyXFont const & font) const;
|
|
///
|
|
void Draw(LyXFont font, LyXScreen & scr, int baseline, float & x);
|
|
///
|
|
void Write(FILE * file);
|
|
///
|
|
void Read(LyXLex & lex);
|
|
///
|
|
int Latex(FILE * file, signed char fragile, bool free_spc);
|
|
///
|
|
int Latex(string & file, signed char fragile, bool free_spc);
|
|
///
|
|
int Ascii(string & file) const;
|
|
///
|
|
int Linuxdoc(string & file);
|
|
///
|
|
int DocBook(string & file);
|
|
///
|
|
bool Deletable() const;
|
|
///
|
|
Inset * Clone() const;
|
|
///
|
|
Inset::Code LyxCode() const;
|
|
private:
|
|
///
|
|
string contents;
|
|
};
|
|
|
|
#endif
|