Code beautification with uncrustify
[alexxy/gromacs.git] / src / gromacs / legacyheaders / writeps.h
1 /*
2  *
3  *                This source code is part of
4  *
5  *                 G   R   O   M   A   C   S
6  *
7  *          GROningen MAchine for Chemical Simulations
8  *
9  *                        VERSION 3.2.0
10  * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
11  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
12  * Copyright (c) 2001-2004, The GROMACS development team,
13  * check out http://www.gromacs.org for more information.
14
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * as published by the Free Software Foundation; either version 2
18  * of the License, or (at your option) any later version.
19  *
20  * If you want to redistribute modifications, please consider that
21  * scientific software is very special. Version control is crucial -
22  * bugs must be traceable. We will be happy to consider code for
23  * inclusion in the official distribution, but derived work must not
24  * be called official GROMACS. Details are found in the README & COPYING
25  * files - if they are missing, get the official version at www.gromacs.org.
26  *
27  * To help us fund GROMACS development, we humbly ask that you cite
28  * the papers on the package - you can find them in the top README file.
29  *
30  * For more info, check our website at http://www.gromacs.org
31  *
32  * And Hey:
33  * Gromacs Runs On Most of All Computer Systems
34  */
35
36 #ifndef _writeps_h
37 #define _writeps_h
38
39
40 #include <stdio.h>
41 #include "typedefs.h"
42
43 #ifdef __cplusplus
44 extern "C" {
45 #endif
46
47 typedef enum {
48     eXCenter, eXLeft, eXRight
49 } eXPos;
50
51 typedef enum {
52     eYCenter, eYTop,  eYBottom
53 } eYPos;
54
55 enum {
56     efontTIMES, efontTIMESITALIC, efontTIMESBOLD, efontTIMESBOLDITALIC,
57     efontHELV,  efontHELVITALIC,  efontHELVBOLD,  efontHELVBOLDITALIC,
58     efontCOUR,  efontCOURITALIC,  efontCOURBOLD,  efontCOURBOLDITALIC,
59     efontNR
60 };
61
62
63 typedef struct t_int_psdata *t_psdata;
64 /* Only use t_psdata - it is a pointer to an abstract datatype
65  * that maintains the state of the postscript currently written.
66  */
67
68 extern const char *fontnm[efontNR];
69
70 t_psdata ps_open(const char *fn, real x1, real y1, real x2, real y2);
71
72 void ps_linewidth(t_psdata ps, int lw);
73 void ps_color(t_psdata ps, real r, real g, real b);
74 void ps_rgb(t_psdata ps, t_rgb *rgb);
75
76 void ps_rgb_box(t_psdata ps, t_rgb *rgb);
77 void ps_rgb_nbox(t_psdata ps, t_rgb *rgb, real n);
78 void ps_init_rgb_box(t_psdata ps, real xbox, real ybox);
79 void ps_init_rgb_nbox(t_psdata ps, real xbox, real ybox);
80
81 void ps_lineto(t_psdata ps, real x, real y);
82 void ps_linerel(t_psdata ps, real dx, real dy);
83
84 void ps_moveto(t_psdata ps, real x, real y);
85 void ps_moverel(t_psdata ps, real dx, real dy);
86
87 void ps_line(t_psdata ps, real x1, real y1, real x2, real y2);
88
89 void ps_box(t_psdata ps, real x1, real y1, real x2, real y2);
90 void ps_fillbox(t_psdata ps, real x1, real y1, real x2, real y2);
91
92 void ps_arc(t_psdata ps, real x1, real y1, real rad, real a0, real a1);
93 void ps_fillarc(t_psdata ps, real x1, real y1, real rad, real a0, real a1);
94 void ps_arcslice(t_psdata ps, real xc, real yc,
95                  real rad1, real rad2, real a0, real a1);
96 void ps_fillarcslice(t_psdata ps, real xc, real yc,
97                      real rad1, real rad2, real a0, real a1);
98
99 void ps_circle(t_psdata ps, real x1, real y1, real rad);
100
101 void ps_font(t_psdata ps, int font, real size);
102 void ps_strfont(t_psdata ps, char *font, real size);
103
104 void ps_text(t_psdata ps, real x1, real y1, const char *str);
105 void ps_ctext(t_psdata ps, real x1, real y1, const char *str, int expos);
106
107 void ps_close(t_psdata ps);
108
109 void ps_flip(t_psdata ps, gmx_bool bPlus);
110 /* Rotate over 90 (bPlus) or -90 (!bPlus) degrees */
111
112 void ps_rotate(t_psdata ps, real angle);
113
114 void ps_translate(t_psdata ps, real x, real y);
115
116 void ps_setorigin(t_psdata ps);
117 void ps_unsetorigin(t_psdata ps);
118
119 void viewps(char *fn);
120
121 void ps_comment(t_psdata ps, const char *s);
122
123 #ifdef __cplusplus
124 }
125 #endif
126
127 #endif  /* _writeps_h */