]> git.lyx.org Git - lyx.git/blobdiff - src/insets/inseterror.C
Rename LatexRunParams::fragile as moving_arg.
[lyx.git] / src / insets / inseterror.C
index 869d349757c836d764a337278b035d6b443d6c8d..b32c8880584f76273a2a466cc94df5f8c878ce2c 100644 (file)
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
- *      
- *         Copyright 1995 Matthias Ettrich
- *          Copyright 1995-1999 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 "definitions.h"
 #include "inseterror.h"
-#include "lyxdraw.h"
+
+#include "BufferView.h"
+#include "dimension.h"
+#include "funcrequest.h"
 #include "gettext.h"
-#include "lyx_gui_misc.h" // CancelCloseBoxCB
+#include "lyxfont.h"
 
-/* Error, used for the LaTeX-Error Messages */
+#include "frontends/Dialogs.h"
+#include "frontends/font_metrics.h"
+#include "frontends/LyXView.h"
+#include "frontends/Painter.h"
 
-InsetError::InsetError()
-{
-       form = 0;
-}
+#include "support/LAssert.h"
+
+using std::ostream;
 
-InsetError::InsetError(string const & string)
-       : contents(string)
-{
-       form = 0;
-}
+
+InsetError::InsetError(string const & str, bool)
+       : contents(str)
+{}
 
 
 InsetError::~InsetError()
 {
-       if (form) {
-               fl_hide_form(form);
-               fl_free_form(form);
-               form = 0;
-       }
+       Dialogs::hide("error", this);
 }
 
 
-int InsetError::Ascent(LyXFont const &font) const
+dispatch_result InsetError::localDispatch(FuncRequest const & cmd)
 {
-       LyXFont efont;
-       efont.setSize(font.size()).decSize();
-       return efont.maxAscent()+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;
 
-int InsetError::Descent(LyXFont const &font) const
-{
-       LyXFont efont;
-       efont.setSize(font.size()).decSize();
-       return efont.maxDescent()+1;
+       default:
+               return Inset::localDispatch(cmd);
+       }
 }
 
 
-int InsetError::Width(LyXFont const &font) const
+void InsetError::dimension(BufferView *, LyXFont const & font,
+       Dimension & dim) const
 {
        LyXFont efont;
        efont.setSize(font.size()).decSize();
-       return 6 + efont.textWidth(_("Error"), strlen(_("Error")));
+       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(LyXFont font, LyXScreen &scr,
-                     int baseline, float &x)
+void InsetError::draw(BufferView * bv, LyXFont const & font,
+                     int baseline, float & x) const
 {
+       lyx::Assert(bv);
+       cache(bv);
+
+       Painter & pain = bv->painter();
        LyXFont efont;
        efont.setSize(font.size()).decSize();
-       efont.setLatex(LyXFont::ON);
-   
+       efont.setColor(LColor::error);
+
        // Draw as "Error" in a framed box
        x += 1;
-       //scr.drawFilledRectangle(int(x), baseline - Ascent(font)+1,
-       //                      Width(font)-2,Ascent(font)+ Descent(font)-2,
-       //                      FL_GRAY80);
-       scr.fillRectangle(gc_lighted,
-                         int(x), baseline - Ascent(font)+1,
-                         Width(font)-2,Ascent(font)+ Descent(font)-2);
-       //scr.drawRectangle(int(x), baseline-Ascent(font)+1,
-       //                Width(font)-2, Ascent(font)+Descent(font)-2,
-       //                FL_RED);
-       scr.drawRectangle(gc_foot,
-                         int(x), baseline-Ascent(font)+1,
-                         Width(font)-2, Ascent(font)+Descent(font)-2); 
-       scr.drawString(efont, _("Error"), baseline, int(x+2));
-
-       x +=  Width(font) - 1;
-}
-
+       pain.fillRectangle(int(x), baseline - ascent(bv, font) + 1,
+                         width(bv, font) - 2,
+                         ascent(bv, font) + descent(bv, font) - 2,
+                          LColor::insetbg);
+       pain.rectangle(int(x), baseline - ascent(bv, font) + 1,
+                      width(bv, font) - 2,
+                      ascent(bv, font) + descent(bv, font) - 2,
+                      LColor::error);
+       pain.text(int(x + 2), baseline, _("Error"), efont);
 
-void InsetError::Write(FILE *)
-{
-}
-
-void InsetError::Read(LyXLex &)
-{
-}
-
-
-int InsetError::Latex(FILE *, signed char /*fragile*/)
-{
-       return 0;
-}
-
-
-int InsetError::Latex(string &, signed char /*fragile*/)
-{
-       return 0;
-}
-
-
-int InsetError::Linuxdoc(string &)
-{
-       return 0;
-}
-
-
-int InsetError::DocBook(string &)
-{
-       return 0;
-}
-
-
-bool InsetError::AutoDelete() const
-{
-       return true;
-}
-
-
-unsigned char InsetError::Editable() const
-{
-       return 1;
-}
-
-
-void InsetError::CloseErrorCB(FL_OBJECT *, long data)
-{
-       InsetError *inset = (InsetError*) data;
-       if (inset->form) {
-               fl_hide_form(inset->form);
-               fl_free_form(inset->form);
-               inset->form = 0;
-       }
-}
-
-void InsetError::Edit(int, int)
-{
-       if (!form) {
-               FL_OBJECT *obj;
-               form = fl_bgn_form(FL_UP_BOX,400,240);
-               strobj = fl_add_box(FL_FRAME_BOX,10,10,380,180,"");
-               fl_set_object_color(strobj,FL_MCOL,FL_MCOL);
-               fl_set_object_gravity(strobj, FL_NorthWest, FL_SouthEast);
-               obj = fl_add_button(FL_RETURN_BUTTON,140,200,120,30,_("Close"));
-               fl_set_object_callback(obj, CloseErrorCB, (long)this);
-               fl_set_object_gravity(obj, FL_South, FL_South);
-               fl_set_object_resize(obj, FL_RESIZE_NONE);
-               fl_end_form();
-               fl_set_form_atclose(form, CancelCloseBoxCB, 0);
-       }
-       fl_set_object_label(strobj, contents.c_str());
-       if (form->visible) {
-               fl_raise_form(form);
-       } else {
-               fl_show_form(form,FL_PLACE_MOUSE | FL_FREE_SIZE, FL_FULLBORDER, 
-                            _("LaTeX Error"));
-       }
+       x +=  width(bv, font) - 1;
 }
 
 
-Inset* InsetError::Clone()
+string const InsetError::editMessage() const
 {
-       InsetError *result = new InsetError(contents);
-       return result;
+       return _("Opened error");
 }