]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetArgument.h
Check path of Qt tools if qtchooser is detected
[lyx.git] / src / insets / InsetArgument.h
index bff6056934e8ad2d1e23c217539ae0043cb4f5eb..d5cae98cb05ddac36c78f627434e875313431c76 100644 (file)
@@ -31,7 +31,8 @@ public:
 
        /// Outputting the parameter of a LaTeX command
        void latexArgument(otexstream &, OutputParams const &,
-                       docstring const&, docstring const &) const;
+                          docstring const&, docstring const &,
+                          docstring const &) const;
 
        std::string name() const { return name_; }
 
@@ -48,7 +49,7 @@ public:
        ///
        void latex(otexstream &, OutputParams const &) const { }
        ///
-       int plaintext(odocstream &, OutputParams const &) const { return 0; }
+       int plaintext(odocstringstream &, OutputParams const &, size_t) const { return 0; }
        ///
        int docbook(odocstream &, OutputParams const &) const { return 0; }
        ///
@@ -62,6 +63,10 @@ public:
        bool neverIndent() const { return true; }
        ///
        std::string contextMenuName() const;
+       ///
+       bool isPassThru() const { return pass_thru_; }
+       ///
+       bool resetFontEdit() const { return false; }
        //@}
        /// \name Public functions inherited from InsetCollapsable class
        //@{
@@ -90,6 +95,10 @@ private:
        FontInfo labelfont_;
        ///
        std::string decoration_;
+       ///
+       bool pass_thru_;
+       ///
+       docstring pass_thru_chars_;
 
 protected:
        /// \name Protected functions inherited from Inset class