2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
2006-09-17 09:14:18 +00:00
|
|
|
|
* \file TextPainter.C
|
2003-08-19 13:00:56 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
2002-09-11 09:14:57 +00:00
|
|
|
|
|
2006-09-17 09:14:18 +00:00
|
|
|
|
#include "TextPainter.h"
|
2003-09-05 17:23:11 +00:00
|
|
|
|
#include "support/std_ostream.h"
|
2002-03-18 11:45:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TextPainter::TextPainter(int xmax, int ymax)
|
2002-03-19 16:55:58 +00:00
|
|
|
|
: xmax_(xmax), ymax_(ymax), data_(xmax_ * (ymax_ + 1), ' ')
|
2002-03-18 11:45:53 +00:00
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
char & TextPainter::at(int x, int y)
|
|
|
|
|
{
|
|
|
|
|
return data_[y * xmax_ + x];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
char TextPainter::at(int x, int y) const
|
|
|
|
|
{
|
|
|
|
|
return data_[y * xmax_ + x];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void TextPainter::draw(int x, int y, char const * str)
|
|
|
|
|
{
|
2002-11-27 10:30:28 +00:00
|
|
|
|
//cerr << "drawing string '" << str << "' at " << x << ',' << y << endl;
|
2002-03-19 16:55:58 +00:00
|
|
|
|
for (int i = 0; *str && x + i < xmax_; ++i, ++str)
|
2002-03-18 11:45:53 +00:00
|
|
|
|
at(x + i, y) = *str;
|
2002-03-19 16:55:58 +00:00
|
|
|
|
//show();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void TextPainter::horizontalLine(int x, int y, int n, char c)
|
|
|
|
|
{
|
|
|
|
|
for (int i = 0; i < n && i + x < xmax_; ++i)
|
|
|
|
|
at(x + i, y) = c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void TextPainter::verticalLine(int x, int y, int n, char c)
|
|
|
|
|
{
|
|
|
|
|
for (int i = 0; i < n && i + y < ymax_; ++i)
|
|
|
|
|
at(x, y + i) = c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void TextPainter::draw(int x, int y, char c)
|
|
|
|
|
{
|
2002-11-27 10:30:28 +00:00
|
|
|
|
//cerr << "drawing char '" << c << "' at " << x << ',' << y << endl;
|
2002-03-19 16:55:58 +00:00
|
|
|
|
at(x, y) = c;
|
|
|
|
|
//show();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-07-11 15:04:43 +00:00
|
|
|
|
void TextPainter::show(std::ostream & os, int offset) const
|
2002-03-19 16:55:58 +00:00
|
|
|
|
{
|
|
|
|
|
os << '\n';
|
|
|
|
|
for (int j = 0; j <= ymax_; ++j) {
|
2002-07-11 15:04:43 +00:00
|
|
|
|
for (int i = 0; i < offset; ++i)
|
2002-11-27 10:30:28 +00:00
|
|
|
|
os << ' ';
|
2002-03-19 16:55:58 +00:00
|
|
|
|
for (int i = 0; i < xmax_; ++i)
|
|
|
|
|
os << at(i, j);
|
|
|
|
|
os << '\n';
|
|
|
|
|
}
|
2002-03-18 11:45:53 +00:00
|
|
|
|
}
|