2000-02-10 17:53:36 +00:00
|
|
|
// -*- C++ -*-
|
2002-06-12 15:01:32 +00:00
|
|
|
/**
|
|
|
|
* \file XPainter.h
|
|
|
|
* Copyright 1995-2002 the LyX Team
|
|
|
|
* Read the file COPYING
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
2002-06-12 15:01:32 +00:00
|
|
|
* \author unknown
|
|
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
|
|
*/
|
2000-02-10 17:53:36 +00:00
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
#ifndef XPAINTER_H
|
|
|
|
#define XPAINTER_H
|
2000-02-10 17:53:36 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "frontends/Painter.h"
|
2000-02-10 17:53:36 +00:00
|
|
|
#include "LString.h"
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
|
|
|
|
|
|
|
class LyXFont;
|
2002-06-18 15:44:30 +00:00
|
|
|
class XWorkArea;
|
2000-02-10 17:53:36 +00:00
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
/**
|
|
|
|
* XPainter - a painter implementation for Xlib
|
|
|
|
*/
|
|
|
|
class XPainter : public Painter {
|
2000-02-10 17:53:36 +00:00
|
|
|
public:
|
2002-06-18 15:44:30 +00:00
|
|
|
XPainter(XWorkArea &);
|
2002-06-12 15:01:32 +00:00
|
|
|
|
|
|
|
/// 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 Painter & line(
|
|
|
|
int x1, int y1,
|
|
|
|
int x2, int y2,
|
|
|
|
LColor::color = LColor::foreground,
|
|
|
|
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 Painter & lines(
|
|
|
|
int const * xp,
|
|
|
|
int const * yp,
|
|
|
|
int np,
|
|
|
|
LColor::color = LColor::foreground,
|
|
|
|
line_style = line_solid,
|
|
|
|
line_width = line_thin);
|
|
|
|
|
|
|
|
/// draw a rectangle
|
|
|
|
virtual Painter & rectangle(
|
|
|
|
int x, int y,
|
|
|
|
int w, int h,
|
|
|
|
LColor::color = LColor::foreground,
|
|
|
|
line_style = line_solid,
|
|
|
|
line_width = line_thin);
|
|
|
|
|
|
|
|
/// draw a filled rectangle
|
|
|
|
virtual Painter & fillRectangle(
|
|
|
|
int x, int y,
|
|
|
|
int w, int h,
|
|
|
|
LColor::color);
|
|
|
|
|
|
|
|
/// draw a filled (irregular) polygon
|
|
|
|
virtual Painter & fillPolygon(
|
|
|
|
int const * xp,
|
|
|
|
int const * yp,
|
|
|
|
int np,
|
|
|
|
LColor::color = LColor::foreground);
|
|
|
|
|
|
|
|
/// draw an arc
|
|
|
|
virtual Painter & arc(
|
|
|
|
int x, int y,
|
|
|
|
unsigned int w, unsigned int h,
|
|
|
|
int a1, int a2,
|
|
|
|
LColor::color = LColor::foreground);
|
|
|
|
|
|
|
|
/// draw a pixel
|
|
|
|
virtual Painter & point(
|
|
|
|
int x, int y,
|
|
|
|
LColor::color = LColor::foreground);
|
|
|
|
|
|
|
|
/// draw an image from the image cache
|
|
|
|
virtual Painter & image(int x, int y,
|
|
|
|
int w, int h,
|
2002-06-28 11:22:56 +00:00
|
|
|
grfx::Image const & image);
|
2002-06-12 15:01:32 +00:00
|
|
|
|
|
|
|
/// draw a string at position x, y (y is the baseline)
|
|
|
|
virtual Painter & text(int x, int y,
|
|
|
|
string const & str, LyXFont const & f);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
/** Draw a string at position x, y (y is the baseline)
|
2002-06-12 15:01:32 +00:00
|
|
|
* This is just for fast drawing
|
|
|
|
*/
|
|
|
|
virtual Painter & text(int x, int y,
|
|
|
|
char const * str, size_t l,
|
|
|
|
LyXFont const & f);
|
|
|
|
|
|
|
|
/// draw a char at position x, y (y is the baseline)
|
|
|
|
virtual Painter & text(int x, int y,
|
|
|
|
char c, LyXFont const & f);
|
|
|
|
|
|
|
|
/// draw a wide string at position x, y
|
|
|
|
Painter & text(int x, int y,
|
|
|
|
XChar2b const * str, size_t l,
|
|
|
|
LyXFont const & f);
|
|
|
|
|
2000-04-16 22:27:30 +00:00
|
|
|
private:
|
2002-06-12 15:01:32 +00:00
|
|
|
/// our owner who we paint upon
|
2002-06-18 15:44:30 +00:00
|
|
|
XWorkArea & owner_;
|
2000-02-10 17:53:36 +00:00
|
|
|
};
|
2000-04-16 22:27:30 +00:00
|
|
|
|
2002-06-12 15:01:32 +00:00
|
|
|
#endif // XPAINTER_H
|