2006-03-05 17:24:44 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file QLPainter.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author John Levon
|
|
|
|
* \author Abdelrazak Younes
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef QLPAINTER_H
|
|
|
|
#define QLPAINTER_H
|
|
|
|
|
|
|
|
#include "Painter.h"
|
|
|
|
|
2006-10-23 08:46:09 +00:00
|
|
|
#include <QPainter>
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
class QString;
|
2006-06-20 08:39:16 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
class LyXFont;
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
namespace frontend {
|
|
|
|
|
|
|
|
class GuiWorkArea;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* QLPainter - a painter implementation for Qt4
|
|
|
|
*/
|
2006-10-23 08:46:09 +00:00
|
|
|
class QLPainter : public QPainter, public Painter {
|
2006-03-05 17:24:44 +00:00
|
|
|
public:
|
|
|
|
/// draw a line from point to point
|
|
|
|
virtual void line(
|
|
|
|
int x1, int y1,
|
|
|
|
int x2, int y2,
|
|
|
|
LColor_color,
|
|
|
|
line_style = line_solid,
|
|
|
|
line_width = line_thin);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* lines - draw a set of lines
|
|
|
|
* @param xp array of points' x co-ords
|
|
|
|
* @param yp array of points' y co-ords
|
|
|
|
* @param np size of the points array
|
|
|
|
*/
|
|
|
|
virtual void lines(
|
|
|
|
int const * xp,
|
|
|
|
int const * yp,
|
|
|
|
int np,
|
|
|
|
LColor_color,
|
|
|
|
line_style = line_solid,
|
|
|
|
line_width = line_thin);
|
|
|
|
|
|
|
|
/// draw a rectangle
|
|
|
|
virtual void rectangle(
|
|
|
|
int x, int y,
|
|
|
|
int w, int h,
|
|
|
|
LColor_color,
|
|
|
|
line_style = line_solid,
|
|
|
|
line_width = line_thin);
|
|
|
|
|
|
|
|
/// draw a filled rectangle
|
|
|
|
virtual void fillRectangle(
|
|
|
|
int x, int y,
|
|
|
|
int w, int h,
|
|
|
|
LColor_color);
|
|
|
|
|
|
|
|
/// draw an arc
|
|
|
|
virtual void arc(
|
|
|
|
int x, int y,
|
|
|
|
unsigned int w, unsigned int h,
|
|
|
|
int a1, int a2,
|
|
|
|
LColor_color);
|
|
|
|
|
|
|
|
/// draw a pixel
|
|
|
|
virtual void point(
|
|
|
|
int x, int y,
|
|
|
|
LColor_color);
|
|
|
|
|
|
|
|
/// draw an image from the image cache
|
|
|
|
virtual void image(int x, int y,
|
|
|
|
int w, int h,
|
|
|
|
lyx::graphics::Image const & image);
|
|
|
|
|
|
|
|
/// draw a string at position x, y (y is the baseline)
|
2006-10-10 13:24:08 +00:00
|
|
|
virtual int text(int x, int y,
|
2006-08-13 22:54:59 +00:00
|
|
|
lyx::docstring const & str, LyXFont const & f);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
/** Draw a string at position x, y (y is the baseline)
|
|
|
|
* This is just for fast drawing
|
|
|
|
*/
|
2006-10-10 13:24:08 +00:00
|
|
|
virtual int text(int x, int y,
|
2006-08-13 22:54:59 +00:00
|
|
|
lyx::char_type const * str, size_t l,
|
2006-03-05 17:24:44 +00:00
|
|
|
LyXFont const & f);
|
|
|
|
|
|
|
|
/// draw a char at position x, y (y is the baseline)
|
2006-10-10 13:24:08 +00:00
|
|
|
virtual int text(int x, int y,
|
2006-08-13 22:54:59 +00:00
|
|
|
lyx::char_type c, LyXFont const & f);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
private:
|
2006-10-23 08:46:09 +00:00
|
|
|
friend class GuiWorkArea;
|
|
|
|
QLPainter(QWidget *);
|
|
|
|
~QLPainter();
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
/// draw small caps text
|
2006-10-07 16:15:06 +00:00
|
|
|
/**
|
|
|
|
\return width of the drawn text.
|
|
|
|
*/
|
|
|
|
int smallCapsText(int x, int y,
|
2006-03-05 17:24:44 +00:00
|
|
|
QString const & str, LyXFont const & f);
|
|
|
|
|
|
|
|
/// set pen parameters
|
2006-06-25 11:18:56 +00:00
|
|
|
void setQPainterPen(LColor_color col,
|
2006-03-05 17:24:44 +00:00
|
|
|
line_style ls = line_solid,
|
|
|
|
line_width lw = line_thin);
|
|
|
|
|
|
|
|
/// the working area
|
2006-10-23 08:46:09 +00:00
|
|
|
QWidget * qwa_;
|
2006-06-11 21:22:36 +00:00
|
|
|
|
|
|
|
LColor::color current_color_;
|
|
|
|
Painter::line_style current_ls_;
|
|
|
|
Painter::line_width current_lw_;
|
2006-03-05 17:24:44 +00:00
|
|
|
};
|
|
|
|
|
2006-06-20 08:39:16 +00:00
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
#endif // QLPAINTER_H
|