X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetCommand.h;h=131beff900d6261084676ce68c95e96531af5c49;hb=6da7ee1be170629aa6647aa8b2d6cf66ea928a9b;hp=5c9a9d6190b9bd704cf232fa1492365b2a8d8dad;hpb=c4faeb75db7c2b04ed4a9bd3918c4cd2cbd55f29;p=lyx.git diff --git a/src/insets/InsetCommand.h b/src/insets/InsetCommand.h index 5c9a9d6190..131beff900 100644 --- a/src/insets/InsetCommand.h +++ b/src/insets/InsetCommand.h @@ -16,11 +16,11 @@ #include "Inset.h" #include "InsetCommandParams.h" #include "RenderButton.h" -#include "Cursor.h" namespace lyx { +class Cursor; ///////////////////////////////////////////////////////////////////////// // @@ -35,8 +35,7 @@ class InsetCommand : public Inset { public: /// - InsetCommand(Buffer *, InsetCommandParams const &, - std::string const & mailer_name); + InsetCommand(Buffer *, InsetCommandParams const &); /// InsetCommand(InsetCommand const & rhs); /// @@ -46,14 +45,11 @@ public: /// InsetCommand const * asInsetCommand() const { return this; } - /// \return true if params are successfully read - static bool string2params(std::string const & name, - std::string const & data, + static bool string2params(std::string const & data, InsetCommandParams &); /// - static std::string params2string(std::string const & name, - InsetCommandParams const &); + static std::string params2string(InsetCommandParams const &); /// InsetCommandParams const & params() const { return p_; } /// @@ -80,17 +76,23 @@ public: /// void draw(PainterInfo & pi, int x, int y) const; /// - int latex(odocstream &, OutputParams const &) const; + void latex(otexstream &, OutputParams const &) const; /// - int plaintext(odocstream &, OutputParams const &) const; + int plaintext(odocstringstream & ods, OutputParams const & op, + size_t max_length = INT_MAX) const; /// int docbook(odocstream &, OutputParams const & runparams) const; /// bool setMouseHover(BufferView const * bv, bool mouse_hover) const; /// bool clickable(int, int) const { return hasSettings(); } + //@} + +protected: + /// \name Methods relaying to the InsetCommandParams p_ + //@{ /// - docstring contextMenu(BufferView const & bv, int x, int y) const; + std::string contextMenuName() const; /// bool showInsetDialog(BufferView * bv) const; /// @@ -136,8 +138,6 @@ private: /// InsetCommandParams p_; - /// - std::string mailer_name_; /// changes color when mouse enters/leaves this inset mutable std::map mouse_hover_; ///