X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetfloat.h;h=7992d44d6cdd7d370d08884672e8e38d3ffd5551;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=3485672a7db5cff75a6da1af9126d0813dca7a83;hpb=2e57f2ff0ae7cd4a6efbf634ffe6d2f4379d9cfc;p=lyx.git diff --git a/src/insets/insetfloat.h b/src/insets/insetfloat.h index 3485672a7d..7992d44d6c 100644 --- a/src/insets/insetfloat.h +++ b/src/insets/insetfloat.h @@ -7,29 +7,35 @@ * \author Jürgen Vigna * \author Lars Gullik Bjønnes * - * Full author contact details are available in file CREDITS + * Full author contact details are available in file CREDITS. */ #ifndef INSETFLOAT_H #define INSETFLOAT_H #include "insetcollapsable.h" -#include "toc.h" +#include "mailinset.h" + + +namespace lyx { -struct InsetFloatParams { +class InsetFloatParams { +public: /// - InsetFloatParams() : wide(false) {} + InsetFloatParams() : wide(false), sideways(false) {} /// void write(std::ostream & os) const; /// void read(LyXLex & lex); /// - string type; + std::string type; /// - string placement; + std::string placement; /// bool wide; + /// + bool sideways; }; @@ -39,32 +45,27 @@ struct InsetFloatParams { class InsetFloat : public InsetCollapsable { public: /// - InsetFloat(BufferParams const &, string const &); - /// - InsetFloat(InsetFloat const &); + InsetFloat(BufferParams const &, std::string const &); /// ~InsetFloat(); /// - virtual dispatch_result localDispatch(FuncRequest const & cmd); - /// - void write(Buffer const * buf, std::ostream & os) const; + void write(Buffer const & buf, std::ostream & os) const; /// - void read(Buffer const * buf, LyXLex & lex); + void read(Buffer const & buf, LyXLex & lex); /// void validate(LaTeXFeatures & features) const; /// - virtual std::auto_ptr clone() const; + InsetBase::Code lyxCode() const { return InsetBase::FLOAT_CODE; } /// - InsetOld::Code lyxCode() const { return InsetOld::FLOAT_CODE; } + int latex(Buffer const &, odocstream &, + OutputParams const &) const; /// - int latex(Buffer const *, std::ostream &, - LatexRunParams const &) const; + int docbook(Buffer const &, odocstream &, + OutputParams const &) const; /// - int docbook(Buffer const *, std::ostream &, bool mixcont) const; + virtual docstring const editMessage() const; /// - string const editMessage() const; - /// - bool insetAllowed(InsetOld::Code) const; + bool insetAllowed(InsetBase::Code) const; /** returns true if, when outputing LaTeX, font changes should be closed before generating this inset. This is needed for insets that may contain several paragraphs */ @@ -72,21 +73,25 @@ public: /// void wide(bool w, BufferParams const &); /// - void addToToc(toc::TocList &, Buffer const *) const; + void sideways(bool s, BufferParams const &); + /// + void addToToc(TocList &, Buffer const &) const; /// bool showInsetDialog(BufferView *) const; /// InsetFloatParams const & params() const { return params_; } - + /// + bool getStatus(LCursor &, FuncRequest const &, FuncStatus &) const; +protected: + virtual void doDispatch(LCursor & cur, FuncRequest & cmd); private: + virtual std::auto_ptr doClone() const; + /// InsetFloatParams params_; }; -#include "mailinset.h" - - class InsetFloatMailer : public MailInset { public: /// @@ -94,18 +99,21 @@ public: /// virtual InsetBase & inset() const { return inset_; } /// - virtual string const & name() const { return name_; } + virtual std::string const & name() const { return name_; } /// - virtual string const inset2string(Buffer const &) const; + virtual std::string const inset2string(Buffer const &) const; /// - static void string2params(string const &, InsetFloatParams &); + static void string2params(std::string const &, InsetFloatParams &); /// - static string const params2string(InsetFloatParams const &); + static std::string const params2string(InsetFloatParams const &); private: /// - static string const name_; + static std::string const name_; /// InsetFloat & inset_; }; + +} // namespace lyx + #endif