]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.h
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insetref.h
index 51f2ffdd59a0b3b1998f635da47419d842381d77..46a82f206bc239eaf87a37f798a9ff1b122ee944 100644 (file)
@@ -32,37 +32,41 @@ public:
                string short_gui_name;
        };
        static type_info types[];
+       ///
+       static int getType(string const & name);
+       ///
+       static string const & getName(int type);
 
        ///
-       InsetRef(InsetCommandParams const &, Buffer const &);
+       InsetRef(InsetCommandParams const &, Buffer const &, bool same_id = false);
        ///
-       Inset * Clone(Buffer const & buffer) const {
-               return new InsetRef(params(), buffer);
+       virtual Inset * clone(Buffer const & buffer, bool same_id = false) const {
+               return new InsetRef(params(), buffer, same_id);
        }
        ///
-       string const getScreenLabel() const;
+       string const getScreenLabel(Buffer const *) const;
+       ///
+       EDITABLE editable() const { return IS_EDITABLE; }
+       ///
+       Inset::Code lyxCode() const { return Inset::REF_CODE; }
        ///
-       EDITABLE Editable() const { return IS_EDITABLE; }
+       void edit(BufferView *, int, int, unsigned int);
        ///
-       Inset::Code LyxCode() const { return Inset::REF_CODE; }
+       void edit(BufferView * bv, bool front = true);
        ///
-       void Edit(BufferView *, int, int, unsigned int);
-        ///
        bool display() const { return false; }
        ///
-       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 & features) const;
+       void validate(LaTeXFeatures & features) const;
 private:
-       /// This function escapes 8-bit characters
-       string const escape(string const &) const;
        ///
        bool isLatex;
 };