1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
/* CTK - The GIMP Toolkit
 * ctkpapersize.c: Paper Size
 * Copyright (C) 2006, Red Hat, Inc.
 * Copyright © 2006, 2007 Christian Persch
 *
 * 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, see <http://www.gnu.org/licenses/>.
 */

#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 <math.h>

#include "ctkpapersize.h"
#include "ctkprintutils.h"
#include "ctkprintoperation.h"  /* for CtkPrintError */
#include "ctkintl.h"

/* _ctk_load_custom_papers() only on Unix so far  */
#ifdef G_OS_UNIX
#include "ctkcustompaperunixdialog.h"
#endif

#include "paper_names_offsets.c"


/**
 * SECTION:ctkpapersize
 * @Short_description: Support for named paper sizes
 * @Title: CtkPaperSize
 * @See_also:#CtkPageSetup
 *
 * CtkPaperSize handles paper sizes. It uses the standard called
 * [PWG 5101.1-2002 PWG: Standard for Media Standardized Names](http://www.pwg.org/standards.html)
 * to name the paper sizes (and to get the data for the page sizes).
 * In addition to standard paper sizes, CtkPaperSize allows to
 * construct custom paper sizes with arbitrary dimensions.
 *
 * The #CtkPaperSize object stores not only the dimensions (width
 * and height) of a paper size and its name, it also provides
 * default [print margins][print-margins].
 *
 * Printing support has been added in CTK+ 2.10.
 */


struct _CtkPaperSize
{
  const PaperInfo *info;

  /* If these are not set we fall back to info */
  gchar *name;
  gchar *display_name;
  gchar *ppd_name;

  gdouble width, height; /* Stored in mm */
  gboolean is_custom;
  gboolean is_ipp;
};

G_DEFINE_BOXED_TYPE (CtkPaperSize, ctk_paper_size,<--- There is an unknown macro here somewhere. Configuration is required. If G_DEFINE_BOXED_TYPE is a macro then please configure it.
                     ctk_paper_size_copy,
                     ctk_paper_size_free)

static const PaperInfo *
lookup_paper_info (const gchar *name)
{
  int lower = 0;
  int upper = G_N_ELEMENTS (standard_names_offsets) - 1;

  do
    {
       int mid;
       int cmp;

       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
         return &standard_names_offsets[mid];
    }
  while (lower <= upper);

  return NULL;
}

static gboolean
parse_media_size (const gchar *size,
                  gdouble     *width_mm,
                  gdouble     *height_mm)
{
  const char *p;
  char *e;
  double short_dim, long_dim;

  p = size;

  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;

  return TRUE;
}

static gboolean
parse_full_media_size_name (const gchar  *full_name,
                            gchar       **name,
                            gdouble      *width_mm,
                            gdouble      *height_mm)
{
  const char *p;
  const char *end_of_name;

  /* 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 _ */

  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);

  return TRUE;
}

static CtkPaperSize *
ctk_paper_size_new_from_info (const PaperInfo *info)
{
  CtkPaperSize *size;

  size = g_slice_new0 (CtkPaperSize);
  size->info = info;
  size->width = info->width;
  size->height = info->height;

  return size;
}

/**
 * ctk_paper_size_new:
 * @name: (allow-none): a paper size name, or %NULL
 *
 * Creates a new #CtkPaperSize object by parsing a
 * [PWG 5101.1-2002](ftp://ftp.pwg.org/pub/pwg/candidates/cs-pwgmsn10-20020226-5101.1.pdf)
 * paper name.
 *
 * If @name is %NULL, the default paper size is returned,
 * see ctk_paper_size_get_default().
 *
 * Returns: a new #CtkPaperSize, use ctk_paper_size_free()
 * to free it
 *
 * Since: 2.10
 */
