]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetExternal.h
Fix trailing whitespace in cpp files.
[lyx.git] / src / insets / InsetExternal.h
index 22c909b0e27b1d62afd176c3447124794c62ad5e..420550f924c0748a31a4bee5291856715cbcdd37 100644 (file)
 #define INSET_EXTERNAL_H
 
 #include "Inset.h"
+
 #include "ExternalTemplate.h"
-#include "ExternalTransforms.h"
 
 #include "support/FileName.h"
-#include "support/Translator.h"
+#include "support/unique_ptr.h"
+
 
-#include <boost/scoped_ptr.hpp>
-#include <boost/signals/trackable.hpp>
+namespace lyx {
 
+namespace external {
 
 /** No two InsetExternalParams variables can have the same temporary file.
  *  This class has copy-semantics but the copy constructor
  *  copy constructor and assignment operator for the
  *  InsetExternalParams class.
  */
-namespace lyx {
-
-namespace external {
-
 class TempName {
 public:
        TempName();
        TempName(TempName const &);
        ~TempName();
        TempName & operator=(TempName const &);
-       support::FileName const & operator()() const { return tempname_; }
+       support::FileName operator()() const;
 private:
        support::FileName tempname_;
 };
@@ -57,7 +54,7 @@ public:
        bool read(Buffer const &, Lexer &);
 
        /// The name of the tempfile used for manipulations.
-       support::FileName const & tempname() const { return tempname_(); }
+       support::FileName tempname() const { return tempname_(); }
 
        /// The template currently in use.
        void settemplate(std::string const &);
@@ -91,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 *);
        ///
@@ -110,10 +110,16 @@ public:
        /// Update not loaded previews
        void updatePreview();
        /// \returns the number of rows (\n's) of generated code.
-       int latex(odocstream &, OutputParams const &) const;
+       void latex(otexstream &, OutputParams const &) const;
        ///
-       docstring contextMenu(BufferView const & bv, int x, int y) const;
-
+       std::string contextMenuName() const;
+       ///
+       bool setMouseHover(BufferView const * bv, bool mouse_hover) const;
+       ///
+       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 &);
@@ -130,7 +136,8 @@ private:
        ///
        void read(Lexer & lex);
        ///
-       int plaintext(odocstream &, OutputParams const &) const;
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const;
        ///
        int docbook(odocstream &, OutputParams const &) const;
        /// For now, this does nothing. Someone who knows about this
@@ -160,7 +167,9 @@ private:
        /// The current params
        InsetExternalParams params_;
        /// The thing that actually draws the image on LyX's screen.
-       boost::scoped_ptr<RenderBase> renderer_;
+       unique_ptr<RenderBase> renderer_;
+       /// changes color of the button when mouse enters/leaves this inset
+       mutable std::map<BufferView const *, bool> mouse_hover_;
 };
 
 } // namespace lyx