summaryrefslogtreecommitdiff
path: root/base/gp_wpapr.c
blob: fa08a6c90b9e6a9afb9626361a7c447dcf316258 (plain)
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
/* Copyright (C) 2001-2023 Artifex Software, Inc.
   All Rights Reserved.

   This software is provided AS-IS with no warranty, either express or
   implied.

   This software is distributed under license and may not be copied,
   modified or distributed except as expressly authorized under the terms
   of the license contained in the file LICENSE in this distribution.

   Refer to licensing information at http://www.artifex.com or contact
   Artifex Software, Inc.,  39 Mesa Street, Suite 108A, San Francisco,
   CA 94129, USA, for further information.
*/


/* $Id:$ */
/* MS Windows implementation of gp_defaultpapersize */

#include <windows.h>
#include <string.h>
#include "gx.h"
#include "gp.h"

/* For compilation on Windows NT  */
#ifndef LOCALE_IPAPERSIZE
#  define LOCALE_IPAPERSIZE 0x100A
#endif

/* ------ Default paper size ------ */

/* Get the default paper size.  See gp_paper.h for details. */
int
gp_defaultpapersize(char *ptr, int *plen)
{
    char buf[6];
    char *paper = NULL;

    /* Determine the default paper size using the Windows locale.
     * LOCALE_IPAPERSIZE is only supported on Windows 2000 or later.
     */
#ifdef METRO
	paper = "letter";
#else
    if  (GetLocaleInfo(LOCALE_SYSTEM_DEFAULT, LOCALE_IPAPERSIZE,
            buf, sizeof(buf))) {
        int val = atoi(buf);
        if (val == 1)
            paper = "letter";
        else if (val == 5)
            paper = "legal";
        else if (val == 8)
            paper = "a3";
        else if (val == 9)
            paper = "a4";
    }

    /* Fall back to the default paper size method described in
     * http://msdn.microsoft.com/en-us/library/ms801585.aspx
     */
    if  ((paper == 0) &&
        GetLocaleInfo(LOCALE_SYSTEM_DEFAULT, LOCALE_ICOUNTRY,
            buf, sizeof(buf))) {
        int country = atoi(buf);
        if ((country == CTRY_UNITED_STATES) ||
            (country == CTRY_CANADA) ||
            ((country >= 50) && (country < 60) && (country != CTRY_BRAZIL)) ||
            ((country >= 500) && (country < 600)) ) {
            /* Imperial measurement system */
            paper = "letter";
        }
        else {
            /* Metric measurement system */
            paper = "a4";
        }
    }
#endif

    if (paper) {
        int len = strlen(paper);

        if (len < *plen) {
            /* string fits */
            strcpy(ptr, paper);
            *plen = len + 1;
            return 0;
        }
        /* string doesn't fit */
        *plen = len + 1;
        return -1;
    }

    /* No default paper size */

    if (*plen > 0)
        *ptr = 0;
    *plen = 1;
    return 1;
}