1999-09-27 18:44:28 +00:00
|
|
|
// -*- C++ -*-
|
2002-09-25 14:26:13 +00:00
|
|
|
/**
|
|
|
|
* \file insetquotes.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
* \author Jean-Marc Lasgouttes
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-09-25 14:26:13 +00:00
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
#ifndef INSET_QUOTES_H
|
|
|
|
#define INSET_QUOTES_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
#include "inset.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2006-09-02 10:18:20 +00:00
|
|
|
#include "support/types.h"
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
class BufferParams;
|
2001-07-20 09:38:19 +00:00
|
|
|
class Language;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2005-01-19 15:03:31 +00:00
|
|
|
class LaTeXFeatures;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
/** Quotes.
|
|
|
|
Used for the various quotes. German, English, French, all either
|
2002-03-21 17:09:55 +00:00
|
|
|
double or single **/
|
2003-07-25 21:20:24 +00:00
|
|
|
class InsetQuotes : public InsetOld {
|
1999-09-27 18:44:28 +00:00
|
|
|
public:
|
|
|
|
///
|
|
|
|
enum quote_language {
|
|
|
|
///
|
|
|
|
EnglishQ,
|
|
|
|
///
|
|
|
|
SwedishQ,
|
|
|
|
///
|
|
|
|
GermanQ,
|
|
|
|
///
|
|
|
|
PolishQ,
|
|
|
|
///
|
|
|
|
FrenchQ,
|
|
|
|
///
|
|
|
|
DanishQ
|
|
|
|
};
|
|
|
|
///
|
|
|
|
enum quote_side {
|
|
|
|
///
|
|
|
|
LeftQ,
|
|
|
|
///
|
2002-03-21 17:09:55 +00:00
|
|
|
RightQ
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
|
|
|
///
|
|
|
|
enum quote_times {
|
|
|
|
///
|
|
|
|
SingleQ,
|
|
|
|
///
|
2002-03-21 17:09:55 +00:00
|
|
|
DoubleQ
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
2002-03-21 17:09:55 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
/** The constructor works like this:
|
|
|
|
\begin{itemize}
|
2002-03-21 17:09:55 +00:00
|
|
|
\item fls <- french single quote left
|
|
|
|
\item grd <- german double quote right
|
1999-09-27 18:44:28 +00:00
|
|
|
\item etc.
|
|
|
|
\end{itemize}
|
2000-04-08 17:02:02 +00:00
|
|
|
*/
|
|
|
|
explicit
|
2003-10-06 15:43:21 +00:00
|
|
|
InsetQuotes(std::string const & str = "eld");
|
1999-09-27 18:44:28 +00:00
|
|
|
/// Create the right quote inset after character c
|
2006-09-02 10:18:20 +00:00
|
|
|
InsetQuotes(lyx::char_type c, BufferParams const & params);
|
2004-02-20 10:32:44 +00:00
|
|
|
/// Direct access to inner/outer quotation marks
|
2006-09-02 10:18:20 +00:00
|
|
|
InsetQuotes(lyx::char_type c, quote_language l, quote_times t);
|
2000-02-10 17:53:36 +00:00
|
|
|
///
|
2003-06-02 10:03:27 +00:00
|
|
|
void metrics(MetricsInfo &, Dimension &) const;
|
2000-02-10 17:53:36 +00:00
|
|
|
///
|
2003-05-30 06:48:24 +00:00
|
|
|
void draw(PainterInfo & pi, int x, int y) const;
|
2001-08-03 18:28:11 +00:00
|
|
|
#if 0
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
LyXFont const convertFont(LyXFont const & font) const;
|
2001-08-03 18:28:11 +00:00
|
|
|
#endif
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
void write(Buffer const &, std::ostream &) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2003-08-28 07:41:31 +00:00
|
|
|
void read(Buffer const &, LyXLex & lex);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2006-10-19 16:51:30 +00:00
|
|
|
int latex(Buffer const &, lyx::odocstream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
OutputParams const &) const;
|
2000-03-06 02:42:40 +00:00
|
|
|
///
|
2006-10-11 19:40:50 +00:00
|
|
|
int plaintext(Buffer const &, lyx::odocstream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
OutputParams const &) const;
|
2000-04-24 20:58:23 +00:00
|
|
|
///
|
2006-10-19 21:00:33 +00:00
|
|
|
int docbook(Buffer const &, lyx::odocstream &,
|
2003-11-05 12:06:20 +00:00
|
|
|
OutputParams const &) const;
|
2005-11-25 14:40:34 +00:00
|
|
|
|
|
|
|
/// the string that is passed to the TOC
|
2006-10-11 19:40:50 +00:00
|
|
|
virtual int textString(Buffer const &, lyx::odocstream &,
|
2005-11-25 14:40:34 +00:00
|
|
|
OutputParams const &) const;
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-06-28 10:25:20 +00:00
|
|
|
void validate(LaTeXFeatures &) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2004-11-25 19:13:07 +00:00
|
|
|
InsetBase::Code lyxCode() const;
|
2004-02-20 10:32:44 +00:00
|
|
|
// should this inset be handled like a normal character
|
2002-01-08 14:24:49 +00:00
|
|
|
bool isChar() const { return true; }
|
2002-03-21 17:09:55 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
private:
|
2004-11-23 23:04:52 +00:00
|
|
|
virtual std::auto_ptr<InsetBase> doClone() const;
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-07-20 09:38:19 +00:00
|
|
|
quote_language language_;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-07-20 09:38:19 +00:00
|
|
|
quote_side side_;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-07-20 09:38:19 +00:00
|
|
|
quote_times times_;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/** 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);
|
2004-02-20 10:32:44 +00:00
|
|
|
/// Decide whether we need left or right quotation marks
|
2006-09-02 10:18:20 +00:00
|
|
|
void getPosition(lyx::char_type c);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
void parseString(std::string const &);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string const dispString(Language const *) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
|
|
|
#endif
|