mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 01:08:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
43
widget/gtk/nsPaperPS.cpp
Normal file
43
widget/gtk/nsPaperPS.cpp
Normal file
|
|
@ -0,0 +1,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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue