]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcite.h
Rename ascii to plaintext and LatexRunParams to OutputParams.
[lyx.git] / src / insets / insetcite.h
index 58a413bafd1284009a994d6985bbbccf3da1af85..6cb9b5e2f10bdd19274d3cc7b0d1301e90955e80 100644 (file)
@@ -1,46 +1,81 @@
 // -*- C++ -*-
-/* This file is part of*
- * ====================================================== 
+/**
+ * \file insetcite.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
- *      
- *           Copyright 2000-2001 The LyX Team.
- * 
- * ====================================================== */
+ * \author Angus Leeming
+ * \author Herbert Voß
+ *
+ * Full author contact details are available in file CREDITS.
+ */
 
 #ifndef INSET_CITE_H
 #define INSET_CITE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insetcommand.h"
 
-/** Used to insert citations  
+/** Used to insert citations
  */
 class InsetCitation : public InsetCommand {
 public:
        ///
-       InsetCitation(InsetCommandParams const &, bool same_id = false);
+       InsetCitation(InsetCommandParams const &);
+       ///
+       ~InsetCitation();
        ///
-       Inset * clone(Buffer const &, bool same_id = false) const {
-               return new InsetCitation(params(), same_id);
+       std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetCitation(params()));
        }
        ///
-       string const getScreenLabel() const;
+       std::string const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset::Code lyxCode() const { return Inset::CITE_CODE; }
-        ///
-       void edit(BufferView *, int, int, unsigned int);
+       InsetOld::Code lyxCode() const { return InsetOld::CITE_CODE; }
        ///
-       int ascii(Buffer const *, std::ostream &, int linelen) const;
-        ///
-       int latex(Buffer const *, std::ostream &, bool, bool) const;
+       int plaintext(Buffer const &, std::ostream &, int linelen) const;
+       ///
+       int latex(Buffer const &, std::ostream &,
+                 OutputParams const &) const;
        ///
        void validate(LaTeXFeatures &) const;
+protected:
+       ///
+       virtual
+       DispatchResult
+       priv_dispatch(FuncRequest const & cmd, idx_type &, pos_type &);
+private:
+       struct Cache {
+               ///
+               enum Style {
+                       ///
+                       BASIC,
+                       ///
+                       NATBIB_AY,
+                       ///
+                       NATBIB_NUM
+               };
+               ///
+               Cache() : style(BASIC) {}
+               ///
+               Style style;
+               ///
+               InsetCommandParams params;
+               ///
+               std::string generated_label;
+               ///
+               std::string screen_label;
+       };
+
+       /// This function does the donkey work of creating the pretty label
+       std::string const generateLabel(Buffer const &) const;
+       ///
+       Cache::Style getStyle(Buffer const & buffer) const;
+
+       ///
+       mutable Cache cache;
 };
 
 #endif // INSET_CITE_H