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
|
|
|
|
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
|
|
|
|
|
|
|
RenderButton::RenderButton()
|
|
|
|
: editable_(false)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
2007-08-30 18:03:17 +00:00
|
|
|
RenderBase * RenderButton::clone(Inset const *) const
|
2003-10-10 21:08:55 +00:00
|
|
|
{
|
2007-08-30 18:03:17 +00:00
|
|
|
return 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-21 20:39:47 +00:00
|
|
|
void RenderButton::metrics(MetricsInfo &, Dimension & dim) const
|
2003-10-10 21:08:55 +00:00
|
|
|
{
|
2007-10-28 18:51:54 +00:00
|
|
|
FontInfo font = sane_font;
|
2003-10-10 21:08:55 +00:00
|
|
|
font.decSize();
|
2006-10-21 00:16:43 +00:00
|
|
|
frontend::FontMetrics const & fm =
|
2006-10-11 17:24:46 +00:00
|
|
|
theFontMetrics(font);
|
2007-05-28 22:27:45 +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
|
|
|
dim_ = dim;
|
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
|
2007-10-28 18:51:54 +00:00
|
|
|
FontInfo font = sane_font;
|
2007-10-25 12:41:02 +00:00
|
|
|
font.setColor(Color_command);
|
2003-10-10 21:08:55 +00:00
|
|
|
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,
|
2007-10-25 12:41:02 +00:00
|
|
|
Color_commandbg, Color_commandframe);
|
2003-10-10 21:08:55 +00:00
|
|
|
}
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace lyx
|