]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcite.h
Hopefully fixed the redo problems with insets!
[lyx.git] / src / insets / insetcite.h
index bf2cd559b363f5595c4935d16584f5157d9d65c5..efa21fd17883dfb5f3e2f1af2832cfc058d81b39 100644 (file)
@@ -4,7 +4,7 @@
  *
  *           LyX, The Document Processor
  *      
- *           Copyright 2000 The LyX Team.
+ *           Copyright 2000-2001 The LyX Team.
  * 
  * ====================================================== */
 
 #endif
 
 #include "insetcommand.h"
-#include <sigc++/signal_system.h>
-
-class Dialogs;
-
-#ifdef SIGC_CXX_NAMESPACES
-using SigC::Signal0;
-#endif
-
 
 /** Used to insert citations  
  */
 class InsetCitation : public InsetCommand {
 public:
        ///
-       explicit
-       InsetCitation(string const & key, string const & note = string());
-       ///
-       ~InsetCitation();
+       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);
        ///
-       EDITABLE Editable() const { return IS_EDITABLE; }
+       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;
        ///
-       Signal0<void> hide;
+       void validate(LaTeXFeatures &) const;
 };
 
 #endif // INSET_CITE_H