2003-10-10 21:08:55 +00:00
|
|
|
/**
|
|
|
|
* \file render_button.C
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Angus Leeming
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "render_button.h"
|
|
|
|
|
|
|
|
#include "LColor.h"
|
|
|
|
#include "metricsinfo.h"
|
|
|
|
|
|
|
|
#include "frontends/font_metrics.h"
|
|
|
|
#include "frontends/Painter.h"
|
|
|
|
|
2006-08-13 22:54:59 +00:00
|
|
|
using lyx::docstring;
|
|
|
|
|
2003-10-10 21:08:55 +00:00
|
|
|
using std::string;
|
2003-11-03 17:47:28 +00:00
|
|
|
using std::auto_ptr;
|
2003-10-10 21:08:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
RenderButton::RenderButton()
|
|
|
|
: editable_(false)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
2004-04-13 17:25:23 +00:00
|
|
|
auto_ptr<RenderBase> RenderButton::clone(InsetBase const *) const
|
2003-10-10 21:08:55 +00:00
|
|
|
{
|
2003-11-03 17:47:28 +00:00
|
|
|
return auto_ptr<RenderBase>(new RenderButton(*this));
|
2003-10-10 21:08:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RenderButton::update(string const & text, bool editable)
|
|
|
|
{
|
|
|
|
text_ = text;
|
|
|
|
editable_ = editable;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RenderButton::metrics(MetricsInfo &, Dimension & dim) const
|
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_SANE);
|
|
|
|
font.decSize();
|
|
|
|
|
2006-08-13 22:54:59 +00:00
|
|
|
docstring dtext(text_.begin(), text_.end());
|
|
|
|
|
2003-10-10 21:08:55 +00:00
|
|
|
if (editable_)
|
2006-08-13 22:54:59 +00:00
|
|
|
font_metrics::buttonText(dtext, font, dim.wid, dim.asc, dim.des);
|
2003-10-10 21:08:55 +00:00
|
|
|
else
|
2006-08-13 22:54:59 +00:00
|
|
|
font_metrics::rectText(dtext, font, dim.wid, dim.asc, dim.des);
|
2003-10-10 21:08:55 +00:00
|
|
|
|
|
|
|
dim.wid += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void RenderButton::draw(PainterInfo & pi, int x, int y) const
|
|
|
|
{
|
|
|
|
// Draw it as a box with the LaTeX text
|
|
|
|
LyXFont font(LyXFont::ALL_SANE);
|
|
|
|
font.setColor(LColor::command);
|
|
|
|
font.decSize();
|
|
|
|
|
2006-08-13 22:54:59 +00:00
|
|
|
docstring dtext(text_.begin(), text_.end());
|
|
|
|
|
2003-10-10 21:08:55 +00:00
|
|
|
if (editable_) {
|
2006-08-13 22:54:59 +00:00
|
|
|
pi.pain.buttonText(x + 2, y, dtext, font);
|
2003-10-10 21:08:55 +00:00
|
|
|
} else {
|
2006-08-13 22:54:59 +00:00
|
|
|
pi.pain.rectText(x + 2, y, dtext, font,
|
2003-10-10 21:08:55 +00:00
|
|
|
LColor::commandbg, LColor::commandframe);
|
|
|
|
}
|
|
|
|
}
|