386BSD 0.1 development
[unix-history] / usr / src / usr.bin / groff / pic / common.h
CommitLineData
e79d4cdd
WJ
1// -*- C++ -*-
2/* Copyright (C) 1989, 1990 Free Software Foundation, Inc.
3 Written by James Clark (jjc@jclark.uucp)
4
5This file is part of groff.
6
7groff is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 1, or (at your option) any later
10version.
11
12groff is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License along
18with groff; see the file LICENSE. If not, write to the Free Software
19Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20
21class common_output : public output {
22private:
23 void dash_line(const position &start, const position &end,
24 const line_type &lt, double dash_width, double gap_width,
25 double *offsetp);
26 void dash_arc(const position &cent, double rad,
27 double start_angle, double end_angle, const line_type &lt,
28 double dash_width, double gap_width, double *offsetp);
29 void dot_line(const position &start, const position &end,
30 const line_type &lt, double gap_width, double *offsetp);
31 void dot_arc(const position &cent, double rad,
32 double start_angle, double end_angle, const line_type &lt,
33 double gap_width, double *offsetp);
34protected:
35 virtual void dot(const position &, const line_type &) = 0;
36 void dashed_circle(const position &, double rad, const line_type &);
37 void dotted_circle(const position &, double rad, const line_type &);
38 void dashed_arc(const position &, const position &, const position &,
39 const line_type &);
40 void dotted_arc(const position &, const position &, const position &,
41 const line_type &);
42 virtual void solid_arc(const position &cent, double rad, double start_angle,
43 double end_angle, const line_type &lt);
44 void dashed_rounded_box(const position &, const distance &, double,
45 const line_type &);
46 void dotted_rounded_box(const position &, const distance &, double,
47 const line_type &);
48 void solid_rounded_box(const position &, const distance &, double,
49 const line_type &);
50 void filled_rounded_box(const position &, const distance &, double, double);
51public:
52 void start_picture(double sc, const position &ll, const position &ur) = 0;
53 void finish_picture() = 0;
54 void circle(const position &, double rad, const line_type &, double) = 0;
55 void text(const position &, text_piece *, int, double) = 0;
56 void line(const position &, const position *, int n, const line_type &) = 0;
57 void polygon(const position *, int n, const line_type &, double) = 0;
58 void spline(const position &, const position *, int n,
59 const line_type &) = 0;
60 void arc(const position &, const position &, const position &,
61 const line_type &) = 0;
62 void ellipse(const position &, const distance &,
63 const line_type &, double) = 0;
64 void rounded_box(const position &, const distance &, double,
65 const line_type &, double);
66};
67
68int compute_arc_center(const position &start, const position &cent,
69 const position &end, position *result);
70