X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Finsets%2FInsetGraphics.h;h=2947ade78c978f0272149a4727774c4bb36984c9;hb=59e6610d8ad4d5c5a81d9a6b4ef73ae36231489a;hp=a6e6ce33815ac60734a28b20f4405d1f316f0353;hpb=86994bf75320524ec656fd70950633c83d445a6c;p=lyx.git diff --git a/src/insets/InsetGraphics.h b/src/insets/InsetGraphics.h index a6e6ce3381..2947ade78c 100644 --- a/src/insets/InsetGraphics.h +++ b/src/insets/InsetGraphics.h @@ -53,7 +53,13 @@ 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; } + /// + InsetGraphics * asInsetGraphics() { return this; } + /// + InsetGraphics const * asInsetGraphics() const { return this; } private: /// @@ -86,6 +92,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; /// @@ -97,7 +105,8 @@ private: /// bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; /// - void addToToc(DocIterator const & di, bool output_active) const; + void addToToc(DocIterator const & di, bool output_active, + UpdateType utype, TocBackend & backend) const; /// std::string contextMenuName() const; /// Force inset into LTR environment if surroundings are RTL @@ -109,7 +118,7 @@ private: /// Get the status message, depends on the image loading status. std::string statusMessage() const; /// Create the options for the latex command. - std::string createLatexOptions() const; + std::string createLatexOptions(bool const ps) const; /// Create length values for docbook export. docstring toDocbookLength(Length const & len) const; /// Create the atributes for docbook export. @@ -150,7 +159,7 @@ namespace graphics { void unifyGraphicsGroups(Buffer &, std::string const &); InsetGraphics * getCurrentGraphicsInset(Cursor const &); -} +} // namespace graphics } // namespace lyx