]> 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 008779970740297ce3a33c72936de4e0656b6226..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
 
 #include "insetcommand.h"
 #include "dimension.h"
-
+#include "renderers.h"
 #include <boost/scoped_ptr.hpp>
 
+
 class Buffer;
 struct LaTeXFeatures;
 
 // Created by AAS 970521
 
 /// for including tex/lyx files
-class InsetInclude: public InsetButton, boost::noncopyable {
+class InsetInclude: public InsetOld {
 public:
        /// the type of inclusion
        enum Flags {
@@ -52,8 +53,8 @@ public:
 
        ///
        InsetInclude(Params const &);
-       ///
        InsetInclude(InsetCommandParams const &, Buffer const &);
+       InsetInclude(InsetInclude const &);
 
        ~InsetInclude();
 
@@ -64,6 +65,8 @@ public:
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
        void draw(PainterInfo & pi, int x, int y) const;
+       ///
+       virtual BufferView * view() const;
 
        /// get the parameters
        Params const & params(void) const;
@@ -71,11 +74,11 @@ public:
        void set(Params const & params);
 
        ///
-       virtual Inset * clone() const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       Inset::Code lyxCode() const { return Inset::INCLUDE_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::INCLUDE_CODE; }
        /// This returns the list of labels on the child buffer
-       std::vector<string> const getLabelList() const;
+       void getLabelList(std::vector<string> &) const;
        /// This returns the list of bibkeys on the child buffer
        void fillWithBibKeys(std::vector<std::pair<string,string> > & keys) const;
        ///
@@ -83,34 +86,37 @@ 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;
 
        ///
-       void addPreview(grfx::PreviewLoader &) const;
+       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
@@ -130,7 +136,9 @@ private:
        boost::scoped_ptr<PreviewImpl> const preview_;
 
        /// cache
-       mutable Dimension dim_;
+       mutable bool set_label_;
+       mutable ButtonRenderer button_;
+       mutable unsigned int center_indent_;
 };
 
 
@@ -150,7 +158,7 @@ public:
        ///
        virtual string const & name() const { return name_; }
        ///
-       virtual string const inset2string() const;
+       virtual string const inset2string(Buffer const &) const;
        ///
        static void string2params(string const &, InsetInclude::Params &);
        ///