lyx_mirror/src/insets/InsetQuotes.h

229 lines
5.3 KiB
C
Raw Normal View History

// -*- C++ -*-
/**
* \file InsetQuotes.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Jean-Marc Lasgouttes
* \author Jürgen Spitzmüller
*
* Full author contact details are available in file CREDITS.
*/
#ifndef INSET_QUOTES_H
#define INSET_QUOTES_H
#include "Inset.h"
2020-12-02 20:34:28 +00:00
#include <map>
namespace lyx {
2020-11-30 20:34:16 +00:00
///
enum class QuoteStyle : int {
///
2020-11-30 22:00:40 +00:00
English,
2020-11-30 20:34:16 +00:00
///
2020-11-30 22:00:40 +00:00
Swedish,
2020-11-30 20:34:16 +00:00
///
2020-11-30 22:00:40 +00:00
German,
2020-11-30 20:34:16 +00:00
///
2020-11-30 22:00:40 +00:00
Polish,
2020-11-30 20:34:16 +00:00
///
2020-11-30 22:00:40 +00:00
Swiss,
2020-11-30 20:34:16 +00:00
///
2020-11-30 22:00:40 +00:00
Danish,
2020-11-30 20:34:16 +00:00
///
2020-11-30 22:00:40 +00:00
Plain,
2020-11-30 20:34:16 +00:00
///
2020-11-30 22:00:40 +00:00
British,
2020-11-30 20:34:16 +00:00
///
2020-11-30 22:00:40 +00:00
SwedishG,
2020-11-30 20:34:16 +00:00
///
2020-11-30 22:00:40 +00:00
French,
2020-11-30 20:34:16 +00:00
///
2020-11-30 22:00:40 +00:00
FrenchIN,
2020-11-30 20:34:16 +00:00
///
2020-11-30 22:00:40 +00:00
Russian,
2020-11-30 20:34:16 +00:00
///
2020-11-30 22:00:40 +00:00
CJK,
2020-11-30 20:34:16 +00:00
///
2020-11-30 22:00:40 +00:00
CJKAngle,
2020-11-30 20:34:16 +00:00
///
Hungarian,
///
2020-11-30 22:00:40 +00:00
Dynamic
2020-11-30 20:34:16 +00:00
};
///
enum class QuoteSide : int {
///
2020-11-30 22:00:40 +00:00
Opening,
2020-11-30 20:34:16 +00:00
///
2020-11-30 22:00:40 +00:00
Closing
2020-11-30 20:34:16 +00:00
};
///
enum class QuoteLevel : int {
///
2020-11-30 22:00:40 +00:00
Secondary,
2020-11-30 20:34:16 +00:00
///
2020-11-30 22:00:40 +00:00
Primary
2020-11-30 20:34:16 +00:00
};
/** Quotes.
Used for the various quotes. German, English, French, all either
double or single **/
class InsetQuotesParams {
public:
/// Returns the unicode character of a given quote
char_type getQuoteChar(QuoteStyle const &, QuoteLevel const &,
QuoteSide const &, bool const rtl = false) const;
/// Returns a map of quotation marks
std::map<std::string, docstring> getTypes() const;
///
docstring getLaTeXQuote(char_type c, std::string const &,
bool const rtl = false) const;
///
docstring getHTMLQuote(char_type c) const;
///
docstring getXMLQuote(char_type c) const;
/// Returns a descriptive label of a style suitable for dialog and menu
docstring const getGuiLabel(QuoteStyle const & qs,
2020-11-01 10:57:14 +00:00
bool langdef = false) const;
/// Returns a descriptive label of a given char
2020-11-01 10:57:14 +00:00
docstring const getShortGuiLabel(docstring const & str) const;
///
int stylescount() const;
/// 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,
2020-11-30 22:00:40 +00:00
QuoteStyle fallback = QuoteStyle::English) const;
/// Returns the quote sind from the shortcut string
QuoteSide getQuoteSide(std::string const & s,
bool const allow_wildcards = false,
2020-11-30 22:00:40 +00:00
QuoteSide fallback = QuoteSide::Opening) const;
/// Returns the quote level from the shortcut string
QuoteLevel getQuoteLevel(std::string const & s,
bool const allow_wildcards = false,
2020-11-30 22:00:40 +00:00
QuoteLevel fallback = QuoteLevel::Primary) const;
};
///
extern InsetQuotesParams quoteparams;
/** Quotes.
Used for the various quotes. German, English, French, all either
double or single **/
class InsetQuotes : public Inset
{
public:
/** 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(Buffer * buf, std::string const & str = "eld");
/// Direct access to inner/outer quotation marks
2020-11-30 20:34:16 +00:00
InsetQuotes(Buffer * buf, char_type c, QuoteLevel level,
std::string const & side = std::string(),
std::string const & style = std::string());
///
docstring layoutName() const override;
///
void metrics(MetricsInfo &, Dimension &) const override;
///
void draw(PainterInfo & pi, int x, int y) const override;
///
void write(std::ostream &) const override;
///
void read(Lexer & lex) override;
///
bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const override;
///
void latex(otexstream &, OutputParams const &) const override;
///
int plaintext(odocstringstream & ods, OutputParams const & op,
size_t max_length = INT_MAX) const override;
///
void docbook(XMLStream &, OutputParams const &) const override;
///
docstring xhtml(XMLStream &, OutputParams const &) const override;
2017-07-03 17:45:58 +00:00
///
void toString(odocstream &) const override;
///
void forOutliner(docstring &, size_t const maxlen, bool const) const override;
/// Update the contextual information of this inset
void updateBuffer(ParIterator const &, UpdateType, bool const deleted = false) override;
///
void validate(LaTeXFeatures &) const override;
///
std::string contextMenuName() const override;
///
InsetCode lyxCode() const override { return QUOTE_CODE; }
/// should this inset be handled like a normal character
bool isChar() const override { return true; }
/// Returns the current quote type
std::string getType() const;
private:
///
Inset * clone() const override { return new InsetQuotes(*this); }
/// Decide whether we need left or right quotation marks
void setSide(char_type c);
///
void parseString(std::string const &,
bool const allow_wildcards = false);
///
docstring displayString() const;
///
docstring getQuoteEntity(bool isHTML) const;
///
2020-11-30 20:34:16 +00:00
QuoteStyle getStyle(std::string const &);
///
2020-11-30 22:00:40 +00:00
QuoteStyle style_ = QuoteStyle::English;
///
2020-11-30 22:00:40 +00:00
QuoteSide side_ = QuoteSide::Opening;
///
2020-11-30 22:00:40 +00:00
QuoteLevel level_ = QuoteLevel::Primary;
///
2020-11-30 22:00:40 +00:00
QuoteStyle global_style_ = QuoteStyle::English;
/// Current font encoding
std::string fontenc_;
/// Code of the contextual language
std::string context_lang_;
/// Is this in a pass-thru context?
2020-11-24 20:42:06 +00:00
bool pass_thru_ = false;
2016-12-26 13:41:14 +00:00
/// Do we use fontspec?
2020-11-24 20:42:06 +00:00
bool fontspec_ = false;
/// Do we have an internal font encoding?
2020-11-24 20:42:06 +00:00
bool internal_fontenc_ = false;
/// Are we writing RTL?
2020-11-24 20:42:06 +00:00
bool rtl_ = false;
///
friend class InsetQuotesParams;
protected:
/// \name Protected functions inherited from Inset class
//@{
///
void doDispatch(Cursor & cur, FuncRequest & cmd) override;
//@}
};
} // namespace lyx
#endif