CtkPaperSize *
ctk_paper_size_new (const gchar *name)
{
  CtkPaperSize *size;
  char *short_name;
  double width, height;
  const PaperInfo *info;

  if (name == NULL)
    name = ctk_paper_size_get_default ();

  if (parse_full_media_size_name (name, &short_name, &width, &height))
    {
      info = lookup_paper_info (short_name);
      if (info != NULL && info->width == width && info->height == height)
        {
          size = ctk_paper_size_new_from_info (info);
          g_free (short_name);
        }
      else
        {
          size = g_slice_new0 (CtkPaperSize);

          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;
        }
    }
  else
    {
      info = lookup_paper_info (name);
      if (info != NULL)
        size = ctk_paper_size_new_from_info (info);
      else
        {
          g_warning ("Unknown paper size %s", name);
          size = g_slice_new0 (CtkPaperSize);
          size->name = g_strdup (name);
          size->display_name = g_strdup (name);
          /* Default to A4 size */
          size->width = 210;
          size->height = 297;
        }
    }

  return size;
}

static gchar *
improve_displayname (const gchar *name)
{
  gchar *p, *s;

  p = strrchr (name, 'x');
  if (p && p != name &&
      g_ascii_isdigit (*(p - 1)) &&
      g_ascii_isdigit (*(p + 1)))
    {
      gchar *p1, *p2;
      p1 = g_strndup (name, p - name);
      p2 = g_strdup (p + 1);
      s = g_strconcat (p1, "×", p2, NULL);
      g_free (p1);
      g_free (p2);
    }
  else
    s = g_strdup (name);

  return s;
}

/**
 * ctk_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
 *
 * Creates a new #CtkPaperSize object by using
 * PPD information.
 *
 * If @ppd_name is not a recognized PPD paper name,
 * @ppd_display_name, @width and @height are used to
 * construct a custom #CtkPaperSize object.
 *
 * Returns: a new #CtkPaperSize, use ctk_paper_size_free()
 * to free it
 *
 * Since: 2.10
 */
CtkPaperSize *
ctk_paper_size_new_from_ppd (const gchar *ppd_name,
                             const gchar *ppd_display_name,
                             gdouble      width,
                             gdouble      height)
{
  char *name;
  const char *lookup_ppd_name;
  char *freeme;
  CtkPaperSize *size;
  int i;
  char *display_name;

  lookup_ppd_name = ppd_name;

  freeme = NULL;
  /* Strip out Traverse suffix in matching. */
  if (g_str_has_suffix (ppd_name, ".Transverse"))
    {
      lookup_ppd_name = freeme =
        g_strndup (ppd_name, strlen (ppd_name) - strlen (".Transverse"));
    }

  for (i = 0; i < G_N_ELEMENTS (standard_names_offsets); i++)
    {
      if (standard_names_offsets[i].ppd_name != -1 &&
          strcmp (paper_names + standard_names_offsets[i].ppd_name, lookup_ppd_name) == 0)
        {
          size = ctk_paper_size_new_from_info (&standard_names_offsets[i]);
          goto out;
        }
    }

  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)
        {
          size = ctk_paper_size_new (paper_names + extra_ppd_names_offsets[i].standard_name);
          goto out;
        }
    }

  name = g_strconcat ("ppd_", ppd_name, NULL);
  display_name = improve_displayname (ppd_display_name);
  size = ctk_paper_size_new_custom (name, display_name, width, height, CTK_UNIT_POINTS);
  g_free (display_name);
  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);

  g_free (freeme);

  return size;
}

/* Tolerance of paper size in points according to PostScript Language Reference */
#define PAPER_SIZE_TOLERANCE 5

/**
 * ctk_paper_size_new_from_ipp:
 * @ipp_name: an IPP paper name
 * @width: the paper width, in points
 * @height: the paper height in points
 *
 * Creates a new #CtkPaperSize object by using
 * IPP information.
 *
 * If @ipp_name is not a recognized paper name,
 * @width and @height are used to
 * construct a custom #CtkPaperSize object.
 *
 * Returns: a new #CtkPaperSize, use ctk_paper_size_free()
 * to free it
 *
 * Since: 3.16
 */
