]> 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 5bc8b0437bb0d30ced6be95a1da451e54bc9c69a..886c87710462b220ed44a98420e6fa4aad039eb7 100644 (file)
@@ -3,9 +3,9 @@
  * ======================================================
  *
  *           LyX, The Document Processor
- *      
- *         Copyright (C) 1997 LyX Team (this file was created this year)
- * 
+ *
+ *         Copyright 1997 LyX Team (this file was created this year)
+ *
  * ====================================================== */
 
 #ifndef INSET_REF_H
 #endif
 
 #include "insetcommand.h"
-#include "buffer.h"
 
 struct LaTeXFeatures;
 
-/** The reference inset  
+/** The reference inset
  */
-class InsetRef: public InsetCommand {
+class InsetRef : public InsetCommand {
 public:
-        ///
-        enum Ref_Flags {
+       struct type_info {
+               ///
+               string latex_name;
                ///
-               REF,
+               string gui_name;
                ///
-               PAGE_REF
+               string short_gui_name;
        };
-       
+       static type_info types[];
        ///
-       InsetRef() : InsetCommand("ref") { flag = InsetRef::REF; }
+       static int getType(string const & name);
        ///
-       InsetRef(string const &, Buffer *);
+       static string const & getName(int type);
+
        ///
-       InsetRef(InsetCommand const &, Buffer *);
+       InsetRef(InsetCommandParams const &, Buffer const &, bool same_id = false);
        ///
-       ~InsetRef();
-        ///
-        Inset * Clone() const {
-               return new InsetRef (getCommand(), master);
+       virtual Inset * clone(Buffer const & buffer, bool same_id = false) const {
+               return new InsetRef(params(), buffer, same_id);
        }
        ///
-       Inset::Code LyxCode() const { return Inset::REF_CODE; }
+       string const getScreenLabel(Buffer const *) const;
        ///
-       void Edit(int, int);
+       EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       unsigned char Editable() const {
-               return 1;
-       }
-        ///
-       bool display() const { return false; }
+       Inset::Code lyxCode() const { return Inset::REF_CODE; }
+       ///
+       void edit(BufferView *, int, int, unsigned int);
        ///
-       string getScreenLabel() const;
+       void edit(BufferView * bv, bool front = true);
        ///
-       InsetRef::Ref_Flags getFlag() { return flag; }
+       bool display() const { return false; }
        ///
-       void setFlag(InsetRef::Ref_Flags f) { flag = f; }
-        ///
-        void gotoLabel();
+       int latex(Buffer const *, std::ostream &,
+                 bool fragile, bool free_spc) const;
        ///
-       int Latex(FILE * file, signed char fragile);
+       int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
-       int Latex(string & file, signed char fragile);
+       int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int Linuxdoc(string & file);
+       int docbook(Buffer const *, std::ostream &) const;
        ///
-       int DocBook(string & file);
+       void validate(LaTeXFeatures & features) const;
 private:
-       /// This function escapes 8-bit characters
-       string escape(string const &) const;
        ///
-        Ref_Flags flag;
-        ///
-       Buffer * master;
+       bool isLatex;
 };
-
-
-inline
-void InsetRef::gotoLabel()
-{
-    if (master) {
-       master->gotoLabel(getContents());
-    }
-}
 #endif