X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetFloatList.h;h=6f7844eb2658f65fdba1f499f2050877bce6ed2c;hb=bfddee97e191a853f0576f4fab3f095c4e9ce0de;hp=9afa316891c9becac684a0132d1bc102510548c5;hpb=ce8323e5d3d3c433919a816819f43704426456b8;p=lyx.git diff --git a/src/insets/InsetFloatList.h b/src/insets/InsetFloatList.h index 9afa316891..6f7844eb26 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 NOT_EDITABLE; } + InsetFloatList(Buffer *, std::string const & type); + + /// \name Public functions inherited from Inset class + //@{ /// InsetCode lyxCode() const { return FLOAT_LIST_CODE; } /// @@ -39,22 +38,40 @@ public: /// void read(Lexer &); /// - int latex(odocstream &, OutputParams const &) const; + void latex(otexstream &, OutputParams const &) const; /// int docbook(odocstream &, OutputParams const &) const { return 0; } /// 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_; };