summaryrefslogtreecommitdiffstats
path: root/widget/gtk/nsPaperPS.cpp
blob: 7d583efaceaed2bd6516be1e5841e840acdb3e82 (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
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* ex: set tabstop=8 softtabstop=4 shiftwidth=4 expandtab: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "mozilla/ArrayUtils.h"
 
#include "nsPaperPS.h"
#include "plstr.h"
#include "nsCoord.h"
#include "nsMemory.h"

using namespace mozilla;

const nsPaperSizePS_ nsPaperSizePS::mList[] =
{
#define SIZE_MM(x)      (x)
#define SIZE_INCH(x)    ((x) * MM_PER_INCH_FLOAT)
    { "A5",             SIZE_MM(148),   SIZE_MM(210),   true },
    { "A4",             SIZE_MM(210),   SIZE_MM(297),   true },
    { "A3",             SIZE_MM(297),   SIZE_MM(420),   true },
    { "Letter",         SIZE_INCH(8.5), SIZE_INCH(11),  false },
    { "Legal",          SIZE_INCH(8.5), SIZE_INCH(14),  false },
    { "Tabloid",        SIZE_INCH(11),  SIZE_INCH(17),  false },
    { "Executive",      SIZE_INCH(7.5), SIZE_INCH(10),  false },
#undef SIZE_INCH
#undef SIZE_MM
};

const unsigned int nsPaperSizePS::mCount = ArrayLength(mList);

bool
nsPaperSizePS::Find(const char *aName)
{
    for (int i = mCount; i--; ) {
        if (!PL_strcasecmp(aName, mList[i].name)) {
            mCurrent = i;
            return true;
        }
    }
    return false;
}