]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetExternal.h
Properly fix handling of title layouts within insets (#11787)
[lyx.git] / src / insets / InsetExternal.h
index 20ccfededf32a0fcd368553450a9beb9f02b0ad9..b03e416de822f58fcba7cf8a9dc1203f0b5e34c8 100644 (file)
@@ -120,13 +120,20 @@ public:
        ///
        void addToToc(DocIterator const & di, bool output_active,
                                  UpdateType utype, TocBackend & backend) const;
-private:
-       ///
-       InsetExternal(InsetExternal const &);
        ///
        InsetCode lyxCode() const { return EXTERNAL_CODE; }
        ///
        bool hasSettings() const { return true; }
+
+       ///
+       int topOffset(BufferView const *) const { return 0; }
+       ///
+       int bottomOffset(BufferView const *) const { return 0; }
+       ///
+       int leftOffset(BufferView const *) const { return 0; }
+       ///
+       int rightOffset(BufferView const *) const { return 0; }
+
        ///
        void metrics(MetricsInfo &, Dimension &) const;
        ///
@@ -142,7 +149,7 @@ private:
        int docbook(odocstream &, OutputParams const &) const;
        /// For now, this does nothing. Someone who knows about this
        /// should see what needs doing for XHTML output.
-       docstring xhtml(XHTMLStream &, OutputParams const &) const;
+       docstring xhtml(XMLStream &, OutputParams const &) const;
        /// Update needed features for this inset.
        void validate(LaTeXFeatures & features) const;
        ///
@@ -159,6 +166,11 @@ private:
         *  and the preview should be regenerated.
         */
        void fileChanged() const;
+
+private:
+       ///
+       InsetExternal(InsetExternal const &);
+
        /// Is this inset using (instant or graphics) preview?
        bool isPreviewed() const;
        /// Do we have the right renderer (button, graphic or monitored preview)?