1999-09-27 18:44:28 +00:00
|
|
|
// -*- C++ -*-
|
2002-09-25 14:26:13 +00:00
|
|
|
/**
|
2007-04-25 01:24:38 +00:00
|
|
|
* \file InsetQuotes.h
|
2002-09-25 14:26:13 +00:00
|
|
|
* 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
|
|
|
|
|
|
|
|
2007-04-29 13:39:47 +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"
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
class BufferParams;
|
2001-07-20 09:38:19 +00:00
|
|
|
class Language;
|
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 **/
|
2007-04-29 13:39:47 +00:00
|
|
|
class InsetQuotes : public Inset {
|
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
|
|
|
*/
|
2007-11-01 22:17:22 +00:00
|
|
|
explicit InsetQuotes(std::string const & str = "eld");
|
1999-09-27 18:44:28 +00:00
|
|
|
/// Create the right quote inset after character c
|
2006-10-21 00:16:43 +00:00
|
|
|
InsetQuotes(char_type c, BufferParams const & params);
|
2004-02-20 10:32:44 +00:00
|
|
|
/// Direct access to inner/outer quotation marks
|
2006-10-21 00:16:43 +00:00
|
|
|
InsetQuotes(char_type c, quote_language l, quote_times t);
|
2000-02-10 17:53:36 +00:00
|
|
|
///
|
2007-11-01 22:17:22 +00:00
|
|
|
docstring name() const;
|
2007-04-29 12:32:14 +00:00
|
|
|
///
|
2007-09-21 20:39:47 +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;
|
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
|
|
|
///
|
2007-04-26 11:30:54 +00:00
|
|
|
void read(Buffer const &, Lexer & lex);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
int latex(Buffer const &, odocstream &, OutputParams const &) const;
|
2000-03-06 02:42:40 +00:00
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
int plaintext(Buffer const &, odocstream &, OutputParams const &) const;
|
2000-04-24 20:58:23 +00:00
|
|
|
///
|
2006-10-21 00:16:43 +00:00
|
|
|
int docbook(Buffer const &, odocstream &, OutputParams const &) const;
|
2005-11-25 14:40:34 +00:00
|
|
|
|
|
|
|
/// the string that is passed to the TOC
|
2007-01-19 16:23:13 +00:00
|
|
|
virtual void textString(Buffer const &, odocstream &) const;
|
2005-11-25 14:40:34 +00:00
|
|
|
|
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
|
|
|
///
|
2007-10-16 16:48:21 +00:00
|
|
|
InsetCode lyxCode() const { return QUOTE_CODE; }
|
|
|
|
/// 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:
|
2007-08-30 18:03:17 +00:00
|
|
|
virtual Inset * clone() const;
|
2004-11-23 23:04:52 +00:00
|
|
|
|
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-10-21 00:16:43 +00:00
|
|
|
void getPosition(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
|
|
|
///
|
2006-10-21 19:27:02 +00:00
|
|
|
lyx::docstring const dispString(Language const *) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
#endif
|