]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetref.h
index 621dcf1252013bc708326a9806c979537d2b2d38..a616a08e28a95403b517956897c9cdb45951901c 100644 (file)
@@ -1,55 +1,75 @@
 // -*- 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  
- */
+namespace lyx {
+
+
+/// The reference inset
 class InsetRef : public InsetCommand {
 public:
+       struct type_info {
+               ///
+               std::string latex_name;
+               ///
+               std::string gui_name;
+               ///
+               std::string short_gui_name;
+       };
+       static type_info types[];
        ///
-       InsetRef(InsetCommandParams const &);
+       static int getType(std::string const & name);
        ///
-       Inset * Clone() const { return new InsetRef(params()); }
+       static std::string const & getName(int type);
+
+
+       InsetRef(InsetCommandParams const &, Buffer const &);
+
        ///
-       string const getScreenLabel() const;
+       docstring 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; }
+       Code lyxCode() const { return REF_CODE; }
        ///
-       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 &, odocstream &, OutputParams const &) const;
        ///
-       int Ascii(Buffer const *, std::ostream &, int linelen) const;
+       int plaintext(Buffer const &, odocstream &, OutputParams const &) const;
        ///
-       int Linuxdoc(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const &, odocstream &, OutputParams const &) const;
+       /// the string that is passed to the TOC
+       virtual int textString(Buffer const &, odocstream &,
+               OutputParams const &) const;
        ///
-       int DocBook(Buffer const *, std::ostream &) const;
+       void validate(LaTeXFeatures & features) const;
+protected:
+       InsetRef(InsetRef const &);
+
        ///
-       void Validate(LaTeXFeatures & features) const;
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
 private:
-       /// This function escapes 8-bit characters
-       string const escape(string const &) const;
+       virtual std::auto_ptr<InsetBase> doClone() const {
+               return std::auto_ptr<InsetBase>(new InsetRef(*this));
+       }
+       ///
+       bool isLatex;
 };
+
+} // namespace lyx
+
 #endif