mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
f1cba8ff64
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27425 a592a061-630c-0410-9148-cb99ea01b6c8
70 lines
1.5 KiB
C++
70 lines
1.5 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file TextPainter.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef TEXTPAINTER_H
|
|
#define TEXTPAINTER_H
|
|
|
|
|
|
#include "support/docstream.h"
|
|
|
|
#include <vector>
|
|
|
|
|
|
namespace lyx {
|
|
|
|
// FIXME: Abdel 16/10/2006
|
|
// This TextPainter class is never used, this is dead code.
|
|
/* Georg explanation of current situation:
|
|
AFAIK the text painter was used to export math formulas as ASCII art.
|
|
The text painter is like a real painter, but operating on a very coarse
|
|
grid of character cells where each cell can be filled with an ASCII character.
|
|
I don't know why it is currently disabled. I do know that we have a bugzilla
|
|
request for reenabling it.
|
|
*/
|
|
|
|
class TextPainter {
|
|
public:
|
|
///
|
|
TextPainter(int xmax, int ymax);
|
|
///
|
|
void draw(int x, int y, char_type const * str);
|
|
///
|
|
void draw(int x, int y, char_type c);
|
|
///
|
|
void show(odocstream & os, int offset = 0) const;
|
|
///
|
|
int textheight() const { return ymax_; }
|
|
///
|
|
void horizontalLine(int x, int y, int len, char_type c = '-');
|
|
///
|
|
void verticalLine(int x, int y, int len, char_type c = '|');
|
|
|
|
private:
|
|
///
|
|
typedef std::vector<char_type> data_type;
|
|
///
|
|
char_type at(int x, int y) const;
|
|
///
|
|
char_type & at(int x, int y);
|
|
|
|
/// xsize of the painter area
|
|
int xmax_;
|
|
/// ysize of the painter area
|
|
int ymax_;
|
|
/// the image
|
|
data_type data_;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif
|