2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
2006-04-23 05:48:04 +00:00
|
|
|
* gtkpapersize.c: Paper Size
|
|
|
|
* Copyright (C) 2006, Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2006-04-23 05:48:04 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "gtkprintutils.h"
|
|
|
|
|
|
|
|
gdouble
|
|
|
|
_gtk_print_convert_to_mm (gdouble len,
|
|
|
|
GtkUnit unit)
|
|
|
|
{
|
|
|
|
switch (unit)
|
|
|
|
{
|
|
|
|
case GTK_UNIT_MM:
|
|
|
|
return len;
|
|
|
|
case GTK_UNIT_INCH:
|
|
|
|
return len * MM_PER_INCH;
|
2017-10-06 19:19:42 +00:00
|
|
|
case GTK_UNIT_NONE:
|
2006-04-23 05:48:04 +00:00
|
|
|
default:
|
|
|
|
g_warning ("Unsupported unit");
|
2020-03-06 07:32:21 +00:00
|
|
|
G_GNUC_FALLTHROUGH;
|
2006-04-23 05:48:04 +00:00
|
|
|
case GTK_UNIT_POINTS:
|
|
|
|
return len * (MM_PER_INCH / POINTS_PER_INCH);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gdouble
|
|
|
|
_gtk_print_convert_from_mm (gdouble len,
|
|
|
|
GtkUnit unit)
|
|
|
|
{
|
|
|
|
switch (unit)
|
|
|
|
{
|
|
|
|
case GTK_UNIT_MM:
|
|
|
|
return len;
|
|
|
|
case GTK_UNIT_INCH:
|
|
|
|
return len / MM_PER_INCH;
|
2017-10-06 19:19:42 +00:00
|
|
|
case GTK_UNIT_NONE:
|
2006-04-23 05:48:04 +00:00
|
|
|
default:
|
|
|
|
g_warning ("Unsupported unit");
|
2020-03-06 07:32:21 +00:00
|
|
|
G_GNUC_FALLTHROUGH;
|
2006-04-23 05:48:04 +00:00
|
|
|
case GTK_UNIT_POINTS:
|
|
|
|
return len / (MM_PER_INCH / POINTS_PER_INCH);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|