~ubuntu-branches/debian/sid/genius/sid

« back to all changes in this revision

Viewing changes to gtkextra/gtkplotprint.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2006-08-21 12:57:45 UTC
  • Revision ID: james.westby@ubuntu.com-20060821125745-sl9ks8v7fq324bdf
Tags: upstream-0.7.6.1
ImportĀ upstreamĀ versionĀ 0.7.6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* gtkplotpc - gtkplot printing functions
 
2
 * Copyright 1999-2001  Adrian E. Feiguin <feiguin@ifir.edu.ar>
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Library General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Library General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Library General Public
 
15
 * License along with this library; if not, write to the
 
16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
17
 * Boston, MA 02111-1307, USA.
 
18
 */
 
19
 
 
20
#ifndef __GTK_PLOT_PRINT_H__
 
21
#define __GTK_PLOT_PRINT_H__
 
22
 
 
23
 
 
24
#ifdef __cplusplus
 
25
extern "C" {
 
26
#endif /* __cplusplus */
 
27
 
 
28
gboolean
 
29
gtk_plot_export_ps                              (GtkPlot *plot,
 
30
                                                 char *file_name,
 
31
                                                 GtkPlotPageOrientation orient,
 
32
                                                 gboolean epsflag,
 
33
                                                 GtkPlotPageSize page_size);
 
34
gboolean
 
35
gtk_plot_export_ps_with_size                    (GtkPlot *plot,
 
36
                                                 char *file_name,
 
37
                                                 GtkPlotPageOrientation orient,
 
38
                                                 gboolean epsflag,
 
39
                                                 GtkPlotUnits units,
 
40
                                                 gint width,
 
41
                                                 gint height);
 
42
gboolean
 
43
gtk_plot_canvas_export_ps                       (GtkPlotCanvas *canvas,
 
44
                                                 char *file_name,
 
45
                                                 GtkPlotPageOrientation orient,
 
46
                                                 gboolean epsflag,
 
47
                                                 GtkPlotPageSize page_size);
 
48
 
 
49
gboolean
 
50
gtk_plot_canvas_export_ps_with_size             (GtkPlotCanvas *canvas,
 
51
                                                 char *file_name,
 
52
                                                 GtkPlotPageOrientation orient,
 
53
                                                 gboolean epsflag,
 
54
                                                 GtkPlotUnits units,
 
55
                                                 gint width,
 
56
                                                 gint height);
 
57
 
 
58
 
 
59
#ifdef __cplusplus
 
60
}
 
61
#endif /* __cplusplus */
 
62
 
 
63
 
 
64
#endif /* __GTK_PLOT_PRINT_H__ */
 
65