]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseterror.C
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / inseterror.C
index 9fa6b281d02cfd1c41cded00857b1757c7523abf..b32c8880584f76273a2a466cc94df5f8c878ce2c 100644 (file)
@@ -1,68 +1,82 @@
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-2001 The LyX Team.
+/**
+ * \file inseterror.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * ====================================================== */
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
+#include "inseterror.h"
 
 #include "BufferView.h"
-#include "font.h"
+#include "dimension.h"
+#include "funcrequest.h"
 #include "gettext.h"
-#include "inseterror.h"
-#include "LyXView.h"
-#include "Painter.h"
+#include "lyxfont.h"
+
 #include "frontends/Dialogs.h"
+#include "frontends/font_metrics.h"
+#include "frontends/LyXView.h"
+#include "frontends/Painter.h"
+
+#include "support/LAssert.h"
 
 using std::ostream;
 
-/* Error, used for the LaTeX-Error Messages */
 
-InsetError::InsetError(string const & str)
+InsetError::InsetError(string const & str, bool)
        : contents(str)
 {}
 
 
-int InsetError::ascent(BufferView *, LyXFont const & font) const
+InsetError::~InsetError()
 {
-       LyXFont efont;
-       efont.setSize(font.size()).decSize();
-       return lyxfont::maxAscent(efont) + 1;
+       Dialogs::hide("error", this);
 }
 
 
-int InsetError::descent(BufferView *, LyXFont const & font) const
+dispatch_result InsetError::localDispatch(FuncRequest const & cmd)
 {
-       LyXFont efont;
-       efont.setSize(font.size()).decSize();
-       return lyxfont::maxDescent(efont) + 1;
+       // UNUSED: dispatch_result result = UNDISPATCHED;
+
+       switch (cmd.action) {
+       case LFUN_MOUSE_RELEASE:
+       case LFUN_INSET_EDIT:
+               cmd.view()->owner()->getDialogs().show("error", getContents(), this);
+               return DISPATCHED;
+
+       default:
+               return Inset::localDispatch(cmd);
+       }
 }
 
 
-int InsetError::width(BufferView *, LyXFont const & font) const
+void InsetError::dimension(BufferView *, LyXFont const & font,
+       Dimension & dim) const
 {
        LyXFont efont;
        efont.setSize(font.size()).decSize();
-       return 6 + lyxfont::width(_("Error"), efont);
+       dim.a = font_metrics::maxAscent(efont) + 1;
+       dim.d = font_metrics::maxDescent(efont) + 1;
+       dim.w = 6 + font_metrics::width(_("Error"), efont);
 }
 
 
 void InsetError::draw(BufferView * bv, LyXFont const & font,
-                     int baseline, float & x, bool) const
+                     int baseline, float & x) const
 {
+       lyx::Assert(bv);
+       cache(bv);
+
        Painter & pain = bv->painter();
        LyXFont efont;
        efont.setSize(font.size()).decSize();
        efont.setColor(LColor::error);
-   
+
        // Draw as "Error" in a framed box
        x += 1;
        pain.fillRectangle(int(x), baseline - ascent(bv, font) + 1,
@@ -79,13 +93,7 @@ void InsetError::draw(BufferView * bv, LyXFont const & font,
 }
 
 
-string const InsetError::EditMessage() const 
+string const InsetError::editMessage() const
 {
        return _("Opened error");
 }
-
-
-void InsetError::Edit(BufferView * bv, int, int, unsigned int)
-{
-       bv->owner()->getDialogs()->showError( this );
-}