2004-09-07 21:55:27 +04:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ex: set tabstop=8 softtabstop=4 shiftwidth=4 expandtab: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2004-09-07 21:55:27 +04:00
|
|
|
|
2013-12-09 06:52:54 +04:00
|
|
|
#include "mozilla/ArrayUtils.h"
|
2004-09-07 21:55:27 +04:00
|
|
|
|
|
|
|
#include "nsPaperPS.h"
|
|
|
|
#include "plstr.h"
|
2010-08-13 13:57:57 +04:00
|
|
|
#include "nsCoord.h"
|
2011-05-22 00:04:44 +04:00
|
|
|
#include "nsMemory.h"
|
2004-09-07 21:55:27 +04:00
|
|
|
|
2011-10-11 09:50:08 +04:00
|
|
|
using namespace mozilla;
|
|
|
|
|
2004-09-07 21:55:27 +04:00
|
|
|
const nsPaperSizePS_ nsPaperSizePS::mList[] =
|
|
|
|
{
|
|
|
|
#define SIZE_MM(x) (x)
|
2010-08-13 13:57:57 +04:00
|
|
|
#define SIZE_INCH(x) ((x) * MM_PER_INCH_FLOAT)
|
2011-10-03 11:56:21 +04:00
|
|
|
{ "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 },
|
2004-09-07 21:55:27 +04:00
|
|
|
#undef SIZE_INCH
|
|
|
|
#undef SIZE_MM
|
|
|
|
};
|
|
|
|
|
2011-10-11 09:50:08 +04:00
|
|
|
const unsigned int nsPaperSizePS::mCount = ArrayLength(mList);
|
2004-09-07 21:55:27 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool
|
2004-09-07 21:55:27 +04:00
|
|
|
nsPaperSizePS::Find(const char *aName)
|
|
|
|
{
|
|
|
|
for (int i = mCount; i--; ) {
|
|
|
|
if (!PL_strcasecmp(aName, mList[i].name)) {
|
|
|
|
mCurrent = i;
|
2011-10-03 11:56:21 +04:00
|
|
|
return true;
|
2004-09-07 21:55:27 +04:00
|
|
|
}
|
|
|
|
}
|
2011-10-03 11:56:21 +04:00
|
|
|
return false;
|
2004-09-07 21:55:27 +04:00
|
|
|
}
|