X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetexternal.h;h=e6fb0e946140bc0ea3eedfa3665a462060ea2fd2;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=dc68effa30c109b2806072fcc77aeaecd5aea54e;hpb=85a5ea7bfc80e179a61a99f2955455e84d3384cc;p=lyx.git diff --git a/src/insets/insetexternal.h b/src/insets/insetexternal.h index dc68effa30..e6fb0e9461 100644 --- a/src/insets/insetexternal.h +++ b/src/insets/insetexternal.h @@ -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;