]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetListings.h
New DocBook support
[lyx.git] / src / insets / InsetListings.h
index 6c90de0a38a20dbaa24a16978295101616b68efa..a74569c54464cefc26eeb03449bb26ce789cbcc8 100644 (file)
@@ -46,7 +46,7 @@ private:
        ///
        InsetCode lyxCode() const { return LISTINGS_CODE; }
        /// lstinline is inlined, normal listing is displayed
-       DisplayType display() const;
+       RowFlags rowFlags() const;
        ///
        docstring layoutName() const;
        ///
@@ -56,7 +56,9 @@ private:
        ///
        void latex(otexstream &, OutputParams const &) const;
        ///
-       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       docstring xhtml(XMLStream &, OutputParams const &) const;
+       ///
+       void docbook(XMLStream &, OutputParams const &) const;
        ///
        void validate(LaTeXFeatures &) const;
        ///
@@ -79,6 +81,8 @@ private:
        TexString getCaption(OutputParams const &) const;
        ///
        bool insetAllowed(InsetCode c) const { return c == CAPTION_CODE || c == QUOTE_CODE; }
+       ///
+       Encoding const * forcedEncoding(Encoding const *, Encoding const *) const;
 
        ///
        InsetListingsParams params_;