]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseterror.h
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / inseterror.h
index f0aff0b455b860305829e306826ca4a00e3688c8..8619f644a17cd9f3767c7772e259fa6c7c19183f 100644 (file)
@@ -5,7 +5,7 @@
  *           LyX, The Document Processor
  *      
  *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2000 The LyX Team. 
+ *           Copyright 1995-2001 The LyX Team. 
  *
  * ====================================================== */
 
 #pragma interface
 #endif
 
-#include FORMS_H_LOCATION
-#include "lyxinset.h"
+#include "inset.h"
 #include "LString.h"
-#include "gettext.h"
+#include <sigc++/signal_system.h>
 
 /** Used for error messages from LaTeX runs.
   
   The edit-operation opens a 
   dialog with the text of the error-message. The inset is displayed as 
   "Error" in a box, and automatically deleted. */
-class InsetError: public Inset {
+class InsetError : public Inset {
 public:
        ///
-       InsetError(string const & string);
+       explicit
+       InsetError(string const &, bool same_id = false);
        ///
-       InsetError();
+       ~InsetError() { hideDialog(); }
        ///
-       ~InsetError();
+       int ascent(BufferView *, LyXFont const &) const;
        ///
-       int ascent(Painter &, LyXFont const & font) const;
+       int descent(BufferView *, LyXFont const &) const;
        ///
-       int descent(Painter &, LyXFont const & font) const;
+       int width(BufferView *, LyXFont const &) const;
        ///
-       int width(Painter &, LyXFont const & font) const;
+       void draw(BufferView *, LyXFont const &, int, float &, bool) const;
        ///
-       void draw(Painter &, LyXFont const & font, int baseline, float & x) const;
+       void write(Buffer const *, std::ostream &) const {}
        ///
-       void Write(std::ostream &) const;
+       void read(Buffer const *, LyXLex &) {}
        ///
-       void Read(LyXLex & lex);
+       int latex(Buffer const *, std::ostream &, bool, bool) const { return 0; }
        ///
-       int Latex(std::ostream &, signed char fragile, bool free_spc) const;
+       int ascii(Buffer const *, std::ostream &, int) const { return 0; }
        ///
-       int Linuxdoc(std::ostream &) const;
+       int linuxdoc(Buffer const *, std::ostream &) const { return 0; }
        ///
-       int DocBook(std::ostream &) const;
+       int docbook(Buffer const *, std::ostream &) const { return 0; }
        ///
-       bool AutoDelete() const;
+       bool autoDelete() const { return true; }
        /// what appears in the minibuffer when opening
-       char const * EditMessage() const;
+       string const editMessage() const;
        ///
-       void Edit(BufferView *, int x, int y, unsigned int button);
+       void edit(BufferView *, int, int, unsigned int);
        ///
-       EDITABLE Editable() const;
+       void edit(BufferView * bv, bool front = true);
        ///
-       Inset * Clone() const;
+       EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset::Code LyxCode() const { return Inset::NO_CODE; }
+       Inset * clone(Buffer const &, bool same_id = false) const {
+               return new InsetError(contents, same_id);
+       }
+       ///
+       Inset::Code lyxCode() const { return Inset::ERROR_CODE; }
        /// We don't want "begin" and "end inset" in lyx-file
-       bool DirectWrite() const { return true; };
+       bool directWrite() const { return true; };
+       ///
+       string const & getContents() const { return contents; }
        ///
-       static void CloseErrorCB(FL_OBJECT *, long data);
+       SigC::Signal0<void> hideDialog;
 private:
        ///
        string contents;
-       ///
-       FL_FORM * form;
-       ///
-       FL_OBJECT * strobj;
 };
 #endif