X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetGraphics.h;h=28ea3372464862c851fb2d849fff9c8d8c0cfda4;hb=96dea61f22c04529e726cab36acf0240d41fa778;hp=5270f2bfa9f9497109e510de965719fafaa9cda7;hpb=ffe1d53cdb9db64916f15ccf7b2f38776942bf25;p=lyx.git diff --git a/src/insets/InsetGraphics.h b/src/insets/InsetGraphics.h index 5270f2bfa9..28ea337246 100644 --- a/src/insets/InsetGraphics.h +++ b/src/insets/InsetGraphics.h @@ -54,6 +54,8 @@ public: InsetGraphicsParams getParams() const { return params_;} /// bool clickable(BufferView const &, int, int) const { return true; } + /// + bool canPaintChange(BufferView const &) const { return true; }; private: /// @@ -100,19 +102,21 @@ private: bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const; /// void addToToc(DocIterator const & di, bool output_active, - UpdateType utype) const; + UpdateType utype, TocBackend & backend) const; /// std::string contextMenuName() const; /// Force inset into LTR environment if surroundings are RTL - bool forceLTR() const { return true; } + bool forceLTR(OutputParams const &) const { return true; } /// void doDispatch(Cursor & cur, FuncRequest & cmd); /// Inset * clone() const; /// Get the status message, depends on the image loading status. std::string statusMessage() const; + /// Get the output bounding box accounting for raster formats. + void outBoundingBox(graphics::BoundingBox &) 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. @@ -153,7 +157,7 @@ namespace graphics { void unifyGraphicsGroups(Buffer &, std::string const &); InsetGraphics * getCurrentGraphicsInset(Cursor const &); -} +} // namespace graphics } // namespace lyx