]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetExternal.h
Added inset-select-all to emacs bindings
[lyx.git] / src / insets / InsetExternal.h
index 2e28c6115a974eb9f8b29eb4a20741005e686e5c..a6167b5dd901d46c19b4611014112736313ac96c 100644 (file)
  */
 namespace lyx {
 
+namespace support {
+class TempFile;
+}
+
 namespace external {
 
 class TempName {
@@ -39,9 +43,9 @@ public:
        TempName(TempName const &);
        ~TempName();
        TempName & operator=(TempName const &);
-       support::FileName const & operator()() const { return tempname_; }
+       support::FileName operator()() const;
 private:
-       support::FileName tempname_;
+       support::TempFile * tempfile_;
 };
 
 } // namespace external
@@ -56,7 +60,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 &);
@@ -109,11 +113,11 @@ public:
        /// Update not loaded previews
        void updatePreview();
        /// \returns the number of rows (\n's) of generated code.
-       int latex(otexstream &, OutputParams const &) const;
+       void latex(otexstream &, OutputParams const &) const;
        ///
-       docstring contextMenuName() const;
+       std::string contextMenuName() const;
        ///
-       bool setMouseHover(BufferView const * bv, bool mouse_hover);
+       bool setMouseHover(BufferView const * bv, bool mouse_hover) const;
        ///
        bool clickable(int, int) const { return true; }
 private:
@@ -132,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