// -*- C++ -*- /** * \file insetwrap.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Dekel Tsur * * Full author contact details are available in file CREDITS. */ #ifndef INSETWRAP_H #define INSETWRAP_H #include "insetcollapsable.h" #include "toc.h" #include "lyxlength.h" class InsetWrapParams { public: /// void write(std::ostream &) const; /// void read(LyXLex &); /// std::string type; /// std::string placement; /// LyXLength width; }; /** The wrap inset */ class InsetWrap : public InsetCollapsable { public: /// InsetWrap(BufferParams const &, std::string const &); /// ~InsetWrap(); /// void write(Buffer const & buf, std::ostream & os) const; /// void read(Buffer const & buf, LyXLex & lex); /// void validate(LaTeXFeatures & features) const; /// InsetBase::Code lyxCode() const { return InsetBase::WRAP_CODE; } /// int latex(Buffer const &, std::ostream &, OutputParams const &) const; /// int docbook(Buffer const &, std::ostream &, OutputParams const &) const; /// std::string const editMessage() const; /// bool insetAllowed(InsetBase::Code) const; /// void addToToc(lyx::toc::TocList &, Buffer const &) const; /// bool showInsetDialog(BufferView *) const; /// InsetWrapParams const & params() const { return params_; } protected: /// virtual void doDispatch(LCursor & cur, FuncRequest & cmd); private: virtual std::auto_ptr doClone() const; /// InsetWrapParams params_; }; #include "mailinset.h" class InsetWrapMailer : public MailInset { public: /// InsetWrapMailer(InsetWrap & inset); /// virtual InsetBase & inset() const { return inset_; } /// virtual std::string const & name() const { return name_; } /// virtual std::string const inset2string(Buffer const &) const; /// static void string2params(std::string const &, InsetWrapParams &); /// static std::string const params2string(InsetWrapParams const &); private: /// static std::string const name_; /// InsetWrap & inset_; }; #endif