]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetText.h
Routines for calculating numerical labels for BibTeX citations.
[lyx.git] / src / insets / InsetText.h
index fb1fb0a6ba9e7a1d91abe9dacee8c885bb4bdbad..43ef3f717dd26cba86a7b23c247bbf57a7966263 100644 (file)
@@ -91,9 +91,6 @@ public:
        ///
        docstring insetAsXHTML(XHTMLStream &, OutputParams const &, 
                               XHTMLOptions) const;
-       // FIXME XHTMLStream to be removed
-       docstring xhtml(odocstream &, OutputParams const &) const 
-               { return docstring (); }
        ///
        void validate(LaTeXFeatures & features) const;
 
@@ -167,7 +164,7 @@ public:
                { return getLayout().allowParagraphCustomization(); }
 
        /// Update the counters of this inset and of its contents
-       virtual void updateLabels(ParIterator const &);
+       virtual void updateLabels(ParIterator const &, bool);
        /// the string that is passed to the TOC
        void tocString(odocstream &) const;
        ///
@@ -208,10 +205,6 @@ protected:
        ///
        docstring getCaptionHTML(OutputParams const &) const;
 private:
-       ///
-       void initParagraphs(UsePlain type);
-       ///
-       void setParagraphOwner();
        ///
        bool drawFrame_;
        ///
@@ -222,6 +215,9 @@ private:
        mutable Text text_;
 };
 
+
+InsetText::XHTMLOptions operator|(InsetText::XHTMLOptions a1, InsetText::XHTMLOptions a2);
+
 } // namespace lyx
 
 #endif