2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
2006-04-21 15:09:32 +00:00
|
|
|
* gtkpapersize.c: Paper Size
|
|
|
|
* Copyright (C) 2006, Red Hat, Inc.
|
2007-05-01 22:26:00 +00:00
|
|
|
* Copyright © 2006, 2007 Christian Persch
|
2006-04-21 15:09:32 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <locale.h>
|
|
|
|
#if defined(HAVE__NL_PAPER_HEIGHT) && defined(HAVE__NL_PAPER_WIDTH)
|
|
|
|
#include <langinfo.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "gtkpapersize.h"
|
2006-04-23 05:48:04 +00:00
|
|
|
#include "gtkprintutils.h"
|
2007-04-29 06:23:58 +00:00
|
|
|
#include "gtkprintoperation.h" /* for GtkPrintError */
|
2006-04-23 06:26:10 +00:00
|
|
|
#include "gtkintl.h"
|
2006-04-21 15:09:32 +00:00
|
|
|
|
|
|
|
#include "paper_names_offsets.c"
|
|
|
|
|
2010-09-27 01:49:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:gtkpapersize
|
|
|
|
* @Short_description: Support for named paper sizes
|
|
|
|
* @Title: GtkPaperSize
|
|
|
|
* @See_also:#GtkPageSetup
|
|
|
|
*
|
|
|
|
* GtkPaperSize handles paper sizes. It uses the standard called
|
|
|
|
* <ulink url="http://www.pwg.org/standards.html">"PWG 5101.1-2002 PWG: Standard for Media Standardized Names"</ulink>
|
|
|
|
* to name the paper sizes (and to get the data for the page sizes).
|
|
|
|
* In addition to standard paper sizes, GtkPaperSize allows to
|
|
|
|
* construct custom paper sizes with arbitrary dimensions.
|
|
|
|
*
|
|
|
|
* The #GtkPaperSize object stores not only the dimensions (width
|
|
|
|
* and height) of a paper size and its name, it also provides
|
|
|
|
* default <link linkend="print-margins">print margins</link>.
|
|
|
|
*
|
|
|
|
* Printing support has been added in GTK+ 2.10.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
struct _GtkPaperSize
|
|
|
|
{
|
|
|
|
const PaperInfo *info;
|
|
|
|
|
|
|
|
/* If these are not set we fall back to info */
|
2006-04-23 06:26:10 +00:00
|
|
|
gchar *name;
|
|
|
|
gchar *display_name;
|
|
|
|
gchar *ppd_name;
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
gdouble width, height; /* Stored in mm */
|
2006-04-21 15:09:32 +00:00
|
|
|
gboolean is_custom;
|
|
|
|
};
|
|
|
|
|
2010-04-27 11:31:23 +00:00
|
|
|
G_DEFINE_BOXED_TYPE (GtkPaperSize, gtk_paper_size,
|
|
|
|
gtk_paper_size_copy,
|
|
|
|
gtk_paper_size_free)
|
2006-04-21 15:09:32 +00:00
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
static const PaperInfo *
|
|
|
|
lookup_paper_info (const gchar *name)
|
2006-04-21 15:09:32 +00:00
|
|
|
{
|
|
|
|
int lower = 0;
|
|
|
|
int upper = G_N_ELEMENTS (standard_names_offsets) - 1;
|
|
|
|
int mid;
|
|
|
|
int cmp;
|
|
|
|
|
2011-01-13 03:30:08 +00:00
|
|
|
do
|
2006-04-21 15:09:32 +00:00
|
|
|
{
|
|
|
|
mid = (lower + upper) / 2;
|
|
|
|
cmp = strcmp (name, paper_names + standard_names_offsets[mid].name);
|
|
|
|
if (cmp < 0)
|
|
|
|
upper = mid - 1;
|
|
|
|
else if (cmp > 0)
|
|
|
|
lower = mid + 1;
|
|
|
|
else
|
2011-01-13 03:30:08 +00:00
|
|
|
return &standard_names_offsets[mid];
|
2006-04-21 15:09:32 +00:00
|
|
|
}
|
|
|
|
while (lower <= upper);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2006-04-23 06:26:10 +00:00
|
|
|
parse_media_size (const gchar *size,
|
2011-01-13 03:30:08 +00:00
|
|
|
gdouble *width_mm,
|
|
|
|
gdouble *height_mm)
|
2006-04-21 15:09:32 +00:00
|
|
|
{
|
|
|
|
const char *p;
|
|
|
|
char *e;
|
|
|
|
double short_dim, long_dim;
|
|
|
|
|
|
|
|
p = size;
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
short_dim = g_ascii_strtod (p, &e);
|
|
|
|
|
|
|
|
if (p == e || *e != 'x')
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
p = e + 1; /* Skip x */
|
|
|
|
|
|
|
|
long_dim = g_ascii_strtod (p, &e);
|
|
|
|
|
|
|
|
if (p == e)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
p = e;
|
|
|
|
|
|
|
|
if (strcmp (p, "in") == 0)
|
|
|
|
{
|
|
|
|
short_dim = short_dim * MM_PER_INCH;
|
|
|
|
long_dim = long_dim * MM_PER_INCH;
|
|
|
|
}
|
|
|
|
else if (strcmp (p, "mm") != 0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (width_mm)
|
|
|
|
*width_mm = short_dim;
|
|
|
|
if (height_mm)
|
|
|
|
*height_mm = long_dim;
|
2011-01-13 03:30:08 +00:00
|
|
|
|
|
|
|
return TRUE;
|
2006-04-21 15:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2006-04-23 06:26:10 +00:00
|
|
|
parse_full_media_size_name (const gchar *full_name,
|
2011-01-13 03:30:08 +00:00
|
|
|
gchar **name,
|
|
|
|
gdouble *width_mm,
|
|
|
|
gdouble *height_mm)
|
2006-04-21 15:09:32 +00:00
|
|
|
{
|
|
|
|
const char *p;
|
|
|
|
const char *end_of_name;
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
/* From the spec:
|
|
|
|
media-size-self-describing-name =
|
|
|
|
( class-in "_" size-name "_" short-dim "x" long-dim "in" ) |
|
|
|
|
( class-mm "_" size-name "_" short-dim "x" long-dim "mm" )
|
|
|
|
class-in = "custom" | "na" | "asme" | "roc" | "oe"
|
|
|
|
class-mm = "custom" | "iso" | "jis" | "jpn" | "prc" | "om"
|
|
|
|
size-name = ( lowalpha | digit ) *( lowalpha | digit | "-" )
|
|
|
|
short-dim = dim
|
|
|
|
long-dim = dim
|
|
|
|
dim = integer-part [fraction-part] | "0" fraction-part
|
|
|
|
integer-part = non-zero-digit *digit
|
|
|
|
fraction-part = "." *digit non-zero-digit
|
|
|
|
lowalpha = "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" |
|
|
|
|
"j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" |
|
|
|
|
"s" | "t" | "u" | "v" | "w" | "x" | "y" | "z"
|
|
|
|
non-zero-digit = "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"
|
|
|
|
digit = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9"
|
|
|
|
*/
|
|
|
|
|
|
|
|
p = strchr (full_name, '_');
|
|
|
|
if (p == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
p++; /* Skip _ */
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
p = strchr (p, '_');
|
|
|
|
if (p == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
end_of_name = p;
|
|
|
|
|
|
|
|
p++; /* Skip _ */
|
|
|
|
|
|
|
|
if (!parse_media_size (p, width_mm, height_mm))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (name)
|
|
|
|
*name = g_strndup (full_name, end_of_name - full_name);
|
2011-01-13 03:30:08 +00:00
|
|
|
|
|
|
|
return TRUE;
|
2006-04-21 15:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GtkPaperSize *
|
|
|
|
gtk_paper_size_new_from_info (const PaperInfo *info)
|
|
|
|
{
|
|
|
|
GtkPaperSize *size;
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2007-05-01 22:26:00 +00:00
|
|
|
size = g_slice_new0 (GtkPaperSize);
|
2006-04-21 15:09:32 +00:00
|
|
|
size->info = info;
|
|
|
|
size->width = info->width;
|
|
|
|
size->height = info->height;
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
/**
|
|
|
|
* gtk_paper_size_new:
|
2009-12-10 10:23:40 +00:00
|
|
|
* @name: (allow-none): a paper size name, or %NULL
|
|
|
|
*
|
|
|
|
* Creates a new #GtkPaperSize object by parsing a
|
2007-04-30 00:19:19 +00:00
|
|
|
* <ulink url="ftp://ftp.pwg.org/pub/pwg/candidates/cs-pwgmsn10-20020226-5101.1.pdf">PWG 5101.1-2002</ulink>
|
2009-12-10 10:23:40 +00:00
|
|
|
* paper name.
|
2006-04-23 06:26:10 +00:00
|
|
|
*
|
|
|
|
* If @name is %NULL, the default paper size is returned,
|
|
|
|
* see gtk_paper_size_get_default().
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Return value: a new #GtkPaperSize, use gtk_paper_size_free()
|
|
|
|
* to free it
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
2006-04-21 15:09:32 +00:00
|
|
|
GtkPaperSize *
|
2006-04-23 06:26:10 +00:00
|
|
|
gtk_paper_size_new (const gchar *name)
|
2006-04-21 15:09:32 +00:00
|
|
|
{
|
|
|
|
GtkPaperSize *size;
|
|
|
|
char *short_name;
|
|
|
|
double width, height;
|
2006-04-23 06:26:10 +00:00
|
|
|
const PaperInfo *info;
|
2006-04-21 15:09:32 +00:00
|
|
|
|
|
|
|
if (name == NULL)
|
|
|
|
name = gtk_paper_size_get_default ();
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
if (parse_full_media_size_name (name, &short_name, &width, &height))
|
|
|
|
{
|
2011-01-13 03:30:08 +00:00
|
|
|
info = lookup_paper_info (short_name);
|
|
|
|
if (info != NULL && info->width == width && info->height == height)
|
|
|
|
{
|
|
|
|
size = gtk_paper_size_new_from_info (info);
|
|
|
|
g_free (short_name);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
size = g_slice_new0 (GtkPaperSize);
|
|
|
|
|
|
|
|
size->width = width;
|
|
|
|
size->height = height;
|
|
|
|
size->name = short_name;
|
|
|
|
size->display_name = g_strdup (short_name);
|
|
|
|
if (strncmp (short_name, "custom", 6) == 0)
|
|
|
|
size->is_custom = TRUE;
|
|
|
|
}
|
2006-04-21 15:09:32 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
info = lookup_paper_info (name);
|
|
|
|
if (info != NULL)
|
2011-01-13 03:30:08 +00:00
|
|
|
size = gtk_paper_size_new_from_info (info);
|
2006-04-21 15:09:32 +00:00
|
|
|
else
|
2011-01-13 03:30:08 +00:00
|
|
|
{
|
|
|
|
g_warning ("Unknown paper size %s\n", name);
|
|
|
|
size = g_slice_new0 (GtkPaperSize);
|
|
|
|
size->name = g_strdup (name);
|
|
|
|
size->display_name = g_strdup (name);
|
|
|
|
/* Default to A4 size */
|
|
|
|
size->width = 210;
|
|
|
|
size->height = 297;
|
|
|
|
}
|
2006-04-21 15:09:32 +00:00
|
|
|
}
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
/**
|
|
|
|
* gtk_paper_size_new_from_ppd:
|
|
|
|
* @ppd_name: a PPD paper name
|
|
|
|
* @ppd_display_name: the corresponding human-readable name
|
|
|
|
* @width: the paper width, in points
|
|
|
|
* @height: the paper height in points
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
|
|
|
* Creates a new #GtkPaperSize object by using
|
|
|
|
* PPD information.
|
|
|
|
*
|
|
|
|
* If @ppd_name is not a recognized PPD paper name,
|
|
|
|
* @ppd_display_name, @width and @height are used to
|
2006-04-23 06:26:10 +00:00
|
|
|
* construct a custom #GtkPaperSize object.
|
|
|
|
*
|
|
|
|
* Return value: a new #GtkPaperSize, use gtk_paper_size_free()
|
|
|
|
* to free it
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
2006-04-21 15:09:32 +00:00
|
|
|
GtkPaperSize *
|
2006-04-23 06:26:10 +00:00
|
|
|
gtk_paper_size_new_from_ppd (const gchar *ppd_name,
|
2011-01-13 03:30:08 +00:00
|
|
|
const gchar *ppd_display_name,
|
|
|
|
gdouble width,
|
|
|
|
gdouble height)
|
2006-04-21 15:09:32 +00:00
|
|
|
{
|
|
|
|
char *name;
|
|
|
|
const char *lookup_ppd_name;
|
|
|
|
char *freeme;
|
|
|
|
GtkPaperSize *size;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
lookup_ppd_name = ppd_name;
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
freeme = NULL;
|
|
|
|
/* Strip out Traverse suffix in matching. */
|
|
|
|
if (g_str_has_suffix (ppd_name, ".Transverse"))
|
|
|
|
{
|
|
|
|
lookup_ppd_name = freeme =
|
2011-01-13 03:30:08 +00:00
|
|
|
g_strndup (ppd_name, strlen (ppd_name) - strlen (".Transverse"));
|
2006-04-21 15:09:32 +00:00
|
|
|
}
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
for (i = 0; i < G_N_ELEMENTS(standard_names_offsets); i++)
|
|
|
|
{
|
|
|
|
if (standard_names_offsets[i].ppd_name != -1 &&
|
2011-01-13 03:30:08 +00:00
|
|
|
strcmp (paper_names + standard_names_offsets[i].ppd_name, lookup_ppd_name) == 0)
|
|
|
|
{
|
|
|
|
size = gtk_paper_size_new_from_info (&standard_names_offsets[i]);
|
|
|
|
goto out;
|
|
|
|
}
|
2006-04-21 15:09:32 +00:00
|
|
|
}
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
for (i = 0; i < G_N_ELEMENTS(extra_ppd_names_offsets); i++)
|
|
|
|
{
|
|
|
|
if (strcmp (paper_names + extra_ppd_names_offsets[i].ppd_name, lookup_ppd_name) == 0)
|
2011-01-13 03:30:08 +00:00
|
|
|
{
|
|
|
|
size = gtk_paper_size_new (paper_names + extra_ppd_names_offsets[i].standard_name);
|
|
|
|
goto out;
|
|
|
|
}
|
2006-04-21 15:09:32 +00:00
|
|
|
}
|
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
name = g_strconcat ("ppd_", ppd_name, NULL);
|
2006-04-21 15:09:32 +00:00
|
|
|
size = gtk_paper_size_new_custom (name, ppd_display_name, width, height, GTK_UNIT_POINTS);
|
|
|
|
g_free (name);
|
|
|
|
|
|
|
|
out:
|
|
|
|
|
|
|
|
if (size->info == NULL ||
|
|
|
|
size->info->ppd_name == -1 ||
|
|
|
|
strcmp (paper_names + size->info->ppd_name, ppd_name) != 0)
|
|
|
|
size->ppd_name = g_strdup (ppd_name);
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
g_free (freeme);
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
/**
|
|
|
|
* gtk_paper_size_new_custom:
|
2011-01-13 03:30:08 +00:00
|
|
|
* @name: the paper name
|
2006-04-23 06:26:10 +00:00
|
|
|
* @display_name: the human-readable name
|
|
|
|
* @width: the paper width, in units of @unit
|
|
|
|
* @height: the paper height, in units of @unit
|
|
|
|
* @unit: the unit for @width and @height
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Creates a new #GtkPaperSize object with the
|
|
|
|
* given parameters.
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Return value: a new #GtkPaperSize object, use gtk_paper_size_free()
|
|
|
|
* to free it
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
2006-04-21 15:09:32 +00:00
|
|
|
GtkPaperSize *
|
2011-01-13 03:30:08 +00:00
|
|
|
gtk_paper_size_new_custom (const gchar *name,
|
|
|
|
const gchar *display_name,
|
|
|
|
gdouble width,
|
|
|
|
gdouble height,
|
|
|
|
GtkUnit unit)
|
2006-04-21 15:09:32 +00:00
|
|
|
{
|
|
|
|
GtkPaperSize *size;
|
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
|
|
|
g_return_val_if_fail (unit != GTK_UNIT_PIXEL, NULL);
|
|
|
|
|
2007-05-01 22:26:00 +00:00
|
|
|
size = g_slice_new0 (GtkPaperSize);
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
size->name = g_strdup (name);
|
|
|
|
size->display_name = g_strdup (display_name);
|
|
|
|
size->is_custom = TRUE;
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-23 05:48:04 +00:00
|
|
|
size->width = _gtk_print_convert_to_mm (width, unit);
|
|
|
|
size->height = _gtk_print_convert_to_mm (height, unit);
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
/**
|
|
|
|
* gtk_paper_size_copy:
|
|
|
|
* @other: a #GtkPaperSize
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Copies an existing #GtkPaperSize.
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Return value: a copy of @other
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
2006-04-21 15:09:32 +00:00
|
|
|
GtkPaperSize *
|
|
|
|
gtk_paper_size_copy (GtkPaperSize *other)
|
|
|
|
{
|
|
|
|
GtkPaperSize *size;
|
|
|
|
|
2007-05-01 22:26:00 +00:00
|
|
|
size = g_slice_new0 (GtkPaperSize);
|
2006-04-21 15:09:32 +00:00
|
|
|
|
|
|
|
size->info = other->info;
|
|
|
|
if (other->name)
|
|
|
|
size->name = g_strdup (other->name);
|
|
|
|
if (other->display_name)
|
|
|
|
size->display_name = g_strdup (other->display_name);
|
|
|
|
if (other->ppd_name)
|
|
|
|
size->ppd_name = g_strdup (other->ppd_name);
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
size->width = other->width;
|
|
|
|
size->height = other->height;
|
|
|
|
size->is_custom = other->is_custom;
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
/**
|
|
|
|
* gtk_paper_size_free:
|
|
|
|
* @size: a #GtkPaperSize
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Free the given #GtkPaperSize object.
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
2006-04-21 15:09:32 +00:00
|
|
|
void
|
|
|
|
gtk_paper_size_free (GtkPaperSize *size)
|
|
|
|
{
|
|
|
|
g_free (size->name);
|
|
|
|
g_free (size->display_name);
|
|
|
|
g_free (size->ppd_name);
|
2007-05-01 22:26:00 +00:00
|
|
|
|
|
|
|
g_slice_free (GtkPaperSize, size);
|
2006-04-21 15:09:32 +00:00
|
|
|
}
|
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
/**
|
|
|
|
* gtk_paper_size_is_equal:
|
|
|
|
* @size1: a #GtkPaperSize object
|
2006-07-10 16:36:10 +00:00
|
|
|
* @size2: another #GtkPaperSize object
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Compares two #GtkPaperSize objects.
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
|
|
|
* Return value: %TRUE, if @size1 and @size2
|
2006-04-23 06:26:10 +00:00
|
|
|
* represent the same paper size
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
2006-04-21 15:09:32 +00:00
|
|
|
gboolean
|
|
|
|
gtk_paper_size_is_equal (GtkPaperSize *size1,
|
2011-01-13 03:30:08 +00:00
|
|
|
GtkPaperSize *size2)
|
2006-04-21 15:09:32 +00:00
|
|
|
{
|
|
|
|
if (size1->info != NULL && size2->info != NULL)
|
|
|
|
return size1->info == size2->info;
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
return strcmp (gtk_paper_size_get_name (size1),
|
2011-01-13 03:30:08 +00:00
|
|
|
gtk_paper_size_get_name (size2)) == 0;
|
2006-04-21 15:09:32 +00:00
|
|
|
}
|
2006-04-23 06:26:10 +00:00
|
|
|
|
2007-04-30 06:03:01 +00:00
|
|
|
GList * _gtk_load_custom_papers (void);
|
|
|
|
|
2007-04-29 04:50:28 +00:00
|
|
|
/**
|
2007-04-30 06:03:01 +00:00
|
|
|
* gtk_paper_size_get_paper_sizes:
|
|
|
|
* @include_custom: whether to include custom paper sizes
|
|
|
|
* as defined in the page setup dialog
|
2007-04-29 04:50:28 +00:00
|
|
|
*
|
2007-04-30 06:03:01 +00:00
|
|
|
* Creates a list of known paper sizes.
|
2009-12-10 10:23:40 +00:00
|
|
|
*
|
|
|
|
* Return value: (element-type GtkPaperSize) (transfer full): a newly allocated list of newly
|
2007-04-29 04:50:28 +00:00
|
|
|
* allocated #GtkPaperSize objects
|
|
|
|
*
|
|
|
|
* Since: 2.12
|
|
|
|
*/
|
|
|
|
GList *
|
2007-04-30 06:03:01 +00:00
|
|
|
gtk_paper_size_get_paper_sizes (gboolean include_custom)
|
2007-04-29 04:50:28 +00:00
|
|
|
{
|
|
|
|
GList *list = NULL;
|
|
|
|
guint i;
|
2011-01-13 03:30:08 +00:00
|
|
|
#ifdef G_OS_UNIX /* _gtk_load_custom_papers() only on Unix so far */
|
2007-05-01 22:31:29 +00:00
|
|
|
if (include_custom)
|
|
|
|
{
|
|
|
|
GList *page_setups, *l;
|
|
|
|
|
|
|
|
page_setups = _gtk_load_custom_papers ();
|
|
|
|
for (l = page_setups; l != NULL; l = l->next)
|
|
|
|
{
|
|
|
|
GtkPageSetup *setup = (GtkPageSetup *) l->data;
|
|
|
|
GtkPaperSize *size;
|
|
|
|
|
|
|
|
size = gtk_page_setup_get_paper_size (setup);
|
|
|
|
list = g_list_prepend (list, gtk_paper_size_copy (size));
|
|
|
|
}
|
|
|
|
|
|
|
|
g_list_foreach (page_setups, (GFunc) g_object_unref, NULL);
|
|
|
|
g_list_free (page_setups);
|
|
|
|
}
|
2007-04-30 07:42:12 +00:00
|
|
|
#endif
|
2007-04-29 04:50:28 +00:00
|
|
|
for (i = 0; i < G_N_ELEMENTS (standard_names_offsets); ++i)
|
|
|
|
{
|
|
|
|
GtkPaperSize *size;
|
|
|
|
|
|
|
|
size = gtk_paper_size_new_from_info (&standard_names_offsets[i]);
|
|
|
|
list = g_list_prepend (list, size);
|
|
|
|
}
|
|
|
|
|
2007-04-30 06:03:01 +00:00
|
|
|
return g_list_reverse (list);
|
2007-04-29 04:50:28 +00:00
|
|
|
}
|
|
|
|
|
2007-04-30 06:03:01 +00:00
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
/**
|
|
|
|
* gtk_paper_size_get_name:
|
|
|
|
* @size: a #GtkPaperSize object
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Gets the name of the #GtkPaperSize.
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Return value: the name of @size
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
|
|
|
G_CONST_RETURN gchar *
|
2006-04-21 15:09:32 +00:00
|
|
|
gtk_paper_size_get_name (GtkPaperSize *size)
|
|
|
|
{
|
|
|
|
if (size->name)
|
|
|
|
return size->name;
|
|
|
|
g_assert (size->info != NULL);
|
|
|
|
return paper_names + size->info->name;
|
|
|
|
}
|
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
/**
|
|
|
|
* gtk_paper_size_get_display_name:
|
|
|
|
* @size: a #GtkPaperSize object
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Gets the human-readable name of the #GtkPaperSize.
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Return value: the human-readable name of @size
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
|
|
|
G_CONST_RETURN gchar *
|
2006-04-21 15:09:32 +00:00
|
|
|
gtk_paper_size_get_display_name (GtkPaperSize *size)
|
|
|
|
{
|
2006-04-25 03:44:57 +00:00
|
|
|
const gchar *display_name;
|
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
if (size->display_name)
|
|
|
|
return size->display_name;
|
2006-04-25 03:44:57 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
g_assert (size->info != NULL);
|
2006-04-25 03:44:57 +00:00
|
|
|
|
|
|
|
display_name = paper_names + size->info->display_name;
|
2008-10-27 03:07:16 +00:00
|
|
|
return g_dpgettext2 (GETTEXT_PACKAGE, "paper size", display_name);
|
2006-04-21 15:09:32 +00:00
|
|
|
}
|
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
/**
|
|
|
|
* gtk_paper_size_get_ppd_name:
|
|
|
|
* @size: a #GtkPaperSize object
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Gets the PPD name of the #GtkPaperSize, which
|
|
|
|
* may be %NULL.
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Return value: the PPD name of @size
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
|
|
|
G_CONST_RETURN gchar *
|
2006-04-21 15:09:32 +00:00
|
|
|
gtk_paper_size_get_ppd_name (GtkPaperSize *size)
|
|
|
|
{
|
|
|
|
if (size->ppd_name)
|
|
|
|
return size->ppd_name;
|
|
|
|
if (size->info)
|
|
|
|
return paper_names + size->info->ppd_name;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
/**
|
|
|
|
* gtk_paper_size_get_width:
|
|
|
|
* @size: a #GtkPaperSize object
|
|
|
|
* @unit: the unit for the return value
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
|
|
|
* Gets the paper width of the #GtkPaperSize, in
|
2006-04-23 06:26:10 +00:00
|
|
|
* units of @unit.
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
|
|
|
* Return value: the paper width
|
2006-04-23 06:26:10 +00:00
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
|
|
|
gdouble
|
2011-01-13 03:30:08 +00:00
|
|
|
gtk_paper_size_get_width (GtkPaperSize *size,
|
|
|
|
GtkUnit unit)
|
2006-04-21 15:09:32 +00:00
|
|
|
{
|
2006-04-23 05:48:04 +00:00
|
|
|
return _gtk_print_convert_from_mm (size->width, unit);
|
2006-04-21 15:09:32 +00:00
|
|
|
}
|
2006-04-23 06:26:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_paper_size_get_height:
|
|
|
|
* @size: a #GtkPaperSize object
|
|
|
|
* @unit: the unit for the return value
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
|
|
|
* Gets the paper height of the #GtkPaperSize, in
|
2006-04-23 06:26:10 +00:00
|
|
|
* units of @unit.
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
|
|
|
* Return value: the paper height
|
2006-04-23 06:26:10 +00:00
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
|
|
|
gdouble
|
2011-01-13 03:30:08 +00:00
|
|
|
gtk_paper_size_get_height (GtkPaperSize *size,
|
|
|
|
GtkUnit unit)
|
2006-04-21 15:09:32 +00:00
|
|
|
{
|
2006-04-23 05:48:04 +00:00
|
|
|
return _gtk_print_convert_from_mm (size->height, unit);
|
2006-04-21 15:09:32 +00:00
|
|
|
}
|
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
/**
|
|
|
|
* gtk_paper_size_is_custom:
|
|
|
|
* @size: a #GtkPaperSize object
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Returns %TRUE if @size is not a standard paper size.
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Return value: whether @size is a custom paper size.
|
|
|
|
**/
|
2006-04-21 15:09:32 +00:00
|
|
|
gboolean
|
|
|
|
gtk_paper_size_is_custom (GtkPaperSize *size)
|
|
|
|
{
|
|
|
|
return size->is_custom;
|
|
|
|
}
|
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
/**
|
|
|
|
* gtk_paper_size_set_size:
|
|
|
|
* @size: a custom #GtkPaperSize object
|
|
|
|
* @width: the new width in units of @unit
|
|
|
|
* @height: the new height in units of @unit
|
|
|
|
* @unit: the unit for @width and @height
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Changes the dimensions of a @size to @width x @height.
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
2006-04-21 15:09:32 +00:00
|
|
|
void
|
2011-01-13 03:30:08 +00:00
|
|
|
gtk_paper_size_set_size (GtkPaperSize *size,
|
|
|
|
gdouble width,
|
|
|
|
gdouble height,
|
|
|
|
GtkUnit unit)
|
2006-04-21 15:09:32 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (size != NULL);
|
|
|
|
g_return_if_fail (size->is_custom);
|
|
|
|
|
2006-04-23 05:48:04 +00:00
|
|
|
size->width = _gtk_print_convert_to_mm (width, unit);
|
|
|
|
size->height = _gtk_print_convert_to_mm (height, unit);
|
2006-04-21 15:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#define NL_PAPER_GET(x) \
|
|
|
|
((union { char *string; unsigned int word; })nl_langinfo(x)).word
|
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
/**
|
|
|
|
* gtk_paper_size_get_default:
|
|
|
|
*
|
2011-01-13 03:30:08 +00:00
|
|
|
* Returns the name of the default paper size, which
|
|
|
|
* depends on the current locale.
|
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Return value: the name of the default paper size. The string
|
|
|
|
* is owned by GTK+ and should not be modified.
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Since: 2.10
|
|
|
|
*/
|
|
|
|
G_CONST_RETURN gchar *
|
2006-04-21 15:09:32 +00:00
|
|
|
gtk_paper_size_get_default (void)
|
|
|
|
{
|
|
|
|
char *locale, *freeme = NULL;
|
|
|
|
const char *paper_size;
|
|
|
|
|
|
|
|
#if defined(HAVE__NL_PAPER_HEIGHT) && defined(HAVE__NL_PAPER_WIDTH)
|
|
|
|
{
|
|
|
|
int width = NL_PAPER_GET (_NL_PAPER_WIDTH);
|
|
|
|
int height = NL_PAPER_GET (_NL_PAPER_HEIGHT);
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
if (width == 210 && height == 297)
|
|
|
|
return GTK_PAPER_NAME_A4;
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-21 15:09:32 +00:00
|
|
|
if (width == 216 && height == 279)
|
|
|
|
return GTK_PAPER_NAME_LETTER;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
freeme = locale = g_win32_getlocale ();
|
|
|
|
#elif defined(LC_PAPER)
|
|
|
|
locale = setlocale(LC_PAPER, NULL);
|
|
|
|
#else
|
|
|
|
locale = setlocale(LC_MESSAGES, NULL);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (!locale)
|
|
|
|
return GTK_PAPER_NAME_A4;
|
|
|
|
|
2010-05-11 14:38:07 +00:00
|
|
|
/* CLDR 1.8.1
|
|
|
|
* http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/territory_language_information.html
|
|
|
|
*/
|
|
|
|
if (g_regex_match_simple("[^_.@]{2,3}_(BZ|CA|CL|CO|CR|GT|MX|NI|PA|PH|PR|SV|US|VE)",
|
|
|
|
locale, G_REGEX_ANCHORED, G_REGEX_MATCH_ANCHORED))
|
2006-04-21 15:09:32 +00:00
|
|
|
paper_size = GTK_PAPER_NAME_LETTER;
|
|
|
|
else
|
|
|
|
paper_size = GTK_PAPER_NAME_A4;
|
|
|
|
|
|
|
|
g_free (freeme);
|
|
|
|
return paper_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* These get the default margins used for the paper size. Its
|
|
|
|
* larger than most printers margins, so that it will be within
|
|
|
|
* the imageble area on any printer.
|
|
|
|
*
|
|
|
|
* I've taken the actual values used from the OSX page setup dialog.
|
|
|
|
* I'm not sure exactly where they got these values for, but might
|
|
|
|
* correspond to this (from ghostscript docs):
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-21 15:09:32 +00:00
|
|
|
* All DeskJets have 0.5 inches (1.27cm) of unprintable bottom margin,
|
|
|
|
* due to the mechanical arrangement used to grab the paper. Side margins
|
|
|
|
* are approximately 0.25 inches (0.64cm) for U.S. letter paper, and 0.15
|
|
|
|
* inches (0.38cm) for A4.
|
|
|
|
*/
|
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
/**
|
|
|
|
* gtk_paper_size_get_default_top_margin:
|
|
|
|
* @size: a #GtkPaperSize object
|
|
|
|
* @unit: the unit for the return value
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Gets the default top margin for the #GtkPaperSize.
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Return value: the default top margin
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
|
|
|
gdouble
|
2011-01-13 03:30:08 +00:00
|
|
|
gtk_paper_size_get_default_top_margin (GtkPaperSize *size,
|
|
|
|
GtkUnit unit)
|
2006-04-21 15:09:32 +00:00
|
|
|
{
|
2006-04-23 06:26:10 +00:00
|
|
|
gdouble margin;
|
2006-04-21 15:09:32 +00:00
|
|
|
|
2006-04-23 05:48:04 +00:00
|
|
|
margin = _gtk_print_convert_to_mm (0.25, GTK_UNIT_INCH);
|
|
|
|
return _gtk_print_convert_from_mm (margin, unit);
|
2006-04-21 15:09:32 +00:00
|
|
|
}
|
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
/**
|
|
|
|
* gtk_paper_size_get_default_bottom_margin:
|
|
|
|
* @size: a #GtkPaperSize object
|
|
|
|
* @unit: the unit for the return value
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Gets the default bottom margin for the #GtkPaperSize.
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Return value: the default bottom margin
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
|
|
|
gdouble
|
2011-01-13 03:30:08 +00:00
|
|
|
gtk_paper_size_get_default_bottom_margin (GtkPaperSize *size,
|
|
|
|
GtkUnit unit)
|
2006-04-21 15:09:32 +00:00
|
|
|
{
|
2006-04-23 06:26:10 +00:00
|
|
|
gdouble margin;
|
|
|
|
const gchar *name;
|
2006-04-21 15:09:32 +00:00
|
|
|
|
2006-04-23 05:48:04 +00:00
|
|
|
margin = _gtk_print_convert_to_mm (0.25, GTK_UNIT_INCH);
|
2006-04-21 15:09:32 +00:00
|
|
|
|
|
|
|
name = gtk_paper_size_get_name (size);
|
|
|
|
if (strcmp (name, "na_letter") == 0 ||
|
|
|
|
strcmp (name, "na_legal") == 0 ||
|
|
|
|
strcmp (name, "iso_a4") == 0)
|
2006-04-23 05:48:04 +00:00
|
|
|
margin = _gtk_print_convert_to_mm (0.56, GTK_UNIT_INCH);
|
2011-01-13 03:30:08 +00:00
|
|
|
|
2006-04-23 05:48:04 +00:00
|
|
|
return _gtk_print_convert_from_mm (margin, unit);
|
2006-04-21 15:09:32 +00:00
|
|
|
}
|
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
/**
|
|
|
|
* gtk_paper_size_get_default_left_margin:
|
|
|
|
* @size: a #GtkPaperSize object
|
|
|
|
* @unit: the unit for the return value
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Gets the default left margin for the #GtkPaperSize.
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Return value: the default left margin
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
|
|
|
gdouble
|
2011-01-13 03:30:08 +00:00
|
|
|
gtk_paper_size_get_default_left_margin (GtkPaperSize *size,
|
|
|
|
GtkUnit unit)
|
2006-04-21 15:09:32 +00:00
|
|
|
{
|
2006-04-23 06:26:10 +00:00
|
|
|
gdouble margin;
|
2006-04-21 15:09:32 +00:00
|
|
|
|
2006-04-23 05:48:04 +00:00
|
|
|
margin = _gtk_print_convert_to_mm (0.25, GTK_UNIT_INCH);
|
|
|
|
return _gtk_print_convert_from_mm (margin, unit);
|
2006-04-21 15:09:32 +00:00
|
|
|
}
|
|
|
|
|
2006-04-23 06:26:10 +00:00
|
|
|
/**
|
|
|
|
* gtk_paper_size_get_default_right_margin:
|
|
|
|
* @size: a #GtkPaperSize object
|
|
|
|
* @unit: the unit for the return value
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Gets the default right margin for the #GtkPaperSize.
|
2011-01-13 03:30:08 +00:00
|
|
|
*
|
2006-04-23 06:26:10 +00:00
|
|
|
* Return value: the default right margin
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
|
|
|
gdouble
|
2011-01-13 03:30:08 +00:00
|
|
|
gtk_paper_size_get_default_right_margin (GtkPaperSize *size,
|
|
|
|
GtkUnit unit)
|
2006-04-21 15:09:32 +00:00
|
|
|
{
|
2006-04-23 06:26:10 +00:00
|
|
|
gdouble margin;
|
2006-04-21 15:09:32 +00:00
|
|
|
|
2006-04-23 05:48:04 +00:00
|
|
|
margin = _gtk_print_convert_to_mm (0.25, GTK_UNIT_INCH);
|
|
|
|
return _gtk_print_convert_from_mm (margin, unit);
|
2006-04-21 15:09:32 +00:00
|
|
|
}
|
|
|
|
|
2007-04-29 06:23:58 +00:00
|
|
|
/**
|
|
|
|
* gtk_paper_size_new_from_key_file:
|
|
|
|
* @key_file: the #GKeyFile to retrieve the papersize from
|
|
|
|
* @group_name: the name ofthe group in the key file to read,
|
|
|
|
* or %NULL to read the first group
|
2010-02-19 16:53:17 +00:00
|
|
|
* @error: (allow-none): return location for an error, or %NULL
|
2007-04-29 06:23:58 +00:00
|
|
|
*
|
|
|
|
* Reads a paper size from the group @group_name in the key file
|
2011-01-13 03:30:08 +00:00
|
|
|
* @key_file.
|
2007-05-26 18:56:07 +00:00
|
|
|
*
|
|
|
|
* Returns: a new #GtkPaperSize object with the restored
|
2011-01-24 02:50:39 +00:00
|
|
|
* paper size, or %NULL if an error occurred
|
2007-04-29 06:23:58 +00:00
|
|
|
*
|
|
|
|
* Since: 2.12
|
|
|
|
*/
|
|
|
|
GtkPaperSize *
|
2011-01-24 02:50:39 +00:00
|
|
|
gtk_paper_size_new_from_key_file (GKeyFile *key_file,
|
|
|
|
const gchar *group_name,
|
|
|
|
GError **error)
|
2007-04-29 06:23:58 +00:00
|
|
|
{
|
|
|
|
GtkPaperSize *paper_size = NULL;
|
2011-01-24 02:50:39 +00:00
|
|
|
gchar *name = NULL;
|
|
|
|
gchar *ppd_name = NULL;
|
|
|
|
gchar *display_name = NULL;
|
|
|
|
gchar *freeme = NULL;
|
2007-04-29 06:23:58 +00:00
|
|
|
gdouble width, height;
|
|
|
|
GError *err = NULL;
|
|
|
|
|
|
|
|
g_return_val_if_fail (key_file != NULL, NULL);
|
|
|
|
|
|
|
|
if (!group_name)
|
|
|
|
group_name = freeme = g_key_file_get_start_group (key_file);
|
|
|
|
if (!group_name || !g_key_file_has_group (key_file, group_name))
|
|
|
|
{
|
2008-06-19 12:47:48 +00:00
|
|
|
g_set_error_literal (error,
|
|
|
|
GTK_PRINT_ERROR,
|
|
|
|
GTK_PRINT_ERROR_INVALID_FILE,
|
|
|
|
_("Not a valid page setup file"));
|
2007-04-29 06:23:58 +00:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GET_DOUBLE(kf, group, name, v) \
|
|
|
|
v = g_key_file_get_double (kf, group, name, &err); \
|
|
|
|
if (err != NULL) \
|
|
|
|
{\
|
|
|
|
g_propagate_error (error, err);\
|
|
|
|
goto out;\
|
|
|
|
}
|
|
|
|
|
|
|
|
GET_DOUBLE (key_file, group_name, "Width", width);
|
|
|
|
GET_DOUBLE (key_file, group_name, "Height", height);
|
|
|
|
|
|
|
|
#undef GET_DOUBLE
|
|
|
|
|
|
|
|
name = g_key_file_get_string (key_file, group_name,
|
2011-01-13 03:30:08 +00:00
|
|
|
"Name", NULL);
|
2007-04-29 06:23:58 +00:00
|
|
|
ppd_name = g_key_file_get_string (key_file, group_name,
|
2011-01-13 03:30:08 +00:00
|
|
|
"PPDName", NULL);
|
2007-04-29 06:23:58 +00:00
|
|
|
display_name = g_key_file_get_string (key_file, group_name,
|
2011-01-13 03:30:08 +00:00
|
|
|
"DisplayName", NULL);
|
2007-04-29 06:23:58 +00:00
|
|
|
/* Fallback for old ~/.gtk-custom-paper entries */
|
|
|
|
if (!display_name)
|
|
|
|
display_name = g_strdup (name);
|
|
|
|
|
|
|
|
if (ppd_name != NULL)
|
2008-12-03 10:17:45 +00:00
|
|
|
paper_size = gtk_paper_size_new_from_ppd (ppd_name,
|
|
|
|
display_name,
|
|
|
|
_gtk_print_convert_from_mm (width, GTK_UNIT_POINTS),
|
|
|
|
_gtk_print_convert_from_mm (height, GTK_UNIT_POINTS));
|
2007-04-29 06:23:58 +00:00
|
|
|
else if (name != NULL)
|
|
|
|
paper_size = gtk_paper_size_new_custom (name, display_name,
|
2011-01-13 03:30:08 +00:00
|
|
|
width, height, GTK_UNIT_MM);
|
2007-04-29 06:23:58 +00:00
|
|
|
else
|
|
|
|
{
|
2008-06-19 12:47:48 +00:00
|
|
|
g_set_error_literal (error,
|
|
|
|
GTK_PRINT_ERROR,
|
|
|
|
GTK_PRINT_ERROR_INVALID_FILE,
|
|
|
|
_("Not a valid page setup file"));
|
2007-04-29 06:23:58 +00:00
|
|
|
goto out;
|
|
|
|
}
|
2011-01-24 02:50:39 +00:00
|
|
|
|
2007-04-29 06:23:58 +00:00
|
|
|
g_assert (paper_size != NULL);
|
|
|
|
|
|
|
|
out:
|
|
|
|
g_free (ppd_name);
|
|
|
|
g_free (name);
|
|
|
|
g_free (display_name);
|
|
|
|
g_free (freeme);
|
|
|
|
|
|
|
|
return paper_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_paper_size_to_key_file:
|
2007-05-26 18:56:07 +00:00
|
|
|
* @size: a #GtkPaperSize
|
2007-04-29 06:23:58 +00:00
|
|
|
* @key_file: the #GKeyFile to save the paper size to
|
|
|
|
* @group_name: the group to add the settings to in @key_file
|
|
|
|
*
|
2007-05-26 18:56:07 +00:00
|
|
|
* This function adds the paper size from @size to @key_file.
|
2007-04-29 06:23:58 +00:00
|
|
|
*
|
|
|
|
* Since: 2.12
|
|
|
|
*/
|
|
|
|
void
|
2007-05-26 18:56:07 +00:00
|
|
|
gtk_paper_size_to_key_file (GtkPaperSize *size,
|
2011-01-13 03:30:08 +00:00
|
|
|
GKeyFile *key_file,
|
|
|
|
const gchar *group_name)
|
2007-04-29 06:23:58 +00:00
|
|
|
{
|
|
|
|
const char *name, *ppd_name, *display_name;
|
|
|
|
|
2007-05-26 18:56:07 +00:00
|
|
|
g_return_if_fail (size != NULL);
|
2007-04-29 06:23:58 +00:00
|
|
|
g_return_if_fail (key_file != NULL);
|
|
|
|
|
2007-05-26 18:56:07 +00:00
|
|
|
name = gtk_paper_size_get_name (size);
|
|
|
|
display_name = gtk_paper_size_get_display_name (size);
|
|
|
|
ppd_name = gtk_paper_size_get_ppd_name (size);
|
2007-04-29 06:23:58 +00:00
|
|
|
|
2011-01-13 03:30:08 +00:00
|
|
|
if (ppd_name != NULL)
|
2007-04-29 06:23:58 +00:00
|
|
|
g_key_file_set_string (key_file, group_name,
|
2011-01-13 03:30:08 +00:00
|
|
|
"PPDName", ppd_name);
|
2007-04-29 06:23:58 +00:00
|
|
|
else
|
|
|
|
g_key_file_set_string (key_file, group_name,
|
2011-01-13 03:30:08 +00:00
|
|
|
"Name", name);
|
2007-04-29 06:23:58 +00:00
|
|
|
|
2011-01-13 03:30:08 +00:00
|
|
|
if (display_name)
|
2007-04-29 06:23:58 +00:00
|
|
|
g_key_file_set_string (key_file, group_name,
|
2011-01-13 03:30:08 +00:00
|
|
|
"DisplayName", display_name);
|
2007-04-29 06:23:58 +00:00
|
|
|
|
|
|
|
g_key_file_set_double (key_file, group_name,
|
2011-01-13 03:30:08 +00:00
|
|
|
"Width", gtk_paper_size_get_width (size, GTK_UNIT_MM));
|
2007-04-29 06:23:58 +00:00
|
|
|
g_key_file_set_double (key_file, group_name,
|
2011-01-13 03:30:08 +00:00
|
|
|
"Height", gtk_paper_size_get_height (size, GTK_UNIT_MM));
|
2007-04-29 06:23:58 +00:00
|
|
|
}
|