mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
45a03f4f67
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1019 a592a061-630c-0410-9148-cb99ea01b6c8
205 lines
3.9 KiB
C
205 lines
3.9 KiB
C
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2000 The LyX Team.
|
|
*
|
|
* ====================================================== */
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "inseterror.h"
|
|
#include "gettext.h"
|
|
#include "lyx_gui_misc.h" // CancelCloseBoxCB
|
|
#include "Painter.h"
|
|
#include "BufferView.h"
|
|
#include "font.h"
|
|
|
|
using std::ostream;
|
|
|
|
/* Error, used for the LaTeX-Error Messages */
|
|
|
|
#if 0
|
|
InsetError::InsetError()
|
|
{
|
|
form = 0;
|
|
}
|
|
#endif
|
|
|
|
|
|
InsetError::InsetError(string const & str)
|
|
: contents(str), form(0)
|
|
{}
|
|
|
|
|
|
InsetError::~InsetError()
|
|
{
|
|
if (form) {
|
|
fl_hide_form(form);
|
|
fl_free_form(form);
|
|
form = 0;
|
|
}
|
|
}
|
|
|
|
|
|
int InsetError::ascent(BufferView *, LyXFont const & font) const
|
|
{
|
|
LyXFont efont;
|
|
efont.setSize(font.size()).decSize();
|
|
return lyxfont::maxAscent(efont) + 1;
|
|
}
|
|
|
|
|
|
int InsetError::descent(BufferView *, LyXFont const & font) const
|
|
{
|
|
LyXFont efont;
|
|
efont.setSize(font.size()).decSize();
|
|
return lyxfont::maxDescent(efont) + 1;
|
|
}
|
|
|
|
|
|
int InsetError::width(BufferView *, LyXFont const & font) const
|
|
{
|
|
LyXFont efont;
|
|
efont.setSize(font.size()).decSize();
|
|
return 6 + lyxfont::width(_("Error"), efont);
|
|
}
|
|
|
|
|
|
void InsetError::draw(BufferView * bv, LyXFont const & font,
|
|
int baseline, float & x, bool) const
|
|
{
|
|
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,
|
|
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);
|
|
|
|
x += width(bv, font) - 1;
|
|
}
|
|
|
|
|
|
void InsetError::Write(Buffer const *, ostream &) const
|
|
{
|
|
}
|
|
|
|
|
|
void InsetError::Read(Buffer const *, LyXLex &)
|
|
{
|
|
}
|
|
|
|
|
|
int InsetError::Latex(Buffer const *, ostream &,
|
|
bool /*fragile*/, bool /*fs*/) const
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetError::Ascii(Buffer const *, ostream &) const
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetError::Linuxdoc(Buffer const *, ostream &) const
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
int InsetError::DocBook(Buffer const *, ostream &) const
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
|
|
bool InsetError::AutoDelete() const
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
Inset::EDITABLE InsetError::Editable() const
|
|
{
|
|
return IS_EDITABLE;
|
|
}
|
|
|
|
|
|
void InsetError::CloseErrorCB(FL_OBJECT * ob, long)
|
|
{
|
|
InsetError * inset = static_cast<InsetError*>(ob->u_vdata);
|
|
if (inset->form) {
|
|
fl_hide_form(inset->form);
|
|
fl_free_form(inset->form);
|
|
inset->form = 0;
|
|
}
|
|
}
|
|
|
|
|
|
// A C wrapper
|
|
extern "C"
|
|
void C_InsetError_CloseErrorCB(FL_OBJECT * ob, long data)
|
|
{
|
|
InsetError::CloseErrorCB(ob , data);
|
|
}
|
|
|
|
|
|
string const InsetError::EditMessage() const
|
|
{
|
|
return _("Opened error");
|
|
}
|
|
|
|
|
|
void InsetError::Edit(BufferView *, int, int, unsigned int)
|
|
{
|
|
static int ow = 400, oh = 240;
|
|
|
|
if (!form) {
|
|
FL_OBJECT * obj;
|
|
form = fl_bgn_form(FL_UP_BOX, ow, oh);
|
|
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, C_InsetError_CloseErrorCB, 0);
|
|
obj->u_vdata = this;
|
|
fl_set_object_gravity(obj, FL_SouthEast, FL_SouthEast);
|
|
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"));
|
|
fl_set_form_minsize(form, ow, oh);
|
|
}
|
|
}
|
|
|
|
|
|
Inset * InsetError::Clone() const
|
|
{
|
|
return new InsetError(contents);
|
|
}
|