X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetArgument.h;h=3e200e3b1c173bc1dfbecd74b7b35fe8364f42d3;hb=3391fed36a574fb729f243888258d1b6d45b0251;hp=e3718b1b97491d035073c64d33be393ff8e4c914;hpb=b95c17cfdd469aac842304073a56e3fb64bfe629;p=features.git diff --git a/src/insets/InsetArgument.h b/src/insets/InsetArgument.h index e3718b1b97..3e200e3b1c 100644 --- a/src/insets/InsetArgument.h +++ b/src/insets/InsetArgument.h @@ -30,8 +30,9 @@ public: InsetArgument(Buffer *, std::string const &); /// Outputting the parameter of a LaTeX command - void latexArgument(otexstream &, OutputParams const &, - docstring const&, docstring const &) const; + void latexArgument(otexstream & os, OutputParams const & runparams_in, + docstring const & ldelim, docstring const & rdelim, + docstring const & presetarg) const; std::string name() const { return name_; } @@ -48,7 +49,7 @@ public: /// void latex(otexstream &, OutputParams const &) const { } /// - int plaintext(odocstream &, OutputParams const &) const { return 0; } + int plaintext(odocstringstream &, OutputParams const &, size_t) const { return 0; } /// int docbook(odocstream &, OutputParams const &) const { return 0; } /// @@ -60,12 +61,29 @@ public: void read(Lexer & lex); /// bool neverIndent() const { return true; } + /// + std::string contextMenuName() const; + /// + bool isPassThru() const { return pass_thru_; } + /// + bool resetFontEdit() const { return false; } //@} /// \name Public functions inherited from InsetCollapsable class //@{ /// + InsetLayout::InsetDecoration decoration() const; + /// + FontInfo getFont() const; + /// + FontInfo getLabelfont() const; + /// + ColorCode labelColor() const; + /// void setButtonLabel(); //@} + /// + void addToToc(DocIterator const & dit, bool output_active, + UpdateType utype, TocBackend & backend) const; //override private: /// @@ -76,12 +94,34 @@ private: docstring labelstring_; /// docstring tooltip_; + /// + FontInfo font_; + /// + FontInfo labelfont_; + /// + std::string decoration_; + /// Are we in a pass-thru context? + bool pass_thru_context_; + /// Is the argument itself have an explicitly pass-thru? + bool pass_thru_local_; + /// Effective pass-thru setting (inherited or local) + bool pass_thru_; + /// + docstring pass_thru_chars_; + /// The type of Toc this is the caption of, empty otherwise. + std::string caption_of_toc_; protected: /// \name Protected functions inherited from Inset class //@{ /// + bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; + /// + void doDispatch(Cursor & cur, FuncRequest & cmd); + /// Inset * clone() const { return new InsetArgument(*this); } + /// Is the content of this inset part of the immediate (visible) text sequence? + bool isPartOfTextSequence() const { return false; } //@} };