X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetGraphics.h;h=a2fef00a39d68e809a4d49ef117d14404a386710;hb=239b9919ffe28338d789e6dc9122228f77ab77a7;hp=1846c4a4e62ab655494cbef343951a608d24ae3e;hpb=222b3580d21a8ce2d8c499db4de885e9b8a94d88;p=lyx.git diff --git a/src/insets/InsetGraphics.h b/src/insets/InsetGraphics.h index 1846c4a4e6..a2fef00a39 100644 --- a/src/insets/InsetGraphics.h +++ b/src/insets/InsetGraphics.h @@ -53,7 +53,9 @@ public: InsetGraphicsParams getParams() const { return params_;} /// - bool clickable(int, int) const { return true; } + bool clickable(BufferView const &, int, int) const { return true; } + /// + bool canPaintChange(BufferView const &) const { return true; }; private: /// @@ -72,9 +74,10 @@ private: #fragile == true# means, that the inset should take care about fragile commands by adding a #\protect# before. */ - 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 &) const; /// @@ -85,6 +88,8 @@ private: void validate(LaTeXFeatures & features) const; /// returns LyX code associated with the inset. Used for TOC, ...) InsetCode lyxCode() const { return GRAPHICS_CODE; } + /// + docstring layoutName() const { return from_ascii("Graphics"); } /// Get the inset parameters, used by the GUIndependent dialog. InsetGraphicsParams const & params() const; /// @@ -96,9 +101,10 @@ private: /// bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; /// - void addToToc(DocIterator const &); + void addToToc(DocIterator const & di, bool output_active, + UpdateType utype) const; /// - docstring contextMenu(BufferView const & bv, int x, int y) const; + std::string contextMenuName() const; /// Force inset into LTR environment if surroundings are RTL bool forceLTR() const { return true; } /// @@ -126,6 +132,8 @@ private: InsetGraphicsParams params_; /// holds the entity name that defines the graphics location (SGML). docstring const graphic_label; + /// + docstring toolTip(BufferView const & bv, int x, int y) const; /// The thing that actually draws the image on LyX's screen. RenderGraphic * graphic_; };