]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.h
Enable the external inset to handle unknown templates gracefully.
[lyx.git] / src / insets / insetref.h
index 46a82f206bc239eaf87a37f798a9ff1b122ee944..41ac981dadebadf8119642a1006a785d71019ecd 100644 (file)
@@ -1,25 +1,23 @@
 // -*- C++ -*-
-/* This file is part of*
- * ======================================================
+/**
+ * \file insetref.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
- *      
- *         Copyright 1997 LyX Team (this file was created this year)
- * 
- * ====================================================== */
+ * \author José Matos
+ *
+ * Full author contact details are available in file CREDITS
+ */
 
 #ifndef INSET_REF_H
 #define INSET_REF_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insetcommand.h"
 
 struct LaTeXFeatures;
 
-/** The reference inset  
+/** The reference inset
  */
 class InsetRef : public InsetCommand {
 public:
@@ -37,33 +35,35 @@ public:
        ///
        static string const & getName(int type);
 
+
+       InsetRef(InsetCommandParams const &, Buffer const &);
+
+       InsetRef(InsetRef const &);
+
+       ~InsetRef();
        ///
-       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);
+       virtual Inset * clone() const {
+               return new InsetRef(*this);
        }
        ///
+       dispatch_result localDispatch(FuncRequest const & cmd);
+       ///
        string const getScreenLabel(Buffer const *) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
        Inset::Code lyxCode() const { return Inset::REF_CODE; }
        ///
-       void edit(BufferView *, int, int, unsigned int);
-       ///
-       void edit(BufferView * bv, bool front = true);
-       ///
        bool display() const { return false; }
        ///
        int latex(Buffer const *, std::ostream &,
-                 bool fragile, bool free_spc) const;
+                 LatexRunParams const &) const;
        ///
        int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
        int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int docbook(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
        ///
        void validate(LaTeXFeatures & features) const;
 private: