]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetinclude.h
2001-12-28 Lars Gullik Bj�nnes <larsbj@birdstep.com>
[lyx.git] / src / insets / insetinclude.h
index e57afeb0c7e23bd0de8edbaaa4af5591701504eb..546253d7f853abdeea9208e7a0cfe5b5c75b79ed 100644 (file)
@@ -24,7 +24,7 @@ struct LaTeXFeatures;
 
 /**  Used to include files
  */
-class InsetInclude: public InsetButton, public boost::noncopyable {
+class InsetInclude: public InsetButton, boost::noncopyable {
 public:
         /// the type of inclusion
         enum Flags {
@@ -69,34 +69,37 @@ public:
        void set(Params const & params);
 
        ///
-        Inset * Clone(Buffer const &) const;
+       virtual Inset * clone(Buffer const &, bool same_id = false) const;
        ///
-       Inset::Code LyxCode() const { return Inset::INCLUDE_CODE; }
+       Inset::Code lyxCode() const { return Inset::INCLUDE_CODE; }
        /// This returns the list of labels on the child buffer
        std::vector<string> const getLabelList() const;
        /// This returns the list of bibkeys on the child buffer
        std::vector< std::pair<string,string> > const getKeys() const;
        ///
-       void Edit(BufferView *, int x, int y, unsigned int button);
+       void edit(BufferView *, int x, int y, unsigned int button);
        ///
-       EDITABLE Editable() const
+       void edit(BufferView * bv, bool front = true);
+       ///
+       EDITABLE editable() const
        {
                return IS_EDITABLE;
        }
-        /// With lyx3 we won't overload these 3 methods
-        void Write(Buffer const *, std::ostream &) const;
-        ///
-       void Read(Buffer const *, LyXLex &);
+       /// With lyx3 we won't overload these 3 methods
+       void write(Buffer const *, std::ostream &) const;
+       ///
+       void read(Buffer const *, LyXLex &);
        ///
-       int Latex(Buffer const *, std::ostream &, bool fragile, bool free_spc) const;
+       int latex(Buffer const *, std::ostream &,
+                 bool fragile, bool free_spc) 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 &) const;
+       int docbook(Buffer const *, std::ostream &) const;
        ///
-       void Validate(LaTeXFeatures &) const;
+       void validate(LaTeXFeatures &) const;
        
         /** Input inserts anything inside a paragraph.
            Display can give some visual feedback
@@ -116,7 +119,7 @@ public:
        SigC::Signal0<void> hideDialog;
 private:
        /// get the text displayed on the button
-       string const getScreenLabel() const;
+       string const getScreenLabel(Buffer const *) const;
        /// is this a verbatim include ?
        bool isVerbatim() const;
         /// get the filename of the master buffer