CtkPaperSize *
ctk_paper_size_new_from_ipp (const gchar *ipp_name,
                             gdouble      width,
                             gdouble      height)
{
  CtkPaperSize *size;
  const gchar  *name = NULL;
  gboolean      found = FALSE;
  gchar        *display_name = NULL;
  gint          i;

  /* Find paper size according to its name */
  for (i = 0; i < G_N_ELEMENTS (standard_names_offsets); i++)
    {
      if (standard_names_offsets[i].name != -1)
        name = paper_names + standard_names_offsets[i].name;
      if (name != NULL &&
          /* Given paper size name is equal to a name
             from the standard paper size names list. */
          ((g_strcmp0 (ipp_name, name) == 0) ||
           /* Given paper size name is prefixed by a name
              from the standard paper size names list +
              it consists of size in its name (e.g. iso_a4_210x297mm). */
            (g_str_has_prefix (ipp_name, name) &&
             strlen (ipp_name) > strlen (name) + 2 &&
             ipp_name[strlen (ipp_name)] == '_' &&
             g_ascii_isdigit (ipp_name[strlen (ipp_name) + 1]) &&
             (g_str_has_suffix (ipp_name, "mm") ||
              g_str_has_suffix (ipp_name, "in")))))
        {
          display_name = g_strdup (g_dpgettext2 (GETTEXT_PACKAGE,
                                                 "paper size",
                                                 paper_names + standard_names_offsets[i].display_name));
          found = TRUE;
          break;
        }
    }

  /* Find paper size according to its size */
  if (display_name == NULL)
    {
      for (i = 0; i < G_N_ELEMENTS (standard_names_offsets); i++)
        {
          float x_dimension;
          float y_dimension;

          x_dimension = _ctk_print_convert_from_mm (standard_names_offsets[i].width, CTK_UNIT_POINTS);
          y_dimension = _ctk_print_convert_from_mm (standard_names_offsets[i].height, CTK_UNIT_POINTS);

          if (fabs (x_dimension - width) <= PAPER_SIZE_TOLERANCE &&
              fabs (y_dimension - height) <= PAPER_SIZE_TOLERANCE)
            {
              display_name = g_strdup (g_dpgettext2 (GETTEXT_PACKAGE,
                                                     "paper size",
                                                     paper_names + standard_names_offsets[i].display_name));
              found = TRUE;
              break;
            }
        }
    }

  /* Fallback to name of the paper size as given in "ipp_name" parameter */
  if (display_name == NULL)
    display_name = g_strdup (ipp_name);

  size = ctk_paper_size_new_custom (ipp_name, display_name, width, height, CTK_UNIT_POINTS);
  size->is_custom = !found;
  size->is_ipp = found;

  g_free (display_name);

  return size;
}

/**
 * ctk_paper_size_new_custom:
 * @name: the paper name
 * @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. not %CTK_UNIT_NONE.
 *
 * Creates a new #CtkPaperSize object with the
 * given parameters.
 *
 * Returns: a new #CtkPaperSize object, use ctk_paper_size_free()
 * to free it
 *
 * Since: 2.10
 */
CtkPaperSize *
ctk_paper_size_new_custom (const gchar *name,
                           const gchar *display_name,
                           gdouble      width,
                           gdouble      height,
                           CtkUnit      unit)
{
  CtkPaperSize *size;
  g_return_val_if_fail (name != NULL, NULL);
  g_return_val_if_fail (unit != CTK_UNIT_NONE, NULL);

  size = g_slice_new0 (CtkPaperSize);

  size->name = g_strdup (name);
  size->display_name = g_strdup (display_name);
  size->is_custom = TRUE;

  size->width = _ctk_print_convert_to_mm (width, unit);
  size->height = _ctk_print_convert_to_mm (height, unit);

  return size;
}

/**
 * ctk_paper_size_copy:
 * @other: a #CtkPaperSize
 *
 * Copies an existing #CtkPaperSize.
 *
 * Returns: a copy of @other
 *
 * Since: 2.10
 */
CtkPaperSize *
ctk_paper_size_copy (CtkPaperSize *other)
{
  CtkPaperSize *size;

  size = g_slice_new0 (CtkPaperSize);

  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);

  size->width = other->width;
  size->height = other->height;
  size->is_custom = other->is_custom;
  size->is_ipp = other->is_ipp;

  return size;
}

/**
 * ctk_paper_size_free:
 * @size: a #CtkPaperSize
 *
 * Free the given #CtkPaperSize object.
 *
 * Since: 2.10
 */
