]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetoptarg.h
* In the process of fixing the math background color bug, this commit transfer backgr...
[lyx.git] / src / insets / insetoptarg.h
index 9676c335f0300aceab28f6065292f6a5bf111b99..0c6e163a66a68ca2a272d712adde27b9c8722a44 100644 (file)
@@ -16,6 +16,9 @@
 #include "insetcollapsable.h"
 
 
+namespace lyx {
+
+
 /**
  * InsetOptArg. Used to insert a short version of sectioning header etc.
  * automatically, or other optional LaTeX arguments
@@ -27,31 +30,35 @@ public:
        /// code of the inset
        InsetBase::Code lyxCode() const { return InsetBase::OPTARG_CODE; }
        /// return an message upon editing
-       virtual lyx::docstring const editMessage() const;
+       virtual docstring const editMessage() const;
+       ///
+       virtual bool wide() const { return false; }
 
        /// Standard LaTeX output -- short-circuited
-       int latex(Buffer const &, std::ostream &,
-                 OutputParams const &) const;
-       /// Standard DocBook output -- short-circuited
-       int docbook(Buffer const &, std::ostream &,
-                 OutputParams const &) const;
-
+       int latex(Buffer const &, odocstream &,
+                 OutputParams const &) const;
        /// Standard plain text output -- short-circuited
-       int plaintext(Buffer const &, std::ostream &,
-                 OutputParams const &) const;
+       int plaintext(Buffer const &, odocstream &,
+                     OutputParams const &) const;
+       /// Standard DocBook output -- short-circuited
+       int docbook(Buffer const &, odocstream &,
+                   OutputParams const &) const;
 
        /// Outputting the optional parameter of a LaTeX command
-       int latexOptional(Buffer const &, std::ostream &,
+       int latexOptional(Buffer const &, odocstream &,
                          OutputParams const &) const;
-       /// Write out tothe .lyx file
+       /// Write out to the .lyx file
        void write(Buffer const & buf, std::ostream & os) const;
 
        /// should paragraph indendation be ommitted in any case?
-       virtual bool neverIndent() const { return true; }
+       virtual bool neverIndent(Buffer const &) const { return true; }
 protected:
        InsetOptArg(InsetOptArg const &);
 private:
        virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
+
+} // namespace lyx
+
 #endif // INSETOPTARG_H