]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcite.h
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insetcite.h
index fc2487c41ccea920da49703559add13f5a5204b6..efa21fd17883dfb5f3e2f1af2832cfc058d81b39 100644 (file)
@@ -4,7 +4,7 @@
  *
  *           LyX, The Document Processor
  *      
- *           Copyright 2000 The LyX Team.
+ *           Copyright 2000-2001 The LyX Team.
  * 
  * ====================================================== */
 
 class InsetCitation : public InsetCommand {
 public:
        ///
-       InsetCitation(InsetCommandParams const &);
+       InsetCitation(InsetCommandParams const &, bool same_id = false);
        ///
-       Inset * Clone() const { return new InsetCitation(params()); }
+       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; }
+       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);
+       ///
+       int ascii(Buffer const *, std::ostream &, int linelen) const;
         ///
-       void Edit(BufferView *, int, int, unsigned int);
+       int latex(Buffer const *, std::ostream &, bool, bool) const;
+       ///
+       void validate(LaTeXFeatures &) const;
 };
 
 #endif // INSET_CITE_H