X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetgraphics.h;h=ac380bffc46564d9f8b3fb5dd26c4139161a7f67;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=16498ef72e9a3218ccd4839e7234907bf09e6523;hpb=f4c86428a35989edc21141c875b426b30477d596;p=lyx.git diff --git a/src/insets/insetgraphics.h b/src/insets/insetgraphics.h index 16498ef72e..ac380bffc4 100644 --- a/src/insets/insetgraphics.h +++ b/src/insets/insetgraphics.h @@ -30,6 +30,7 @@ #include "sigc++/signal_system.h" class Dialogs; +class LyXImage; /// class InsetGraphics : public Inset, public SigC::Object { @@ -112,8 +113,14 @@ private: string const createLatexOptions() const; /// Convert the file if needed, and return the location of the file. string const prepareFile(Buffer const * buf) const; - /// + /// The graphics cache handle. + mutable boost::shared_ptr cacheHandle; + /// is the pixmap initialized? + mutable bool imageLoaded; + /// the parameters InsetGraphicsParams params; + /// holds the entity name that defines the graphics location (SGML). + string const graphic_label; }; #endif