X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetQuotes.h;h=0e4f46cbacc56614012099b8f9050ffc807f838d;hb=c9d9309c1ecffa218dee04ce4f7991ed4fc0c9bb;hp=d13603e9bd647f86a8d9835808b3b5da54e1f315;hpb=1ef605f6254ef3f3b8cec5440a2e67e6f23a707b;p=lyx.git diff --git a/src/insets/InsetQuotes.h b/src/insets/InsetQuotes.h index d13603e9bd..0e4f46cbac 100644 --- a/src/insets/InsetQuotes.h +++ b/src/insets/InsetQuotes.h @@ -63,12 +63,10 @@ public: \end{itemize} */ explicit InsetQuotes(Buffer * buf, std::string const & str = "eld"); - /// Create the right quote inset after character c - InsetQuotes(Buffer * buffer, char_type c); /// Direct access to inner/outer quotation marks InsetQuotes(Buffer * buf, char_type c, QuoteTimes t); /// - docstring name() const; + docstring layoutName() const; /// void metrics(MetricsInfo &, Dimension &) const; /// @@ -78,9 +76,10 @@ public: /// void read(Lexer & lex); /// - int latex(otexstream &, OutputParams const &) const; + void latex(otexstream &, OutputParams const &) const; /// - int plaintext(odocstream &, OutputParams const &) const; + int plaintext(odocstringstream & ods, OutputParams const & op, + size_t max_length = INT_MAX) const; /// int docbook(odocstream &, OutputParams const &) const; /// @@ -89,7 +88,7 @@ public: /// void toString(odocstream &) const; /// - void forToc(docstring &, size_t maxlen) const; + void forOutliner(docstring &, size_t maxlen) const; /// void validate(LaTeXFeatures &) const; @@ -108,6 +107,8 @@ private: void parseString(std::string const &); /// docstring displayString() const; + /// + docstring getQuoteEntity() const; /// QuoteLanguage language_;