]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetoptarg.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetoptarg.h
index 0b2deee38b8adde7f5615562214530b4d80bca3e..6e4546c3a278d7a07f8d217b14a80617b0b24422 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
@@ -24,22 +27,37 @@ class InsetOptArg : public InsetCollapsable {
 public:
        InsetOptArg(BufferParams const &);
 
-       InsetOptArg(InsetOptArg const &);
-       /// make a duplicate of this inset
-       virtual std::auto_ptr<InsetBase> clone() const;
        /// code of the inset
-       InsetOld::Code lyxCode() const { return InsetOld::OPTARG_CODE; }
+       InsetBase::Code lyxCode() const { return InsetBase::OPTARG_CODE; }
        /// return an message upon editing
-       std::string const editMessage() const;
+       virtual docstring const editMessage() const;
 
        /// Standard LaTeX output -- short-circuited
-       int latex(Buffer const &, std::ostream &,
+       int latex(Buffer const &, odocstream &,
+                 OutputParams const &) const;
+       /// Standard DocBook output -- short-circuited
+       int docbook(Buffer const &, odocstream &,
+                 OutputParams const &) const;
+
+       /// Standard plain text output -- short-circuited
+       int plaintext(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(Buffer const &) const { return true; }
+protected:
+       InsetOptArg(InsetOptArg const &);
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
+
+} // namespace lyx
+
 #endif // INSETOPTARG_H