From: Angus Leeming Date: Mon, 11 Feb 2002 13:03:28 +0000 (+0000) Subject: You'll need this as well. X-Git-Tag: 1.6.10~19876 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=c68ee64ef922c83a1d3d80b60ce1acdf150aaf7c;p=lyx.git You'll need this as well. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3519 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/insets/insetgraphics.h b/src/insets/insetgraphics.h index 16498ef72e..6e00518c45 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,6 +113,10 @@ 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; /// InsetGraphicsParams params; };