X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Finsets%2FInsetFloatList.h;h=9c8d0f34125f2ae3e9b5c0ef4f5da46163080c3c;hb=12c7e7dde3851ad894380fd42ba741dd3d0cbcc7;hp=06004634f2edcee802f1b0134be446a8d3c020cb;hpb=f1cba8ff64b369792fd49f5ddf90e8126ab476ac;p=lyx.git diff --git a/src/insets/InsetFloatList.h b/src/insets/InsetFloatList.h index 06004634f2..9c8d0f3412 100644 --- a/src/insets/InsetFloatList.h +++ b/src/insets/InsetFloatList.h @@ -23,13 +23,12 @@ namespace lyx { class InsetFloatList : public InsetCommand { public: /// - InsetFloatList(); + InsetFloatList(Buffer *); /// - InsetFloatList(std::string const & type); - /// - docstring screenLabel() const; - /// - EDITABLE editable() const { return IS_EDITABLE; } + InsetFloatList(Buffer *, std::string const & type); + + /// \name Public functions inherited from Inset class + //@{ /// InsetCode lyxCode() const { return FLOAT_LIST_CODE; } /// @@ -45,16 +44,34 @@ public: /// int plaintext(odocstream &, OutputParams const & runparams) const; /// + docstring xhtml(XHTMLStream &, OutputParams const &) const; + /// void validate(LaTeXFeatures & features) const; + //@} + + /// \name Static public methods obligated for InsetCommand derived classes + //@{ /// static ParamInfo const & findInfo(std::string const &); /// - static std::string defaultCommand() { return "listoftables"; }; + static std::string defaultCommand() { return "listoftables"; } /// static bool isCompatibleCommand(std::string const & s); + //@} + private: + /// \name Private functions inherited from Inset class + //@{ /// Inset * clone() const { return new InsetFloatList(*this); } + //@} + + /// \name Private functions inherited from InsetCommand class + //@{ + /// + docstring screenLabel() const; + //@} + /// static ParamInfo param_info_; };