2003-10-10 21:08:55 +00:00
|
|
|
/**
|
2007-04-25 01:24:38 +00:00
|
|
|
* \file RenderButton.cpp
|
2003-10-10 21:08:55 +00:00
|
|
|
* 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>
|
|
|
|
|
2007-04-25 01:24:38 +00:00
|
|
|
#include "RenderButton.h"
|
2003-10-10 21:08:55 +00:00
|
|
|
|
|
|
|
#include "LColor.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "MetricsInfo.h"
|
2003-10-10 21:08:55 +00:00
|
|
|
|
2006-10-07 16:15:06 +00:00
|
|
|
#include "frontends/FontMetrics.h"
|
2003-10-10 21:08:55 +00:00
|
|
|
#include "frontends/Painter.h"
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
2006-08-13 22:54:59 +00:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-11 19:40:50 +00:00
|
|
|
void RenderButton::update(docstring const & text, bool editable)
|
2003-10-10 21:08:55 +00:00
|
|
|
{
|
|
|
|
text_ = text;
|
|
|
|
editable_ = editable;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-28 15:15:49 +00:00
|
|
|
bool RenderButton::metrics(MetricsInfo &, Dimension & dim) const
|
2003-10-10 21:08:55 +00:00
|
|
|
{
|
|
|
|
LyXFont font(LyXFont::ALL_SANE);
|
|
|
|
font.decSize();
|
2006-10-21 00:16:43 +00:00
|
|
|
frontend::FontMetrics const & fm =
|
2006-10-11 17:24:46 +00:00
|
|
|
theFontMetrics(font);
|
2006-10-07 16:15:06 +00:00
|
|
|
|
2003-10-10 21:08:55 +00:00
|
|
|
if (editable_)
|
2006-10-11 19:40:50 +00:00
|
|
|
fm.buttonText(text_, dim.wid, dim.asc, dim.des);
|
2003-10-10 21:08:55 +00:00
|
|
|
else
|
2006-10-11 19:40:50 +00:00
|
|
|
fm.rectText(text_, dim.wid, dim.asc, dim.des);
|
2003-10-10 21:08:55 +00:00
|
|
|
|
|
|
|
dim.wid += 4;
|
2006-11-28 15:15:49 +00:00
|
|
|
if (dim_ == dim)
|
|
|
|
return false;
|
|
|
|
dim_ = dim;
|
|
|
|
return true;
|
2003-10-10 21:08:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
if (editable_) {
|
2006-12-04 04:31:18 +00:00
|
|
|
pi.pain.buttonText(x + 2, y, text_, font, renderState());
|
2003-10-10 21:08:55 +00:00
|
|
|
} else {
|
2006-10-11 19:40:50 +00:00
|
|
|
pi.pain.rectText(x + 2, y, text_, font,
|
2003-10-10 21:08:55 +00:00
|
|
|
LColor::commandbg, LColor::commandframe);
|
|
|
|
}
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|