]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.h
fix typo that put too many include paths for most people
[lyx.git] / src / insets / insetref.h
index 102371acdb8e36c316e46f49219b822d9b0839d0..886c87710462b220ed44a98420e6fa4aad039eb7 100644 (file)
@@ -3,9 +3,9 @@
  * ======================================================
  *
  *           LyX, The Document Processor
- *      
+ *
  *         Copyright 1997 LyX Team (this file was created this year)
- * 
+ *
  * ====================================================== */
 
 #ifndef INSET_REF_H
@@ -19,7 +19,7 @@
 
 struct LaTeXFeatures;
 
-/** The reference inset  
+/** The reference inset
  */
 class InsetRef : public InsetCommand {
 public:
@@ -38,35 +38,35 @@ public:
        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 &,
+       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;
 };