GRASS 8 Programmer's Manual 8.6.0dev(2026)-56a9afeb9f
Loading...
Searching...
No Matches
htmldriver/driver.c
Go to the documentation of this file.
1/****************************************************************************
2 *
3 * MODULE: HTMLMAP
4 * AUTHOR(S): Glynn Clements <glynn gclements.plus.com> (original
5 * contributor)
6 *
7 * PURPOSE: driver to allow HTML image maps
8 * COPYRIGHT: (C) 2007-2007 by the GRASS Development Team
9 *
10 * This program is free software under the GNU General Public
11 * License (>=v2). Read the file COPYING that comes with GRASS
12 * for details.
13 *
14 *****************************************************************************/
15
16#include <stdio.h>
17#include "driver.h"
18#include "htmlmap.h"
19
20const struct driver *HTML_Driver(void)
21{
22 static struct driver drv;
23 static int initialized;
24
25 if (initialized)
26 return &drv;
27
28 drv.name = "html";
29 drv.Box = HTML_Box;
30 drv.Erase = NULL;
31 drv.Graph_set = HTML_Graph_set;
32 drv.Graph_close = HTML_Graph_close;
33 drv.Graph_get_file = NULL;
34 drv.Line_width = NULL;
35 drv.Set_window = NULL;
36 drv.Begin_raster = NULL;
37 drv.Raster = NULL;
38 drv.End_raster = NULL;
39 drv.Begin = HTML_Begin;
40 drv.Move = HTML_Move;
41 drv.Cont = HTML_Cont;
42 drv.Close = HTML_Close;
43 drv.Stroke = HTML_Stroke;
44 drv.Fill = HTML_Fill;
45 drv.Point = NULL;
46 drv.Color = NULL;
47 drv.Bitmap = NULL;
48 drv.Text = HTML_Text;
49 drv.Text_box = NULL;
50 drv.Set_font = NULL;
51 drv.Font_list = NULL;
52 drv.Font_info = NULL;
53
54 initialized = 1;
55
56 return &drv;
57}
#define NULL
Definition ccmath.h:32
AMI_err name(char **stream_name)
Definition ami_stream.h:426
void HTML_Graph_close(void)
Definition graph_clse.c:28
void HTML_Box(double x1, double y1, double x2, double y2)
void HTML_Close(void)
void HTML_Begin(void)
void HTML_Stroke(void)
void HTML_Move(double x, double y)
void HTML_Cont(double x, double y)
void HTML_Fill(void)
const struct driver * HTML_Driver(void)
int HTML_Graph_set(void)
void HTML_Text(const char *)