]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcite.h
prepare for 1.1.6pre2
[lyx.git] / src / insets / insetcite.h
index bf2cd559b363f5595c4935d16584f5157d9d65c5..8fa126caa52a7c9e100b43e4340350fdf294ac4d 100644 (file)
 #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 &);
        ///
-       Inset * Clone() const {
-               return new InsetCitation(getContents(), getOptions());
+       Inset * Clone(Buffer const &) const {
+               return new InsetCitation(params());
        }
        ///
-       string getScreenLabel() const;
+       string const getScreenLabel() const;
        ///
        EDITABLE Editable() const { return IS_EDITABLE; }
         ///
        void Edit(BufferView *, int, int, unsigned int);
-       ///
-       Signal0<void> hide;
 };
 
 #endif // INSET_CITE_H