]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetInclude.h
Fix conflicting inset font defaults (bug #8874)
[lyx.git] / src / insets / InsetInclude.h
index b66a21b829ff578eec61ff8a02d1c7c4e557553b..3e283462690a54b62fc7f7c6f26c90dbf6dc3d82 100644 (file)
@@ -79,17 +79,20 @@ public:
        DisplayType display() const;
        ///
        InsetCode lyxCode() const { return INCLUDE_CODE; }
+       ///
+       docstring layoutName() const;
        /** Fills \c key
         *  \param keys the list of bibkeys in the child buffer.
         *  \param it not used here
         */
-       void fillWithBibKeys(BiblioInfo & keys, InsetIterator const & it) const;
+       void collectBibKeys(InsetIterator const &) const;
        ///
        bool hasSettings() const { return true; }
        ///
-       int latex(odocstream &, 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;
        ///
@@ -99,11 +102,11 @@ public:
        ///
        void addPreview(DocIterator const &, graphics::PreviewLoader &) const;
        ///
-       void addToToc(DocIterator const &);
+       void addToToc(DocIterator const & di, bool output_active) const;
        ///
        void updateBuffer(ParIterator const &, UpdateType);
        ///
-       docstring contextMenu(BufferView const & bv, int x, int y) const;
+       std::string contextMenuName() const;
        //@}
 
        /// \name Static public methods obligated for InsetCommand derived classes