]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetQuotes.h
Improve keyval highlighter
[lyx.git] / src / insets / InsetQuotes.h
index 258fe1bd992b2f6fa5c65864eb0383befe0b291d..41bad175b8157c342829b302e17e038bfdd4baa6 100644 (file)
@@ -5,6 +5,7 @@
  * 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.
  */
 
 #include "Inset.h"
 
-#include "support/docstring.h"
+#include <map>
 
 
 namespace lyx {
 
+///
+enum class QuoteStyle : int {
+       ///
+       English,
+       ///
+       Swedish,
+       ///
+       German,
+       ///
+       Polish,
+       ///
+       Swiss,
+       ///
+       Danish,
+       ///
+       Plain,
+       ///
+       British,
+       ///
+       SwedishG,
+       ///
+       French,
+       ///
+       FrenchIN,
+       ///
+       Russian,
+       ///
+       CJK,
+       ///
+       CJKAngle,
+       ///
+       Hungarian,
+       ///
+       Dynamic
+};
+
+///
+enum class QuoteSide : int {
+       ///
+       Opening,
+       ///
+       Closing
+};
+
+///
+enum class QuoteLevel : int {
+       ///
+       Secondary,
+       ///
+       Primary
+};
+
+
+/** 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 getXMLQuote(char_type c) const;
+       /// Returns a descriptive label of a style suitable for dialog and menu
+       docstring const getGuiLabel(QuoteStyle const & qs,
+                                   bool langdef = false) const;
+       /// Returns a descriptive label of a given char
+       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,
+               QuoteStyle fallback = QuoteStyle::English) const;
+       /// Returns the quote sind from the shortcut string
+       QuoteSide getQuoteSide(std::string const & s,
+               bool const allow_wildcards = false,
+               QuoteSide fallback = QuoteSide::Opening) const;
+       /// Returns the quote level from the shortcut string
+       QuoteLevel getQuoteLevel(std::string const & s,
+               bool const allow_wildcards = false,
+               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:
-       ///
-       enum QuoteLanguage {
-               ///
-               EnglishQuotes,
-               ///
-               SwedishQuotes,
-               ///
-               GermanQuotes,
-               ///
-               PolishQuotes,
-               ///
-               FrenchQuotes,
-               ///
-               DanishQuotes
-       };
-       ///
-       enum QuoteSide {
-               ///
-               LeftQuote,
-               ///
-               RightQuote
-       };
-       ///
-       enum QuoteTimes {
-               ///
-               SingleQuotes,
-               ///
-               DoubleQuotes
-       };
-
        /** The constructor works like this:
          \begin{itemize}
            \item fls <- french single quote left
@@ -62,57 +127,100 @@ public:
            \item etc.
          \end{itemize}
          */
-       explicit InsetQuotes(Buffer const & buf, std::string const & str = "eld");
-       /// Create the right quote inset after character c
-       InsetQuotes(Buffer const & buffer, char_type c);
+       explicit InsetQuotes(Buffer * buf, std::string const & str = "eld");
        /// Direct access to inner/outer quotation marks
-       InsetQuotes(Buffer const & buf, char_type c, QuoteTimes t);
+       InsetQuotes(Buffer * buf, char_type c, QuoteLevel level,
+                   std::string const & side = std::string(),
+                   std::string const & style = std::string());
+       ///
+       docstring layoutName() const override;
        ///
-       docstring name() const;
+       void metrics(MetricsInfo &, Dimension &) const override;
        ///
-       void metrics(MetricsInfo &, Dimension &) const;
+       void draw(PainterInfo & pi, int x, int y) const override;
        ///
-       void draw(PainterInfo & pi, int x, int y) const;
+       void write(std::ostream &) const override;
        ///
-       void write(std::ostream &) const;
+       void read(Lexer & lex) override;
        ///
-       void read(Lexer & lex);
+       bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const override;
        ///
-       int latex(odocstream &, OutputParams const &) const;
+       void latex(otexstream &, OutputParams const &) const override;
        ///
-       int plaintext(odocstream &, OutputParams const &) const;
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const override;
        ///
-       int docbook(odocstream &, OutputParams const &) const;
+       void docbook(XMLStream &, OutputParams const &) const override;
        ///
-       void xhtml(odocstream &, OutputParams const &) const;
+       docstring xhtml(XMLStream &, OutputParams const &) const override;
 
-       /// the string that is passed to the TOC
-       void tocString(odocstream &) const;
+       ///
+       bool hasToString() const override { return true; }
+       ///
+       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;
+       void validate(LaTeXFeatures &) const override;
        ///
-       InsetCode lyxCode() const { return QUOTE_CODE; }
+       std::string contextMenuName() const override;
+       ///
+       InsetCode lyxCode() const override { return QUOTE_CODE; }
        /// should this inset be handled like a normal character
-       bool isChar() const { return true; }
+       bool isChar() const override { return true; }
+
+       /// Returns the current quote type
+       std::string getType() const;
+       ///
+       std::pair<int, int> isWords() const override;
 
 private:
        ///
-       Inset * clone() const { return new InsetQuotes(*this); }
+       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 &);
+       void parseString(std::string const &,
+                        bool const allow_wildcards = false);
        ///
        docstring displayString() const;
+       ///
+       docstring getQuoteXMLEntity() const;
+       ///
+       QuoteStyle getStyle(std::string const &);
 
        ///
-       QuoteLanguage language_;
+       QuoteStyle style_ = QuoteStyle::English;
+       ///
+       QuoteSide side_ = QuoteSide::Opening;
        ///
-       QuoteSide side_;
+       QuoteLevel level_ = QuoteLevel::Primary;
+       ///
+       QuoteStyle global_style_ = QuoteStyle::English;
+       /// Code of the contextual language
+       std::string context_lang_;
+       /// Is this in a pass-thru context?
+       bool pass_thru_ = false;
+       /// Do we use fontspec?
+       bool fontspec_ = false;
+       /// Do we have an internal font encoding?
+       bool internal_fontenc_ = false;
+       /// Are we writing RTL?
+       bool rtl_ = false;
+       ///
+       friend class InsetQuotesParams;
+
+protected:
+       /// \name Protected functions inherited from Inset class
+       //@{
        ///
-       QuoteTimes times_;
+       void doDispatch(Cursor & cur, FuncRequest & cmd) override;
+       //@}
 };
 
 } // namespace lyx