void
ctk_paper_size_free (CtkPaperSize *size)
{
  g_free (size->name);
  g_free (size->display_name);
  g_free (size->ppd_name);

  g_slice_free (CtkPaperSize, size);
}

/**
 * ctk_paper_size_is_equal:
 * @size1: a #CtkPaperSize object
 * @size2: another #CtkPaperSize object
 *
 * Compares two #CtkPaperSize objects.
 *
 * Returns: %TRUE, if @size1 and @size2
 * represent the same paper size
 *
 * Since: 2.10
 */
gboolean
ctk_paper_size_is_equal (CtkPaperSize *size1,
                         CtkPaperSize *size2)
{
  if (size1->info != NULL && size2->info != NULL)
    return size1->info == size2->info;

  return strcmp (ctk_paper_size_get_name (size1),
                 ctk_paper_size_get_name (size2)) == 0;
}

/**
 * ctk_paper_size_get_paper_sizes:
 * @include_custom: whether to include custom paper sizes
 *     as defined in the page setup dialog
 *
 * Creates a list of known paper sizes.
 *
 * Returns:  (element-type CtkPaperSize) (transfer full): a newly allocated list of newly
 *    allocated #CtkPaperSize objects
 *
 * Since: 2.12
 */
GList *
ctk_paper_size_get_paper_sizes (gboolean include_custom)
{
  GList *list = NULL;
  guint i;
/* _ctk_load_custom_papers() only on Unix so far  */
#ifdef G_OS_UNIX
  if (include_custom)
    {
      GList *page_setups, *l;

      page_setups = _ctk_load_custom_papers ();
      for (l = page_setups; l != NULL; l = l->next)
        {
          CtkPageSetup *setup = (CtkPageSetup *) l->data;
          CtkPaperSize *size;

          size = ctk_page_setup_get_paper_size (setup);
          list = g_list_prepend (list, ctk_paper_size_copy (size));
        }

      g_list_free_full (page_setups, g_object_unref);
    }
#endif
  for (i = 0; i < G_N_ELEMENTS (standard_names_offsets); ++i)
    {
       CtkPaperSize *size;

       size = ctk_paper_size_new_from_info (&standard_names_offsets[i]);
       list = g_list_prepend (list, size);
    }

  return g_list_reverse (list);
}


/**
 * ctk_paper_size_get_name:
 * @size: a #CtkPaperSize object
 *
 * Gets the name of the #CtkPaperSize.
 *
 * Returns: the name of @size
 *
 * Since: 2.10
 */
const gchar *
ctk_paper_size_get_name (CtkPaperSize *size)
{
  if (size->name)
    return size->name;
  g_assert (size->info != NULL);
  return paper_names + size->info->name;
}

/**
 * ctk_paper_size_get_display_name:
 * @size: a #CtkPaperSize object
 *
 * Gets the human-readable name of the #CtkPaperSize.
 *
 * Returns: the human-readable name of @size
 *
 * Since: 2.10
 */
const gchar *
ctk_paper_size_get_display_name (CtkPaperSize *size)
{
  const gchar *display_name;

  if (size->display_name)
    return size->display_name;

  g_assert (size->info != NULL);

  display_name = paper_names + size->info->display_name;
  return g_dpgettext2 (GETTEXT_PACKAGE, "paper size", display_name);
}

/**
 * ctk_paper_size_get_ppd_name:
 * @size: a #CtkPaperSize object
 *
 * Gets the PPD name of the #CtkPaperSize, which
 * may be %NULL.
 *
 * Returns: the PPD name of @size
 *
 * Since: 2.10
 */
const gchar *
ctk_paper_size_get_ppd_name (CtkPaperSize *size)
{
  if (size->ppd_name)
    return size->ppd_name;
  if (size->info)
    return paper_names + size->info->ppd_name;
  return NULL;
}

/**
 * ctk_paper_size_get_width:
 * @size: a #CtkPaperSize object
 * @unit: the unit for the return value, not %CTK_UNIT_NONE
 *
 * Gets the paper width of the #CtkPaperSize, in
 * units of @unit.
 *
 * Returns: the paper width
 *
 * Since: 2.10
 */
