1999-09-27 18:44:28 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
1999-10-02 16:21:10 +00:00
|
|
|
* Copyright 1995 Matthias Ettrich
|
|
|
|
* Copyright 1995-1999 The LyX Team.
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
1999-11-15 10:58:38 +00:00
|
|
|
* ====================================================== */
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "inseterror.h"
|
|
|
|
#include "lyxdraw.h"
|
|
|
|
#include "gettext.h"
|
|
|
|
#include "lyx_gui_misc.h" // CancelCloseBoxCB
|
|
|
|
|
|
|
|
/* Error, used for the LaTeX-Error Messages */
|
|
|
|
|
|
|
|
InsetError::InsetError()
|
|
|
|
{
|
1999-10-02 16:21:10 +00:00
|
|
|
form = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
InsetError::InsetError(string const & str)
|
|
|
|
: contents(str)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-10-02 16:21:10 +00:00
|
|
|
form = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
InsetError::~InsetError()
|
|
|
|
{
|
|
|
|
if (form) {
|
|
|
|
fl_hide_form(form);
|
|
|
|
fl_free_form(form);
|
1999-10-02 16:21:10 +00:00
|
|
|
form = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
int InsetError::Ascent(LyXFont const & font) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
LyXFont efont;
|
|
|
|
efont.setSize(font.size()).decSize();
|
|
|
|
return efont.maxAscent()+1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
int InsetError::Descent(LyXFont const & font) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
LyXFont efont;
|
|
|
|
efont.setSize(font.size()).decSize();
|
|
|
|
return efont.maxDescent()+1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
int InsetError::Width(LyXFont const & font) const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
LyXFont efont;
|
|
|
|
efont.setSize(font.size()).decSize();
|
|
|
|
return 6 + efont.textWidth(_("Error"), strlen(_("Error")));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
void InsetError::Draw(LyXFont font, LyXScreen & scr,
|
|
|
|
int baseline, float & x)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
LyXFont efont;
|
|
|
|
efont.setSize(font.size()).decSize();
|
|
|
|
efont.setLatex(LyXFont::ON);
|
|
|
|
|
|
|
|
// Draw as "Error" in a framed box
|
|
|
|
x += 1;
|
|
|
|
scr.fillRectangle(gc_lighted,
|
|
|
|
int(x), baseline - Ascent(font)+1,
|
1999-11-15 10:58:38 +00:00
|
|
|
Width(font)-2, Ascent(font)+ Descent(font)-2);
|
1999-09-27 18:44:28 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
void InsetError::Write(ostream &)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
void InsetError::Read(LyXLex &)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-12-07 00:44:53 +00:00
|
|
|
int InsetError::Latex(ostream &, signed char /*fragile*/)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
int InsetError::Latex(string &, signed char /*fragile*/)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
int InsetError::Linuxdoc(string &)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-02 16:21:10 +00:00
|
|
|
int InsetError::DocBook(string &)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool InsetError::AutoDelete() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
unsigned char InsetError::Editable() const
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
void InsetError::CloseErrorCB(FL_OBJECT * ob, long)
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
InsetError * inset = static_cast<InsetError*>(ob->u_vdata);
|
1999-09-27 18:44:28 +00:00
|
|
|
if (inset->form) {
|
|
|
|
fl_hide_form(inset->form);
|
|
|
|
fl_free_form(inset->form);
|
1999-10-02 16:21:10 +00:00
|
|
|
inset->form = 0;
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-11-04 01:40:20 +00:00
|
|
|
|
1999-10-19 15:06:30 +00:00
|
|
|
// A C wrapper
|
1999-11-04 01:40:20 +00:00
|
|
|
extern "C" void C_InsetError_CloseErrorCB(FL_OBJECT * ob, long data)
|
1999-10-19 15:06:30 +00:00
|
|
|
{
|
1999-11-04 01:40:20 +00:00
|
|
|
InsetError::CloseErrorCB(ob , data);
|
1999-10-19 15:06:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
void InsetError::Edit(int, int)
|
|
|
|
{
|
1999-10-25 14:50:26 +00:00
|
|
|
static int ow = 400, oh = 240;
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
if (!form) {
|
1999-11-04 01:40:20 +00:00
|
|
|
FL_OBJECT * obj;
|
|
|
|
form = fl_bgn_form(FL_UP_BOX, ow, oh);
|
1999-11-15 10:58:38 +00:00
|
|
|
strobj = fl_add_box(FL_FRAME_BOX, 10, 10, 380, 180, "");
|
|
|
|
fl_set_object_color(strobj, FL_MCOL, FL_MCOL);
|
1999-09-27 18:44:28 +00:00
|
|
|
fl_set_object_gravity(strobj, FL_NorthWest, FL_SouthEast);
|
1999-11-15 10:58:38 +00:00
|
|
|
obj = fl_add_button(FL_RETURN_BUTTON, 140, 200, 120, 30,
|
|
|
|
_("Close"));
|
1999-11-04 01:40:20 +00:00
|
|
|
fl_set_object_callback(obj, C_InsetError_CloseErrorCB, 0);
|
|
|
|
obj->u_vdata = this;
|
1999-10-25 14:50:26 +00:00
|
|
|
fl_set_object_gravity(obj, FL_SouthEast, FL_SouthEast);
|
1999-09-27 18:44:28 +00:00
|
|
|
fl_set_object_resize(obj, FL_RESIZE_NONE);
|
|
|
|
fl_end_form();
|
1999-10-02 16:21:10 +00:00
|
|
|
fl_set_form_atclose(form, CancelCloseBoxCB, 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
fl_set_object_label(strobj, contents.c_str());
|
|
|
|
if (form->visible) {
|
|
|
|
fl_raise_form(form);
|
|
|
|
} else {
|
1999-11-15 10:58:38 +00:00
|
|
|
fl_show_form(form, FL_PLACE_MOUSE | FL_FREE_SIZE,
|
|
|
|
FL_FULLBORDER, _("LaTeX Error"));
|
1999-10-25 14:50:26 +00:00
|
|
|
fl_set_form_minsize(form, ow, oh);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-24 22:14:46 +00:00
|
|
|
Inset * InsetError::Clone() const
|
1999-09-27 18:44:28 +00:00
|
|
|
{
|
1999-11-22 16:19:48 +00:00
|
|
|
return new InsetError(contents);
|
1999-09-27 18:44:28 +00:00
|
|
|
}
|