]> 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 621dcf1252013bc708326a9806c979537d2b2d38..46a82f206bc239eaf87a37f798a9ff1b122ee944 100644 (file)
@@ -23,33 +23,51 @@ struct LaTeXFeatures;
  */
 class InsetRef : public InsetCommand {
 public:
+       struct type_info {
+               ///
+               string latex_name;
+               ///
+               string gui_name;
+               ///
+               string short_gui_name;
+       };
+       static type_info types[];
        ///
-       InsetRef(InsetCommandParams const &);
+       static int getType(string const & name);
        ///
-       Inset * Clone() const { return new InsetRef(params()); }
+       static string const & getName(int type);
+
+       ///
+       InsetRef(InsetCommandParams const &, Buffer const &, bool same_id = false);
+       ///
+       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; }
+       EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset::Code LyxCode() const { return Inset::REF_CODE; }
+       Inset::Code lyxCode() const { return Inset::REF_CODE; }
+       ///
+       void edit(BufferView *, int, int, unsigned int);
+       ///
+       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;
 };
 #endif