X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetExternal.h;h=75b7f70ffa5f9d2690047422fec1145288552c13;hb=88e5e5fd345c280b0927ad84785657cbc9e55f77;hp=a6167b5dd901d46c19b4611014112736313ac96c;hpb=f09a9fe2e60e4aeaca23b42b2bf30f5d64cfd9b1;p=lyx.git diff --git a/src/insets/InsetExternal.h b/src/insets/InsetExternal.h index a6167b5dd9..75b7f70ffa 100644 --- a/src/insets/InsetExternal.h +++ b/src/insets/InsetExternal.h @@ -17,10 +17,12 @@ #include "ExternalTemplate.h" #include "support/FileName.h" +#include "support/unique_ptr.h" -#include -#include +namespace lyx { + +namespace external { /** No two InsetExternalParams variables can have the same temporary file. * This class has copy-semantics but the copy constructor @@ -29,14 +31,6 @@ * copy constructor and assignment operator for the * InsetExternalParams class. */ -namespace lyx { - -namespace support { -class TempFile; -} - -namespace external { - class TempName { public: TempName(); @@ -45,7 +39,7 @@ public: TempName & operator=(TempName const &); support::FileName operator()() const; private: - support::TempFile * tempfile_; + support::FileName tempname_; }; } // namespace external @@ -94,8 +88,11 @@ private: class RenderBase; /// -class InsetExternal : public Inset, public boost::signals::trackable +class InsetExternal : public Inset { + // Disable assignment operator, since it is not used, and it is too + // complicated to implement it consistently with the copy constructor + InsetExternal & operator=(InsetExternal const &); public: InsetExternal(Buffer *); /// @@ -111,7 +108,7 @@ public: /// void setParams(InsetExternalParams const &); /// Update not loaded previews - void updatePreview(); + void updatePreview() const; /// \returns the number of rows (\n's) of generated code. void latex(otexstream &, OutputParams const &) const; /// @@ -119,7 +116,10 @@ public: /// bool setMouseHover(BufferView const * bv, bool mouse_hover) const; /// - bool clickable(int, int) const { return true; } + bool clickable(BufferView const &, int, int) const { return true; } + /// + void addToToc(DocIterator const & di, bool output_active, + UpdateType utype, TocBackend & backend) const; private: /// InsetExternal(InsetExternal const &); @@ -163,11 +163,15 @@ private: * and the preview should be regenerated. */ void fileChanged() const; + /// Is this inset using (instant or graphics) preview? + bool isPreviewed() const; + /// Do we have the right renderer (button, graphic or monitored preview)? + bool isRendererValid() const; /// The current params InsetExternalParams params_; /// The thing that actually draws the image on LyX's screen. - boost::scoped_ptr renderer_; + mutable unique_ptr renderer_; /// changes color of the button when mouse enters/leaves this inset mutable std::map mouse_hover_; };