gdouble
ctk_paper_size_get_width (CtkPaperSize *size,
                          CtkUnit       unit)
{
  return _ctk_print_convert_from_mm (size->width, unit);
}

/**
 * ctk_paper_size_get_height:
 * @size: a #CtkPaperSize object
 * @unit: the unit for the return value, not %CTK_UNIT_NONE
 *
 * Gets the paper height of the #CtkPaperSize, in
 * units of @unit.
 *
 * Returns: the paper height
 *
 * Since: 2.10
 */
gdouble
ctk_paper_size_get_height (CtkPaperSize *size,
                           CtkUnit       unit)
{
  return _ctk_print_convert_from_mm (size->height, unit);
}

/**
 * ctk_paper_size_is_custom:
 * @size: a #CtkPaperSize object
 *
 * Returns %TRUE if @size is not a standard paper size.
 *
 * Returns: whether @size is a custom paper size.
 **/
gboolean
ctk_paper_size_is_custom (CtkPaperSize *size)
{
  return size->is_custom;
}

/**
 * ctk_paper_size_is_ipp:
 * @size: a #CtkPaperSize object
 *
 * Returns %TRUE if @size is an IPP standard paper size.
 *
 * Returns: whether @size is not an IPP custom paper size.
 **/
gboolean
ctk_paper_size_is_ipp (CtkPaperSize *size)
{
  return size->is_ipp;
}

/**
 * ctk_paper_size_set_size:
 * @size: a custom #CtkPaperSize object
 * @width: the new width in units of @unit
 * @height: the new height in units of @unit
 * @unit: the unit for @width and @height
 *
 * Changes the dimensions of a @size to @width x @height.
 *
 * Since: 2.10
 */
void
ctk_paper_size_set_size (CtkPaperSize *size,
                         gdouble       width,
                         gdouble       height,
                         CtkUnit       unit)
{
  g_return_if_fail (size != NULL);
  g_return_if_fail (size->is_custom);

  size->width = _ctk_print_convert_to_mm (width, unit);
  size->height = _ctk_print_convert_to_mm (height, unit);
}

#define NL_PAPER_GET(x)         \
  ((union { char *string; unsigned int word; })nl_langinfo(x)).word

/**
 * ctk_paper_size_get_default:
 *
 * Returns the name of the default paper size, which
 * depends on the current locale.
 *
 * Returns: the name of the default paper size. The string
 * is owned by CTK+ and should not be modified.
 *
 * Since: 2.10
 */
const gchar *
ctk_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);

    if (width == 210 && height == 297)
      return CTK_PAPER_NAME_A4;

    if (width == 216 && height == 279)
      return CTK_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 CTK_PAPER_NAME_A4;

  /* 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))
    paper_size = CTK_PAPER_NAME_LETTER;
  else
    paper_size = CTK_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):
 *
 * 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.
 */

/**
 * ctk_paper_size_get_default_top_margin:
 * @size: a #CtkPaperSize object
 * @unit: the unit for the return value, not %CTK_UNIT_NONE
 *
 * Gets the default top margin for the #CtkPaperSize.
 *
 * Returns: the default top margin
 *
 * Since: 2.10
 */
gdouble
ctk_paper_size_get_default_top_margin (CtkPaperSize *size G_GNUC_UNUSED,
                                       CtkUnit       unit)
{
  gdouble margin;

  margin = _ctk_print_convert_to_mm (0.25, CTK_UNIT_INCH);
  return _ctk_print_convert_from_mm (margin, unit);
}

/**
 * ctk_paper_size_get_default_bottom_margin:
 * @size: a #CtkPaperSize object
 * @unit: the unit for the return value, not %CTK_UNIT_NONE
 *
 * Gets the default bottom margin for the #CtkPaperSize.
 *
 * Returns: the default bottom margin
 *
 * Since: 2.10
 */
gdouble
ctk_paper_size_get_default_bottom_margin (CtkPaperSize *size,
                                          CtkUnit       unit)
{
  gdouble margin;
  const gchar *name;

  margin = _ctk_print_convert_to_mm (0.25, CTK_UNIT_INCH);

  name = ctk_paper_size_get_name (size);
  if (strcmp (name, "na_letter") == 0 ||
      strcmp (name, "na_legal") == 0 ||
      strcmp (name, "iso_a4") == 0)
    margin = _ctk_print_convert_to_mm (0.56, CTK_UNIT_INCH);

  return _ctk_print_convert_from_mm (margin, unit);
}

