]> Pileus Git - ~andy/gtk/blob - gtk/gtkprintutils.c
8234eeffcfb7700987c37aba1eaa87b63fed6848
[~andy/gtk] / gtk / gtkprintutils.c
1 /* GTK - The GTK+ Toolkit
2  * gtkpapersize.c: Paper Size
3  * Copyright (C) 2006, Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #include "config.h"
22 #include "gtkprintutils.h"
23 #include "gtkalias.h"
24
25 gdouble
26 _gtk_print_convert_to_mm (gdouble len, 
27                           GtkUnit unit)
28 {
29   switch (unit)
30     {
31     case GTK_UNIT_MM:
32       return len;
33     case GTK_UNIT_INCH:
34       return len * MM_PER_INCH;
35     default:
36     case GTK_UNIT_PIXEL:
37       g_warning ("Unsupported unit");
38       /* Fall through */
39     case GTK_UNIT_POINTS:
40       return len * (MM_PER_INCH / POINTS_PER_INCH);
41       break;
42     }
43 }
44
45 gdouble
46 _gtk_print_convert_from_mm (gdouble len, 
47                             GtkUnit unit)
48 {
49   switch (unit)
50     {
51     case GTK_UNIT_MM:
52       return len;
53     case GTK_UNIT_INCH:
54       return len / MM_PER_INCH;
55     default:
56     case GTK_UNIT_PIXEL:
57       g_warning ("Unsupported unit");
58       /* Fall through */
59     case GTK_UNIT_POINTS:
60       return len / (MM_PER_INCH / POINTS_PER_INCH);
61       break;
62     }
63 }