]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseterror.C
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / inseterror.C
index b887c52e3ec3b94416f7dbedaa3273f39218bb56..b32c8880584f76273a2a466cc94df5f8c878ce2c 100644 (file)
 
 #include <config.h>
 
+#include "inseterror.h"
 
 #include "BufferView.h"
-#include "frontends/font_metrics.h"
-#include "lyxfont.h"
+#include "dimension.h"
+#include "funcrequest.h"
 #include "gettext.h"
-#include "inseterror.h"
+#include "lyxfont.h"
+
+#include "frontends/Dialogs.h"
+#include "frontends/font_metrics.h"
 #include "frontends/LyXView.h"
 #include "frontends/Painter.h"
-#include "frontends/Dialogs.h"
+
+#include "support/LAssert.h"
 
 using std::ostream;
 
-/* Error, used for the LaTeX-Error Messages */
 
 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 font_metrics::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 font_metrics::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 + font_metrics::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();
@@ -81,15 +97,3 @@ string const InsetError::editMessage() const
 {
        return _("Opened error");
 }
-
-
-void InsetError::edit(BufferView * bv, int, int, mouse_button::state)
-{
-       bv->owner()->getDialogs().showError(this);
-}
-
-
-void InsetError::edit(BufferView * bv, bool)
-{
-       edit(bv, 0, 0, mouse_button::none);
-}