mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
2470d9297d
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2681 a592a061-630c-0410-9148-cb99ea01b6c8
125 lines
2.4 KiB
C++
125 lines
2.4 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of*
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2001 The LyX Team
|
|
*
|
|
* ====================================================== */
|
|
|
|
#ifndef INSET_QUOTES_H
|
|
#define INSET_QUOTES_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "inset.h"
|
|
|
|
class BufferParams;
|
|
class Language;
|
|
|
|
struct LaTeXFeatures;
|
|
|
|
|
|
/** Quotes.
|
|
|
|
Used for the various quotes. German, English, French, all either
|
|
double or single **/
|
|
class InsetQuotes : public Inset {
|
|
public:
|
|
///
|
|
enum quote_language {
|
|
///
|
|
EnglishQ,
|
|
///
|
|
SwedishQ,
|
|
///
|
|
GermanQ,
|
|
///
|
|
PolishQ,
|
|
///
|
|
FrenchQ,
|
|
///
|
|
DanishQ
|
|
};
|
|
///
|
|
enum quote_side {
|
|
///
|
|
LeftQ,
|
|
///
|
|
RightQ
|
|
};
|
|
///
|
|
enum quote_times {
|
|
///
|
|
SingleQ,
|
|
///
|
|
DoubleQ
|
|
};
|
|
|
|
/** The constructor works like this:
|
|
\begin{itemize}
|
|
\item fls <- french single quote left
|
|
\item grd <- german double quote right
|
|
\item etc.
|
|
\end{itemize}
|
|
*/
|
|
explicit
|
|
InsetQuotes(string const & str = "eld");
|
|
/// Create the right quote inset after character c
|
|
InsetQuotes(char c, BufferParams const & params);
|
|
|
|
///
|
|
int ascent(BufferView *, LyXFont const &) const;
|
|
///
|
|
int descent(BufferView *, LyXFont const &) const;
|
|
///
|
|
int width(BufferView *, LyXFont const &) const;
|
|
///
|
|
void draw(BufferView *, LyXFont const &, int, float &, bool) const;
|
|
#if 0
|
|
///
|
|
LyXFont const convertFont(LyXFont const & font) const;
|
|
#endif
|
|
///
|
|
void write(Buffer const *, std::ostream &) const;
|
|
///
|
|
void read(Buffer const *, LyXLex & lex);
|
|
///
|
|
int latex(Buffer const *, std::ostream &,
|
|
bool fragile, bool free_spc) const;
|
|
///
|
|
int ascii(Buffer const *, std::ostream &, int linelen) const;
|
|
///
|
|
int linuxdoc(Buffer const *, std::ostream &) const;
|
|
///
|
|
int docbook(Buffer const *, std::ostream &) const;
|
|
///
|
|
void validate(LaTeXFeatures &) const;
|
|
///
|
|
virtual Inset * clone(Buffer const &, bool same_id = false) const;
|
|
///
|
|
Inset::Code lyxCode() const;
|
|
private:
|
|
///
|
|
quote_language language_;
|
|
///
|
|
quote_side side_;
|
|
///
|
|
quote_times times_;
|
|
|
|
/** The parameters of the constructor are the language, the
|
|
side and the multiplicity of the quote.
|
|
*/
|
|
InsetQuotes(quote_language l, quote_side s, quote_times t);
|
|
///
|
|
void parseString(string const &);
|
|
///
|
|
string const dispString(Language const *) const;
|
|
};
|
|
#endif
|
|
|