lyx_mirror/src/frontends/qt4/GuiPainter.h

120 lines
2.3 KiB
C
Raw Normal View History

// -*- C++ -*-
/**
* \file GuiPainter.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 "frontends/Painter.h"
#include "Color.h"
#include <QPainter>
class QString;
namespace lyx {
class Font;
namespace frontend {
/**
* QLPainter - a painter implementation for Qt4
*/
class QLPainter : public QPainter, public Painter {
public:
QLPainter(QPaintDevice *);
virtual ~QLPainter();
/// draw a line from point to point
virtual void line(
int x1, int y1,
int x2, int y2,
Color_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,
Color_color,
line_style = line_solid,
line_width = line_thin);
/// draw a rectangle
virtual void rectangle(
int x, int y,
int w, int h,
Color_color,
line_style = line_solid,
line_width = line_thin);
/// draw a filled rectangle
virtual void fillRectangle(
int x, int y,
int w, int h,
Color_color);
/// draw an arc
virtual void arc(
int x, int y,
unsigned int w, unsigned int h,
int a1, int a2,
Color_color);
/// draw a pixel
virtual void point(
int x, int y,
Color_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)
virtual int text(int x, int y,
docstring const & str, Font const & f);
/// draw a char at position x, y (y is the baseline)
virtual int text(int x, int y, char_type c, Font const & f);
private:
/// draw small caps text
/**
\return width of the drawn text.
*/
int smallCapsText(int x, int y,
QString const & str, Font const & f);
/// set pen parameters
void setQPainterPen(Color_color col,
line_style ls = line_solid,
line_width lw = line_thin);
Color::color current_color_;
Painter::line_style current_ls_;
Painter::line_width current_lw_;
};
} // namespace frontend
} // namespace lyx
#endif // QLPAINTER_H