]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetOptArg.h
Remove all BufferParam arguments in InsetXXX methods (since insets know about their...
[lyx.git] / src / insets / InsetOptArg.h
index 38e92d9f3d5e2e1f4609ad54350afae95bcf23ef..c5aa1115b6cfaf8174fb08054d9b644ecf5da291 100644 (file)
@@ -23,35 +23,38 @@ 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 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"); }
        /// return an message upon editing
        docstring editMessage() const;
-
        /// Standard LaTeX output -- short-circuited
        int latex(odocstream &, OutputParams const &) const;
        /// Standard plain text output -- short-circuited
        int plaintext(odocstream &, OutputParams const &) const;
        /// Standard DocBook output -- short-circuited
        int docbook(odocstream &, OutputParams const &) const;
-
-       /// Outputting the optional parameter of a LaTeX command
-       int latexOptional(odocstream &, OutputParams const &) const;
+       /// Standard XHTML output -- short-circuited
+       docstring xhtml(odocstream &, OutputParams const &) const;
        /// Write out to the .lyx file
        void write(std::ostream & os) const;
-
        /// should paragraph indendation be ommitted in any case?
        bool neverIndent() const { return true; }
-protected:
-       InsetOptArg(InsetOptArg const &);
-private:
-       Inset * clone() const;
+       ///
+       Inset * clone() const { return new InsetOptArg(*this); }
 };