]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetexternal.h
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insetexternal.h
index dc68effa30c109b2806072fcc77aeaecd5aea54e..e6fb0e946140bc0ea3eedfa3665a462060ea2fd2 100644 (file)
@@ -46,6 +46,8 @@ public:
        ///
        virtual void edit(BufferView *, int x, int y, unsigned int button);
        ///
+       virtual void edit(BufferView * bv, bool front = true);
+       ///
        virtual EDITABLE editable() const { return IS_EDITABLE; }
        ///
        virtual void write(Buffer const *, std::ostream &) const;
@@ -59,13 +61,13 @@ public:
         is in a free-spacing paragraph.
         */
        virtual int latex(Buffer const *, std::ostream &, bool fragile,
-                         bool free_spc) const;
+                         bool free_spc) const;
        /// write ASCII output to the ostream
        virtual int ascii(Buffer const *, std::ostream &, int linelen) const;
        /// write LinuxDoc output to the ostream
        virtual int linuxdoc(Buffer const *, std::ostream &) const;
        /// write DocBook output to the ostream
-       virtual int docBook(Buffer const *, std::ostream &) const;
+       virtual int docbook(Buffer const *, std::ostream &) const;
 
        /// Updates needed features for this inset.
        virtual void validate(LaTeXFeatures & features) const;
@@ -74,19 +76,22 @@ public:
        virtual Inset::Code lyxCode() const { return EXTERNAL_CODE; }
  
        ///
-       virtual Inset * clone(Buffer const &) const;
+       virtual Inset * clone(Buffer const &, bool same_id = false) const;
 
        /// returns the text of the button
-       virtual string const getScreenLabel() const;
+       virtual string const getScreenLabel(Buffer const *) const;
 
        // The following public members are used from the frontends code
 
        /// set the parameters from a Params structure
        virtual void setFromParams(Params const &);
 
-       /// update the file represented by the template
+       ///
        void updateExternal() const;
 
+       /// update the file represented by the template
+       void updateExternal(string const &, Buffer const *) const;
+
        /// edit file of this template
        void editExternal() const;