/**
 * ctk_paper_size_get_default_left_margin:
 * @size: a #CtkPaperSize object
 * @unit: the unit for the return value, not %CTK_UNIT_NONE
 *
 * Gets the default left margin for the #CtkPaperSize.
 *
 * Returns: the default left margin
 *
 * Since: 2.10
 */
gdouble
ctk_paper_size_get_default_left_margin (CtkPaperSize *size G_GNUC_UNUSED,
                                        CtkUnit       unit)
{
  gdouble margin;

  margin = _ctk_print_convert_to_mm (0.25, CTK_UNIT_INCH);
  return _ctk_print_convert_from_mm (margin, unit);
}

/**
 * ctk_paper_size_get_default_right_margin:
 * @size: a #CtkPaperSize object
 * @unit: the unit for the return value, not %CTK_UNIT_NONE
 *
 * Gets the default right margin for the #CtkPaperSize.
 *
 * Returns: the default right margin
 *
 * Since: 2.10
 */
gdouble
ctk_paper_size_get_default_right_margin (CtkPaperSize *size G_GNUC_UNUSED,
                                         CtkUnit       unit)
{
  gdouble margin;

  margin = _ctk_print_convert_to_mm (0.25, CTK_UNIT_INCH);
  return _ctk_print_convert_from_mm (margin, unit);
}

/**
 * ctk_paper_size_new_from_key_file:
 * @key_file: the #GKeyFile to retrieve the papersize from
 * @group_name: (nullable): the name of the group in the key file to read,
 *     or %NULL to read the first group
 * @error: (allow-none): return location for an error, or %NULL
 *
 * Reads a paper size from the group @group_name in the key file
 * @key_file.
 *
 * Returns: a new #CtkPaperSize object with the restored
 *     paper size, or %NULL if an error occurred
 *
 * Since: 2.12
 */
CtkPaperSize *
ctk_paper_size_new_from_key_file (GKeyFile     *key_file,
                                  const gchar  *group_name,
                                  GError      **error)
{
  CtkPaperSize *paper_size = NULL;
  gchar *name = NULL;
  gchar *ppd_name = NULL;
  gchar *display_name = NULL;
  gchar *freeme = NULL;
  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))
    {
      g_set_error_literal (error,
                           CTK_PRINT_ERROR,
                           CTK_PRINT_ERROR_INVALID_FILE,
                           _("Not a valid page setup file"));
      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,
                                "Name", NULL);
  ppd_name = g_key_file_get_string (key_file, group_name,
                                    "PPDName", NULL);
  display_name = g_key_file_get_string (key_file, group_name,
                                        "DisplayName", NULL);
  /* Fallback for old ~/.ctk-custom-paper entries */
  if (!display_name)
    display_name = g_strdup (name);

  if (ppd_name != NULL)
    paper_size = ctk_paper_size_new_from_ppd (ppd_name,
                                              display_name,
                                              _ctk_print_convert_from_mm (width, CTK_UNIT_POINTS),
                                              _ctk_print_convert_from_mm (height, CTK_UNIT_POINTS));
  else if (name != NULL)
    paper_size = ctk_paper_size_new_custom (name, display_name,
                                            width, height, CTK_UNIT_MM);
  else
    {
      g_set_error_literal (error,
                           CTK_PRINT_ERROR,
                           CTK_PRINT_ERROR_INVALID_FILE,
                           _("Not a valid page setup file"));
      goto out;
    }

  g_assert (paper_size != NULL);

out:
  g_free (ppd_name);
  g_free (name);
  g_free (display_name);
  g_free (freeme);

  return paper_size;
}

/**
 * ctk_paper_size_to_key_file:
 * @size: a #CtkPaperSize
 * @key_file: the #GKeyFile to save the paper size to
 * @group_name: the group to add the settings to in @key_file
 *
 * This function adds the paper size from @size to @key_file.
 *
 * Since: 2.12
 */
