lyx_mirror/src/frontends/qt4/QLPainter.h
Abdelrazak Younes 00edcc582f This commit is a big rework of the FontLoader/FontMetrics interaction. Only Qt4 for now, I would be grateful is somebody steps up for qt3 and gtk.
Basically, I replaced all methods in the font_metrics namespace by a proper virtual interface FontMetrics. The FontLoader is _the_ container for FontMetrics.

This patch should also bring some optimizations in a number of place in the code. This is because we do not need any more to search for the LyXFont at each font_metrics call. In effect, the speed advantage is not as sensible and this is a bit deceiving considering that this was my primary motivation behind the patch. But I like the patch anyway as it cleans up the relation and interfacing between fonts, metrics and frontends.

* frontends/FontMetrics.h: new virtual interface. Renamed from font_metrics.h

* qt4/GuiFontMetrics: corresponding qt4 implememtation. Renamed from qfont_metrics.C. The smallCaps particular case treatment has been transfered here as well as the width cache for MacOSX and Windows.

* qt4/QLPainter.C: the smallCapsText has been reworked to return the width of the drawn text.C

all other files: replace font_metric helper function call with corresponding FontMetrics method calls.



git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15265 a592a061-630c-0410-9148-cb99ea01b6c8
2006-10-07 16:15:06 +00:00

154 lines
3.1 KiB
C++

// -*- 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"
#include <boost/scoped_ptr.hpp>
class LyXFont;
class QPaintDevice;
class QPainter;
class QString;
class QPixmap;
class QImage;
namespace lyx {
namespace frontend {
class GuiWorkArea;
/**
* QLPainter - a painter implementation for Qt4
*/
class QLPainter : public Painter {
public:
QLPainter(GuiWorkArea *);
~QLPainter();
/// begin painting
virtual void start();
/// end painting
virtual void end();
/// return the width of the work area in pixels
virtual int paperWidth() const;
/// return the height of the work area in pixels
virtual int paperHeight() const;
/// 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)
virtual void text(int x, int y,
lyx::docstring const & str, LyXFont const & f);
/** Draw a string at position x, y (y is the baseline)
* This is just for fast drawing
*/
virtual void text(int x, int y,
lyx::char_type const * str, size_t l,
LyXFont const & f);
/// draw a char at position x, y (y is the baseline)
virtual void text(int x, int y,
lyx::char_type c, LyXFont const & f);
/// draw a pixmap from the image cache
virtual void drawPixmap(int x, int y, QPixmap const & pixmap);
/// draw a pixmap from the image cache
virtual void drawImage(int x, int y, QImage const & image);
private:
/// draw small caps text
/**
\return width of the drawn text.
*/
int smallCapsText(int x, int y,
QString const & str, LyXFont const & f);
/// set pen parameters
void setQPainterPen(LColor_color col,
line_style ls = line_solid,
line_width lw = line_thin);
/// our qt painter
boost::scoped_ptr<QPainter> qp_;
/// the working area
GuiWorkArea * qwa_;
LColor::color current_color_;
Painter::line_style current_ls_;
Painter::line_width current_lw_;
};
} // namespace frontend
} // namespace lyx
#endif // QLPAINTER_H