]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseterror.h
move inset related stuff from src/graphics to src/inset/
[lyx.git] / src / insets / inseterror.h
index 95cd3ee1cb74f7369c3306e3392474625cbf9425..34b1428f803cef6bab0d1c632546de0fa63b512d 100644 (file)
@@ -1,11 +1,11 @@
 // -*- C++ -*-
 /* This file is part of*
- * ====================================================== 
+ * ======================================================
  *
  *           LyX, The Document Processor
- *      
+ *
  *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team. 
+ *           Copyright 1995-2001 The LyX Team.
  *
  * ====================================================== */
 
 #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 
+
+  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 {
 public:
        ///
        explicit
-       InsetError(string const &);
+       InsetError(string const &, bool same_id = false);
        ///
        ~InsetError() { hideDialog(); }
        ///
@@ -51,17 +51,21 @@ public:
        ///
        int linuxdoc(Buffer const *, std::ostream &) const { return 0; }
        ///
-       int docBook(Buffer const *, std::ostream &) const { return 0; }
+       int docbook(Buffer const *, std::ostream &) const { return 0; }
        ///
        bool autoDelete() const { return true; }
        /// what appears in the minibuffer when opening
        string const editMessage() const;
        ///
-       void edit(BufferView *, int, int, unsigned int);
+       void edit(BufferView *, int, int, mouse_button::state);
+       ///
+       void edit(BufferView * bv, bool front = true);
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset * clone(Buffer const &) const { return new InsetError(contents); }
+       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