]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetOptArg.h
Routines for calculating numerical labels for BibTeX citations.
[lyx.git] / src / insets / InsetOptArg.h
index 0e8452f16c2d62271f23a54213e1ac8c58ff813e..2584049a61287e0351320d631f41a84586063b24 100644 (file)
@@ -23,37 +23,36 @@ namespace lyx {
  * InsetOptArg. Used to insert a short version of sectioning header etc.
  * automatically, or other optional LaTeX arguments
  */
-class InsetOptArg : public InsetCollapsable {
+class InsetOptArg : public InsetCollapsable
+{
 public:
-       InsetOptArg(BufferParams const &);
+       ///
+       InsetOptArg(Buffer *);
 
-       /// code of the inset
-       Inset::Code lyxCode() const { return Inset::OPTARG_CODE; }
-       /// return an message upon editing
-       virtual docstring const editMessage() const;
+       /// Outputting the optional parameter of a LaTeX command
+       int latexOptional(odocstream &, OutputParams const &) const;
+       ///
+       bool hasSettings() const { return false; }
 
+private:
+       /// code of the inset
+       InsetCode lyxCode() const { return OPTARG_CODE; }
+       ///
+       docstring name() const { return from_ascii("OptArg"); }
        /// Standard LaTeX output -- short-circuited
-       int latex(Buffer const &, odocstream &,
-                 OutputParams const &) const;
+       int latex(odocstream &, OutputParams const &) const;
        /// Standard plain text output -- short-circuited
-       int plaintext(Buffer const &, odocstream &,
-                     OutputParams const &) const;
+       int plaintext(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 &, odocstream &,
-                         OutputParams const &) const;
+       int docbook(odocstream &, OutputParams const &) const;
+       /// Standard XHTML output -- short-circuited
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
        /// Write out to the .lyx file
-       void write(Buffer const & buf, std::ostream & os) const;
-
+       void write(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 Inset * clone() const;
+       bool neverIndent() const { return true; }
+       ///
+       Inset * clone() const { return new InsetOptArg(*this); }
 };