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
|
2016-12-24 09:13:51 +00:00
|
|
|
* \author Jürgen Spitzmüller
|
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
|
|
|
|
2008-03-15 00:02:41 +00:00
|
|
|
#include "support/docstring.h"
|
2006-09-02 10:18:20 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
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 **/
|
2016-12-24 09:13:51 +00:00
|
|
|
class InsetQuotesParams {
|
1999-09-27 18:44:28 +00:00
|
|
|
public:
|
|
|
|
///
|
2016-12-20 16:55:43 +00:00
|
|
|
enum QuoteStyle {
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2008-03-15 00:02:41 +00:00
|
|
|
EnglishQuotes,
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2008-03-15 00:02:41 +00:00
|
|
|
SwedishQuotes,
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2008-03-15 00:02:41 +00:00
|
|
|
GermanQuotes,
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2008-03-15 00:02:41 +00:00
|
|
|
PolishQuotes,
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2016-12-24 13:27:00 +00:00
|
|
|
SwissQuotes,
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2016-12-21 14:17:30 +00:00
|
|
|
DanishQuotes,
|
|
|
|
///
|
2016-12-24 13:27:00 +00:00
|
|
|
PlainQuotes,
|
|
|
|
///
|
|
|
|
BritishQuotes,
|
|
|
|
///
|
|
|
|
SwedishGQuotes,
|
|
|
|
///
|
|
|
|
FrenchQuotes,
|
|
|
|
///
|
|
|
|
FrenchINQuotes,
|
|
|
|
///
|
2016-12-25 11:19:02 +00:00
|
|
|
RussianQuotes,
|
|
|
|
///
|
2016-12-26 13:03:48 +00:00
|
|
|
CJKQuotes,
|
|
|
|
///
|
|
|
|
CJKAngleQuotes,
|
|
|
|
///
|
2016-12-25 11:19:02 +00:00
|
|
|
DynamicQuotes
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
|
|
|
///
|
2008-03-15 00:02:41 +00:00
|
|
|
enum QuoteSide {
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2016-12-24 13:27:00 +00:00
|
|
|
OpeningQuote,
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2016-12-24 13:27:00 +00:00
|
|
|
ClosingQuote
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
|
|
|
///
|
2016-12-20 16:55:43 +00:00
|
|
|
enum QuoteLevel {
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2016-12-24 13:27:00 +00:00
|
|
|
SecondaryQuotes,
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2016-12-24 13:27:00 +00:00
|
|
|
PrimaryQuotes
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
2016-12-24 09:13:51 +00:00
|
|
|
/// Returns the unicode character of a given quote
|
|
|
|
char_type getQuoteChar(QuoteStyle const &, QuoteLevel const &,
|
2018-07-15 10:11:10 +00:00
|
|
|
QuoteSide const &, bool const rtl = false) const;
|
2016-12-24 09:13:51 +00:00
|
|
|
/// Returns a map of quotation marks
|
|
|
|
std::map<std::string, docstring> getTypes() const;
|
|
|
|
///
|
2018-07-15 10:11:10 +00:00
|
|
|
docstring getLaTeXQuote(char_type c, std::string const &,
|
|
|
|
bool const rtl = false) const;
|
2016-12-24 09:13:51 +00:00
|
|
|
///
|
|
|
|
docstring getHTMLQuote(char_type c) const;
|
2017-01-05 13:25:36 +00:00
|
|
|
/// Returns a descriptive label of a style suitable for dialog and menu
|
|
|
|
docstring const getGuiLabel(QuoteStyle const & qs,
|
|
|
|
bool langdef = false);
|
|
|
|
/// Returns a descriptive label of a given char
|
|
|
|
docstring const getShortGuiLabel(docstring const string);
|
2016-12-24 09:13:51 +00:00
|
|
|
///
|
|
|
|
int stylescount() const;
|
2017-01-05 13:25:36 +00:00
|
|
|
/// Returns the matching style shortcut char
|
|
|
|
char getStyleChar(QuoteStyle const & style) const;
|
|
|
|
/// Returns the quote style from the shortcut string
|
|
|
|
QuoteStyle getQuoteStyle(std::string const & s,
|
|
|
|
bool const allow_wildcards = false,
|
|
|
|
QuoteStyle fallback = EnglishQuotes);
|
|
|
|
/// Returns the quote sind from the shortcut string
|
|
|
|
QuoteSide getQuoteSide(std::string const & s,
|
|
|
|
bool const allow_wildcards = false,
|
|
|
|
QuoteSide fallback = OpeningQuote);
|
|
|
|
/// Returns the quote level from the shortcut string
|
|
|
|
QuoteLevel getQuoteLevel(std::string const & s,
|
|
|
|
bool const allow_wildcards = false,
|
|
|
|
QuoteLevel fallback = PrimaryQuotes);
|
2016-12-24 09:13:51 +00:00
|
|
|
};
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2016-12-24 09:13:51 +00:00
|
|
|
///
|
|
|
|
extern InsetQuotesParams quoteparams;
|
|
|
|
|
|
|
|
/** Quotes.
|
|
|
|
Used for the various quotes. German, English, French, all either
|
|
|
|
double or single **/
|
|
|
|
class InsetQuotes : public Inset
|
|
|
|
{
|
|
|
|
public:
|
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
|
|
|
*/
|
2009-11-08 15:53:21 +00:00
|
|
|
explicit InsetQuotes(Buffer * buf, std::string const & str = "eld");
|
2004-02-20 10:32:44 +00:00
|
|
|
/// Direct access to inner/outer quotation marks
|
2016-12-24 09:13:51 +00:00
|
|
|
InsetQuotes(Buffer * buf, char_type c, InsetQuotesParams::QuoteLevel level,
|
2016-12-20 16:55:43 +00:00
|
|
|
std::string const & side = std::string(),
|
|
|
|
std::string const & style = std::string());
|
2000-02-10 17:53:36 +00:00
|
|
|
///
|
2011-03-28 22:33:04 +00:00
|
|
|
docstring layoutName() 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
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
void write(std::ostream &) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
void read(Lexer & lex);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2016-12-17 11:58:33 +00:00
|
|
|
bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
|
|
|
|
///
|
2011-02-10 20:02:48 +00:00
|
|
|
void latex(otexstream &, OutputParams const &) const;
|
2000-03-06 02:42:40 +00:00
|
|
|
///
|
2013-03-08 19:52:18 +00:00
|
|
|
int plaintext(odocstringstream & ods, OutputParams const & op,
|
|
|
|
size_t max_length = INT_MAX) const;
|
2000-04-24 20:58:23 +00:00
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
int docbook(odocstream &, OutputParams const &) const;
|
2009-06-05 17:48:14 +00:00
|
|
|
///
|
2009-11-19 23:02:47 +00:00
|
|
|
docstring xhtml(XHTMLStream &, OutputParams const &) const;
|
2005-11-25 14:40:34 +00:00
|
|
|
|
2017-07-03 17:45:58 +00:00
|
|
|
///
|
2010-12-15 01:34:04 +00:00
|
|
|
void toString(odocstream &) const;
|
2010-12-20 21:55:09 +00:00
|
|
|
///
|
2015-10-04 18:38:47 +00:00
|
|
|
void forOutliner(docstring &, size_t const maxlen, bool const) const;
|
2005-11-25 14:40:34 +00:00
|
|
|
|
2016-12-10 10:53:42 +00:00
|
|
|
/// Update the contextual information of this inset
|
|
|
|
void updateBuffer(ParIterator const &, UpdateType);
|
|
|
|
|
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
|
|
|
///
|
2016-12-17 11:58:33 +00:00
|
|
|
std::string contextMenuName() const;
|
|
|
|
///
|
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; }
|
2016-12-24 09:13:51 +00:00
|
|
|
|
2016-12-17 11:58:33 +00:00
|
|
|
/// Returns the current quote type
|
|
|
|
std::string getType() const;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
private:
|
2008-02-27 20:43:16 +00:00
|
|
|
///
|
2008-02-28 19:04:13 +00:00
|
|
|
Inset * clone() const { return new InsetQuotes(*this); }
|
2004-11-23 23:04:52 +00:00
|
|
|
|
2004-02-20 10:32:44 +00:00
|
|
|
/// Decide whether we need left or right quotation marks
|
2008-03-15 00:02:41 +00:00
|
|
|
void setSide(char_type c);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2016-12-18 09:29:35 +00:00
|
|
|
void parseString(std::string const &,
|
|
|
|
bool const allow_wildcards = false);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2008-03-15 00:02:41 +00:00
|
|
|
docstring displayString() const;
|
2015-02-09 22:24:13 +00:00
|
|
|
///
|
|
|
|
docstring getQuoteEntity() const;
|
2016-12-16 10:23:22 +00:00
|
|
|
///
|
2016-12-24 09:13:51 +00:00
|
|
|
InsetQuotesParams::QuoteStyle getStyle(std::string const &);
|
2008-03-15 00:02:41 +00:00
|
|
|
|
|
|
|
///
|
2016-12-24 09:13:51 +00:00
|
|
|
InsetQuotesParams::QuoteStyle style_;
|
2008-03-15 00:02:41 +00:00
|
|
|
///
|
2016-12-24 09:13:51 +00:00
|
|
|
InsetQuotesParams::QuoteSide side_;
|
2008-03-15 00:02:41 +00:00
|
|
|
///
|
2016-12-24 09:13:51 +00:00
|
|
|
InsetQuotesParams::QuoteLevel level_;
|
2016-12-07 14:37:03 +00:00
|
|
|
///
|
2016-12-25 11:19:02 +00:00
|
|
|
InsetQuotesParams::QuoteStyle global_style_;
|
2017-08-10 09:47:52 +00:00
|
|
|
/// Current font encoding
|
2016-12-07 14:37:03 +00:00
|
|
|
std::string fontenc_;
|
2016-12-10 10:53:42 +00:00
|
|
|
/// Code of the contextual language
|
|
|
|
std::string context_lang_;
|
|
|
|
/// Is this in a pass-thru context?
|
|
|
|
bool pass_thru_;
|
2016-12-26 13:41:14 +00:00
|
|
|
/// Do we use fontspec?
|
|
|
|
bool fontspec_;
|
2017-08-10 09:47:52 +00:00
|
|
|
/// Do we have an internal font encoding?
|
|
|
|
bool internal_fontenc_;
|
2018-07-15 10:11:10 +00:00
|
|
|
/// Are we writing RTL?
|
|
|
|
bool rtl_;
|
2016-12-24 09:13:51 +00:00
|
|
|
///
|
|
|
|
friend class InsetQuotesParams;
|
2016-12-17 11:58:33 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
/// \name Protected functions inherited from Inset class
|
|
|
|
//@{
|
|
|
|
///
|
|
|
|
void doDispatch(Cursor & cur, FuncRequest & cmd);
|
|
|
|
//@}
|
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
|