void
ctk_paper_size_to_key_file (CtkPaperSize *size,
                            GKeyFile     *key_file,
                            const gchar  *group_name)
{
  const char *name, *ppd_name, *display_name;

  g_return_if_fail (size != NULL);
  g_return_if_fail (key_file != NULL);

  name = ctk_paper_size_get_name (size);
  display_name = ctk_paper_size_get_display_name (size);
  ppd_name = ctk_paper_size_get_ppd_name (size);

  if (ppd_name != NULL)
    g_key_file_set_string (key_file, group_name,
                           "PPDName", ppd_name);
  else
    g_key_file_set_string (key_file, group_name,
                           "Name", name);

  if (display_name)
    g_key_file_set_string (key_file, group_name,
                           "DisplayName", display_name);

  g_key_file_set_double (key_file, group_name,
                         "Width", ctk_paper_size_get_width (size, CTK_UNIT_MM));
  g_key_file_set_double (key_file, group_name,
                         "Height", ctk_paper_size_get_height (size, CTK_UNIT_MM));
}

/**
 * ctk_paper_size_to_gvariant:
 * @paper_size: a #CtkPaperSize
 *
 * Serialize a paper size to an a{sv} variant.
 *
 * Returns: (transfer none): a new, floating, #GVariant
 *
 * Since: 3.22
 */
GVariant *
ctk_paper_size_to_gvariant (CtkPaperSize *paper_size)
{
  const char *name;
  const char *ppd_name;
  const char *display_name;
  GVariantBuilder builder;

  g_variant_builder_init (&builder, G_VARIANT_TYPE_VARDICT);

  name = ctk_paper_size_get_name (paper_size);
  ppd_name = ctk_paper_size_get_ppd_name (paper_size);
  display_name = ctk_paper_size_get_display_name (paper_size);

  if (ppd_name != NULL)
    g_variant_builder_add (&builder, "{sv}", "PPDName", g_variant_new_string (ppd_name));
  else
    g_variant_builder_add (&builder, "{sv}", "Name", g_variant_new_string (name));

  if (display_name != NULL)
    g_variant_builder_add (&builder, "{sv}", "DisplayName", g_variant_new_string (display_name));

  g_variant_builder_add (&builder, "{sv}", "Width", g_variant_new_double (ctk_paper_size_get_width (paper_size, CTK_UNIT_MM)));
  g_variant_builder_add (&builder, "{sv}", "Height", g_variant_new_double (ctk_paper_size_get_height (paper_size, CTK_UNIT_MM)));

  return g_variant_builder_end (&builder);
}

/**
 * ctk_paper_size_new_from_gvariant:
 * @variant: an a{sv} #GVariant
 *
 * Deserialize a paper size from an a{sv} variant in
 * the format produced by ctk_paper_size_to_gvariant().
 *
 * Returns: (transfer full): a new #CtkPaperSize object
 *
 * Since: 3.22
 */
CtkPaperSize *
ctk_paper_size_new_from_gvariant (GVariant *variant)
{
  CtkPaperSize *paper_size;
  const char *name;
  const char *ppd_name;
  const char *display_name;
  gdouble width, height;

  g_return_val_if_fail (g_variant_is_of_type (variant, G_VARIANT_TYPE_VARDICT), NULL);

  if (!g_variant_lookup (variant, "Width", "d", &width) ||
      !g_variant_lookup (variant, "Height", "d", &height))
    return NULL;

  if (!g_variant_lookup (variant, "Name", "&s", &name))
    name = NULL;

  if (!g_variant_lookup (variant, "PPDName", "&s", &ppd_name))
    ppd_name = NULL;

  if (!g_variant_lookup (variant, "DisplayName", "&s", &display_name))
    display_name = name;

  if (ppd_name != NULL)
    paper_size = ctk_paper_size_new_from_ppd (ppd_name,
                                              display_name,
                                              _ctk_print_convert_from_mm (width, CTK_UNIT_POINTS),
                                              _ctk_print_convert_from_mm (height, CTK_UNIT_POINTS));
  else if (name != NULL)
    paper_size = ctk_paper_size_new_custom (name, display_name,
                                            width, height, CTK_UNIT_MM);
  else
    paper_size = NULL;

  return paper_size;
}