]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetinclude.h
Enable convertDefault.sh to run even if its executable bit is not set.
[lyx.git] / src / insets / insetinclude.h
index 5b117d450b168700a660f75d1ee3e2d41f821a6a..4e90013fddb0424aeebdfa50652a605b341a1796 100644 (file)
@@ -6,7 +6,7 @@
  *
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSET_INCLUDE_H
@@ -86,25 +86,22 @@ public:
        {
                return IS_EDITABLE;
        }
-       /// With lyx3 we won't overload these 3 methods
-       void write(Buffer const *, std::ostream &) const;
        ///
-       void read(Buffer const *, LyXLex &);
+       void write(Buffer const &, std::ostream &) const;
        ///
-       int latex(Buffer const *, std::ostream &,
+       void read(Buffer const &, LyXLex &);
+       ///
+       int latex(Buffer const &, std::ostream &,
                  LatexRunParams const &) const;
        ///
-       int ascii(Buffer const *, std::ostream &, int linelen) const;
+       int ascii(Buffer const &, std::ostream &, int linelen) const;
        ///
-       int linuxdoc(Buffer const *, std::ostream &) const;
+       int linuxdoc(Buffer const &, std::ostream &) const;
        ///
-       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
+       int docbook(Buffer const &, std::ostream &, bool mixcont) const;
        ///
        void validate(LaTeXFeatures &) const;
 
-       /// take up a whole row if we're not type INPUT
-       bool display() const;
-
        /// return true if the file is or got loaded.
        bool loadIfNeeded() const;
 
@@ -112,8 +109,14 @@ public:
        void addPreview(lyx::graphics::PreviewLoader &) const;
 
 private:
+       friend class InsetIncludeMailer;
+       
+       ///
+       void write(std::ostream &) const;
+       ///
+       void read(LyXLex &);
        /// get the text displayed on the button
-       string const getScreenLabel(Buffer const *) const;
+       string const getScreenLabel(Buffer const &) const;
        /// is this a verbatim include ?
        bool isVerbatim() const;
        /// get the filename of the master buffer
@@ -135,6 +138,7 @@ private:
        /// cache
        mutable bool set_label_;
        mutable ButtonRenderer button_;
+       mutable unsigned int center_indent_;
 };