]> git.lyx.org Git - lyx.git/blobdiff - src/insets/Inset.h
Routines for calculating numerical labels for BibTeX citations.
[lyx.git] / src / insets / Inset.h
index e5a11df800bf43615031f11c0a3b1701f120aa76..ec69809bd8aef22e202d574664e2bf4df066f968 100644 (file)
@@ -37,6 +37,7 @@ class DocIterator;
 class FuncRequest;
 class FuncStatus;
 class InsetCollapsable;
+class InsetCommand;
 class InsetIterator;
 class InsetLayout;
 class InsetList;
@@ -53,6 +54,7 @@ class ParConstIterator;
 class ParIterator;
 class Text;
 class TocList;
+class XHTMLStream;
 
 namespace graphics { class PreviewLoader; }
 
@@ -110,7 +112,7 @@ public:
        /**
          * This is typically used after this inset is created interactively.
          * Intented purpose is to sanitize internal state with regard to current
-         * Buffer. The default implementation calls updateLabels(buffer()) is
+         * Buffer. The default implementation calls buffer().updateLabels() if
          * the inset is labeled.
          *
          * \sa isLabeled()
@@ -137,6 +139,10 @@ public:
        virtual InsetTabular * asInsetTabular() { return 0; }
        /// is this inset based on the InsetTabular class?
        virtual InsetTabular const * asInsetTabular() const { return 0; }
+       /// is this inset based on the InsetCommand class?
+       virtual InsetCommand * asInsetCommand() { return 0; }
+       /// is this inset based on the InsetCommand class?
+       virtual InsetCommand const * asInsetCommand() const { return 0; }
 
        /// the real dispatcher
        void dispatch(Cursor & cur, FuncRequest & cmd);
@@ -297,8 +303,12 @@ public:
        virtual int plaintext(odocstream &, OutputParams const &) const = 0;
        /// docbook output
        virtual int docbook(odocstream & os, OutputParams const &) const;
-       /// LyX HTML output
-       virtual docstring xhtml(odocstream & os, OutputParams const &) const;
+       /// XHTML output
+       /// the inset is expected to write XHTML to the XHTMLStream
+       /// \return any "deferred" material that should be written outside the
+       /// normal stream, and which will in fact be written after the current
+       /// paragraph closes. this is appropriate e.g. for floats.
+       virtual docstring xhtml(XHTMLStream & xs, OutputParams const &) const;
        /// the string that is passed to the TOC
        virtual void tocString(odocstream &) const {}
 
@@ -442,7 +452,8 @@ public:
         *  Most insets have no interest in this capability, so the method
         *  defaults to empty.
         */
-       virtual void addPreview(graphics::PreviewLoader &) const {}
+       virtual void addPreview(DocIterator const &,
+               graphics::PreviewLoader &) const {}
 
        /** Classifies the unicode characters appearing in a math inset
         *  depending on whether they are to be translated as latex
@@ -458,8 +469,10 @@ public:
        virtual void addToToc(DocIterator const &) {}
        /// Fill keys with BibTeX information
        virtual void fillWithBibKeys(BiblioInfo &, InsetIterator const &) const {}
-       /// Update the counters of this inset and of its contents
-       virtual void updateLabels(ParIterator const &) {}
+       /// Update the counters of this inset and of its contents.
+       /// The boolean indicates whether we are preparing for output, e.g.,
+       /// of XHTML.
+       virtual void updateLabels(ParIterator const &, bool) {}
 
        /// Updates the inset's dialog
        virtual Buffer const * updateFrontend() const;
@@ -489,16 +502,16 @@ public:
        /// set the change for the entire inset
        virtual void setChange(Change const &) {}
        /// accept the changes within the inset
-       virtual void acceptChanges() {};
+       virtual void acceptChanges() {}
        /// reject the changes within the inset
-       virtual void rejectChanges() {};
+       virtual void rejectChanges() {}
 
        ///
        virtual Dimension const dimension(BufferView const &) const;
        ///
        int scroll() const { return 0; }
        ///
-       virtual ColorCode backgroundColor() const;
+       virtual ColorCode backgroundColor(PainterInfo const &) const;
        ///
        virtual ColorCode labelColor() const;
        //
@@ -506,7 +519,7 @@ public:
 
 protected:
        /// Constructors
-       Inset() : buffer_(0) {}
+       Inset(Buffer * buf) : buffer_(buf) {}
        Inset(Inset const &) : buffer_(0) {}
 
        /// replicate ourselves