Initial import from FreeBSD RELENG_4:
[dragonfly.git] / contrib / groff / src / preproc / pic / pic.h
1 // -*- C++ -*-
2 /* Copyright (C) 1989, 1990, 1991, 1992, 2000, 2001
3    Free Software Foundation, Inc.
4      Written by James Clark (jjc@jclark.com)
5
6 This file is part of groff.
7
8 groff is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
11 version.
12
13 groff is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License along
19 with groff; see the file COPYING.  If not, write to the Free Software
20 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21
22 #include "lib.h"
23
24 #include <math.h>
25 #include <stdlib.h>
26 #include <errno.h>
27
28 #ifdef NEED_DECLARATION_HYPOT
29 extern "C" {
30   double hypot(double, double);
31 }
32 #endif /* NEED_DECLARATION_HYPOT */
33
34 #include "assert.h"
35 #include "cset.h"
36 #include "stringclass.h"
37 #include "errarg.h"
38 #include "error.h"
39 #include "position.h"
40 #include "text.h"
41 #include "output.h"
42
43 #ifndef M_SQRT2
44 #define M_SQRT2 1.41421356237309504880
45 #endif
46
47 #ifndef M_PI
48 #define M_PI 3.14159265358979323846
49 #endif
50
51 class input {
52   input *next;
53 public:
54   input();
55   virtual ~input();
56   virtual int get() = 0;
57   virtual int peek() = 0;
58   virtual int get_location(const char **, int *);
59   friend class input_stack;
60   friend class copy_rest_thru_input;
61 };
62
63 class file_input : public input {
64   FILE *fp;
65   const char *filename;
66   int lineno;
67   string line;
68   const char *ptr;
69   int read_line();
70 public:
71   file_input(FILE *, const char *);
72   ~file_input();
73   int get();
74   int peek();
75   int get_location(const char **, int *);
76 };
77
78 void lex_init(input *);
79 int get_location(char **, int *);
80
81 void do_copy(const char *file);
82 void parse_init();
83 void parse_cleanup();
84
85 void lex_error(const char *message,
86                const errarg &arg1 = empty_errarg,
87                const errarg &arg2 = empty_errarg,
88                const errarg &arg3 = empty_errarg);
89
90 void lex_warning(const char *message,
91                  const errarg &arg1 = empty_errarg,
92                  const errarg &arg2 = empty_errarg,
93                  const errarg &arg3 = empty_errarg);
94
95 void lex_cleanup();
96
97 extern int flyback_flag;
98 extern int command_char;
99 // zero_length_line_flag is non-zero if zero-length lines are drawn 
100 // as dots by the output device
101 extern int zero_length_line_flag;
102 extern int driver_extension_flag;
103 extern int compatible_flag;
104 extern int safer_flag;