summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipdfm/pdfdev.h
blob: 050584ad4d3a1496e820749e25d3d8c163193117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*  $Header$

    This is dvipdfm, a DVI to PDF translator.
    Copyright (C) 1998, 1999 by Mark A. Wicks

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    
    The author may be contacted via the e-mail address

	mwicks@kettering.edu
*/

	
#ifndef PDFDEV_H
#define PDFDEV_H

#include "numbers.h"
#include "pdfobj.h"

typedef signed long spt_t;

extern void dev_init(double scale, double x_offset, double y_offset);
extern void dev_set_verbose (void);
extern double pdf_dev_scale (void);
extern void dev_close (void);
extern void dev_read_mapfile (char *filename);
extern int dev_locate_font (const char *name, spt_t ptsize);
extern int dev_font_tfm (int dev_font_id);
extern spt_t dev_font_sptsize (int dev_font_id);
extern void dev_close_all_fonts (void);
extern void dev_bop (void);
extern void dev_eop (void);
extern void dev_reselect_font (void);
extern void dev_set_string (spt_t xpos, spt_t ypos, unsigned char *ch,
			    int len, spt_t width, int font_id);
extern void dev_set_page_size (double width, double height);
extern void dev_rule (spt_t xpos, spt_t ypos, spt_t width, spt_t height);
extern double dev_phys_x (void);
extern double dev_phys_y (void);
extern void dev_begin_rgb_color (double r, double g, double b);
extern void dev_set_def_rgb_color (double r, double g, double b);
extern void dev_begin_cmyk_color (double c, double m, double y, double k);
extern void dev_set_def_cmyk_color (double c, double m, double y, double k);
extern void dev_begin_gray (double value);
extern void dev_set_def_gray (double value);
extern void dev_begin_named_color (char *s);
extern void dev_set_def_named_color (char *s);
extern void dev_end_color (void);
extern void dev_do_color(void);
extern void dev_bg_rgb_color (double r, double g, double b);
extern void dev_bg_cmyk_color (double c, double m, double y, double k);
extern void dev_bg_gray (double value);
extern void dev_bg_named_color (char *s);
extern void dev_begin_xform (double xscale, double yscale, double
			     rotate, double x_user, double y_user);
extern void dev_end_xform (void);
extern int  dev_xform_depth (void);
extern void dev_close_all_xforms (int depth);

extern void dev_add_comment (char *comment);
extern void dev_do_special (void *buffer, UNSIGNED_QUAD size,
			    spt_t x_user, spt_t y_user);
extern double dev_page_height(void);
extern double dev_page_width(void);
/* graphics_mode() would normally be local, but it is needed by the
   MetaPost inclusion routine */
extern void graphics_mode (void);
extern void dev_stack_depth (unsigned int depth);
extern void dev_tag_depth (void);
extern void dev_set_box (void);
extern void dev_untag_depth (void);
extern void dev_expand_box (spt_t width, spt_t height, spt_t depth);
extern void dev_link_annot (unsigned char flag);
#endif /* PDFDEV_H */