]> Pileus Git - ~andy/gtk/blob - gtk/gtkprintutils.c
tests: Add simple test for image clipboard
[~andy/gtk] / gtk / gtkprintutils.c
1 /* GTK - The GIMP 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
24 gdouble
25 _gtk_print_convert_to_mm (gdouble len, 
26                           GtkUnit unit)
27 {
28   switch (unit)
29     {
30     case GTK_UNIT_MM:
31       return len;
32     case GTK_UNIT_INCH:
33       return len * MM_PER_INCH;
34     default:
35     case GTK_UNIT_PIXEL:
36       g_warning ("Unsupported unit");
37       /* Fall through */
38     case GTK_UNIT_POINTS:
39       return len * (MM_PER_INCH / POINTS_PER_INCH);
40       break;
41     }
42 }
43
44 gdouble
45 _gtk_print_convert_from_mm (gdouble len, 
46                             GtkUnit unit)
47 {
48   switch (unit)
49     {
50     case GTK_UNIT_MM:
51       return len;
52     case GTK_UNIT_INCH:
53       return len / MM_PER_INCH;
54     default:
55     case GTK_UNIT_PIXEL:
56       g_warning ("Unsupported unit");
57       /* Fall through */
58     case GTK_UNIT_POINTS:
59       return len / (MM_PER_INCH / POINTS_PER_INCH);
60       break;
61     }
62 }