]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetoptarg.h
changelogs
[lyx.git] / src / insets / insetoptarg.h
index 8fea596408d01a707c36f35d009178acee399fe9..2dc95bc4710812fd0f3bbc20a6b7d2c62ee7402f 100644 (file)
@@ -6,14 +6,13 @@
  *
  * \author Martin Vermeer
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSETOPTARG_H
 #define INSETOPTARG_H
 
 
-#include "insettext.h"
 #include "insetcollapsable.h"
 
 
@@ -25,26 +24,23 @@ class InsetOptArg : public InsetCollapsable {
 public:
        InsetOptArg(BufferParams const &);
 
-       InsetOptArg(InsetOptArg const &, bool same_id = false);
-
-       /// make a duplicate of this inset
-       Inset * clone(Buffer const &, bool same_id = false) const;
-
-       /// this inset is editable
-       EDITABLE editable() const { return IS_EDITABLE; }
        /// code of the inset
-       Inset::Code lyxCode() const { return Inset::OPTARG_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::OPTARG_CODE; }
        /// return an message upon editing
-       string const editMessage() const;
+       std::string const editMessage() const;
 
        /// Standard LaTeX output -- short-circuited
-       int latex(Buffer const *, std::ostream &,
-                                       bool fragile, bool fp) const;
+       int latex(Buffer const &, std::ostream &,
+                 OutputParams const &) const;
        /// Outputting the optional parameter of a LaTeX command
-       int latexOptional(Buffer const *, std::ostream &,
-                                       bool fragile, bool fp) const;
+       int latexOptional(Buffer const &, std::ostream &,
+                         OutputParams const &) const;
        /// Write out tothe .lyx file
-       void write(Buffer const * buf, std::ostream & os) const;
+       void write(Buffer const & buf, std::ostream & os) const;
+protected:
+       InsetOptArg(InsetOptArg const &);
+private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
 #endif // INSETOPTARG_H