lyx_mirror/src/insets/insetbutton.C
Lars Gullik Bjønnes 94c00c08a8 simplify rectText and buttonText add separate metric methods for these
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2314 a592a061-630c-0410-9148-cb99ea01b6c8
2001-07-24 09:12:20 +00:00

161 lines
3.3 KiB
C

/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 1995 Matthias Ettrich
* Copyright 2000-2001 The LyX Team.
*
* ====================================================== */
#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "insetbutton.h"
#include "debug.h"
#include "BufferView.h"
#include "Painter.h"
#include "support/LAssert.h"
#include "lyxfont.h"
#include "font.h"
using std::ostream;
using std::endl;
int InsetButton::ascent(BufferView * bv, LyXFont const &) const
{
lyx::Assert(bv);
LyXFont font(LyXFont::ALL_SANE);
font.decSize();
int width;
int ascent;
int descent;
string const s = getScreenLabel();
#if 0
if (editable()) {
bv->painter().buttonText(0, 0, s, font,
false, width, ascent, descent);
} else {
bv->painter().rectText(0, 0, s, font,
LColor::commandbg, LColor::commandframe,
false, width, ascent, descent);
}
#else
if (editable()) {
lyxfont::buttonText(s, font, width, ascent, descent);
} else {
lyxfont::rectText(s, font, width, ascent, descent);
}
#endif
return ascent;
}
int InsetButton::descent(BufferView * bv, LyXFont const &) const
{
lyx::Assert(bv);
LyXFont font(LyXFont::ALL_SANE);
font.decSize();
int width;
int ascent;
int descent;
string const s = getScreenLabel();
#if 0
if (editable()) {
bv->painter().buttonText(0, 0, s, font,
false, width, ascent, descent);
} else {
bv->painter().rectText(0, 0, s, font,
LColor::commandbg, LColor::commandframe,
false, width, ascent, descent);
}
#else
if (editable()) {
lyxfont::buttonText(s, font, width, ascent, descent);
} else {
lyxfont::rectText(s, font, width, ascent, descent);
}
#endif
return descent;
}
int InsetButton::width(BufferView * bv, LyXFont const &) const
{
lyx::Assert(bv);
LyXFont font(LyXFont::ALL_SANE);
font.decSize();
int width;
int ascent;
int descent;
string const s = getScreenLabel();
#if 0
if (editable()) {
bv->painter().buttonText(0, 0, s, font,
false, width, ascent, descent);
} else {
bv->painter().rectText(0, 0, s, font,
LColor::commandbg, LColor::commandframe,
false, width, ascent, descent);
}
#else
if (editable()) {
lyxfont::buttonText(s, font, width, ascent, descent);
} else {
lyxfont::rectText(s, font, width, ascent, descent);
}
#endif
return width + 4;
}
void InsetButton::draw(BufferView * bv, LyXFont const &,
int baseline, float & x, bool) const
{
lyx::Assert(bv);
Painter & pain = bv->painter();
// Draw it as a box with the LaTeX text
LyXFont font(LyXFont::ALL_SANE);
font.setColor(LColor::command).decSize();
string const s = getScreenLabel();
#if 0
int width;
if (editable()) {
pain.buttonText(int(x) + 2, baseline, s, font, true, width);
} else {
pain.rectText(int(x) + 2, baseline, s, font,
LColor::commandbg, LColor::commandframe,
true, width);
}
#else
if (editable()) {
pain.buttonText(int(x) + 2, baseline, s, font);
} else {
pain.rectText(int(x) + 2, baseline, s, font,
LColor::commandbg, LColor::commandframe);
}
#endif
#if 0
x += width + 4;
#else
x += width(bv, font);
#endif
}