GRASS GIS 7 Programmer's Manual  7.9.dev(2021)-e5379bbd7
htmlmap.h
Go to the documentation of this file.
1 
2 #include <stdio.h>
3 #include "path.h"
4 
5 #define DEF_MINBBOX 2
6 #define DEF_MINDIST 2
7 #define DEF_MAXPTS 99
8 
9 #define FILE_NAME "htmlmap"
10 
11 #define INITIAL_TEXT 1000
12 
13 #define APACHE 0 /* write output in apache/ncsa server image map format */
14 #define NCSA 0 /* write output in apache/ncsa server image map format */
15 #define CLIENT 1 /* write output in netscape client side image map format */
16 #define RAW 2 /* write output in raw format */
17 
18 struct MapPoly
19 {
20  char *url;
21  int num_pts;
22  int *x_pts;
23  int *y_pts;
24  struct MapPoly *next_poly;
25 };
26 
27 struct html_state
28 {
29  char *last_text;
31  int type;
32  FILE *output;
33  struct MapPoly *head;
34  struct MapPoly **tail;
38 };
39 
40 extern struct html_state html;
41 
42 /* Draw.c */
43 extern void HTML_Begin(void);
44 extern void HTML_Move(double, double);
45 extern void HTML_Cont(double, double);
46 extern void HTML_Close(void);
47 extern void HTML_Fill(void);
48 extern void HTML_Stroke(void);
49 
50 /* Driver.c */
51 extern const struct driver *HTML_Driver(void);
52 
53 /* Graph_Clse.c */
54 extern void HTML_Graph_close(void);
55 
56 /* Graph_Set.c */
57 extern int HTML_Graph_set(void);
58 
59 /* Box.c */
60 extern void HTML_Box(double, double, double, double);
61 
62 /* Polygon.c */
63 extern void html_polygon(const struct path *);
64 
65 /* Text.c */
66 extern void HTML_Text(const char *);
int * y_pts
Definition: htmlmap.h:23
FILE * output
Definition: htmlmap.h:32
int last_text_len
Definition: htmlmap.h:30
char * url
Definition: htmlmap.h:20
int num_pts
Definition: htmlmap.h:21
void HTML_Close(void)
void HTML_Cont(double, double)
void HTML_Graph_close(void)
Definition: graph_clse.c:32
char * last_text
Definition: htmlmap.h:29
int type
Definition: htmlmap.h:31
struct MapPoly * next_poly
Definition: htmlmap.h:24
void HTML_Text(const char *)
struct MapPoly * head
Definition: htmlmap.h:33
int MAX_POINTS
Definition: htmlmap.h:35
void HTML_Move(double, double)
struct MapPoly ** tail
Definition: htmlmap.h:34
const struct driver * HTML_Driver(void)
int MINIMUM_DIST
Definition: htmlmap.h:37
void HTML_Stroke(void)
int BBOX_MINIMUM
Definition: htmlmap.h:36
Definition: driver.h:22
Definition: path.h:16
int * x_pts
Definition: htmlmap.h:22
int HTML_Graph_set(void)
void HTML_Begin(void)
struct html_state html
void html_polygon(const struct path *)
void HTML_Fill(void)
void HTML_Box(double, double, double, double)
Definition: htmldriver/box.c:3