]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcite.h
fix typo that put too many include paths for most people
[lyx.git] / src / insets / insetcite.h
index 92bb90f3f2e78cd37e8454eb572b6f14b67dedf8..d48d88e414f5694f9e5c7d501e9470c561bc00be 100644 (file)
@@ -1,11 +1,11 @@
 // -*- C++ -*-
 /* This file is part of*
- * ====================================================== 
+ * ======================================================
  *
  *           LyX, The Document Processor
- *      
- *           Copyright 2000 The LyX Team.
- * 
+ *
+ *           Copyright 2000-2001 The LyX Team.
+ *
  * ====================================================== */
 
 #ifndef INSET_CITE_H
 
 #include "insetcommand.h"
 
-/** Used to insert citations  
+/** Used to insert citations
  */
-class InsetCitation: public InsetCommand {
+class InsetCitation : public InsetCommand {
 public:
        ///
-       explicit
-       InsetCitation(string const & key, string const & note = string());
+       InsetCitation(InsetCommandParams const &, bool same_id = false);
        ///
-       Inset * Clone() const {
-               return new InsetCitation(getContents(), getOptions());
+       Inset * clone(Buffer const &, bool same_id = false) const {
+               return new InsetCitation(params(), same_id);
        }
        ///
-       string getScreenLabel() const;
+       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);
+       ///
+       void edit(BufferView * bv, bool front = true);
        ///
-       Code LyxCode() const { return CITATION_CODE; }
+       int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
-       EDITABLE Editable() const { return IS_EDITABLE; }
-private:
+       int latex(Buffer const *, std::ostream &, bool, bool) const;
        ///
-       InsetCitation() : InsetCommand("cite") {}
+       void validate(LaTeXFeatures &) const;
 };
 
 #endif // INSET_CITE_H