1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_I18NUTIL_PAPER_HXX
21 #define INCLUDED_I18NUTIL_PAPER_HXX
23 #include <i18nutil/i18nutildllapi.h>
24 #include <rtl/string.hxx>
26 namespace com
{ namespace sun
{ namespace star
{ namespace lang
{ struct Locale
; } } } }
28 //!! The values of the following enumerators must correspond to the array position
29 //!! of the respective paper size in the file i18nutil/source/utility/paper.cxx
30 //!! Thus don't reorder the enum values here without changing the code there as well.
57 PAPER_FANFOLD_LEGAL_DE
,
88 PAPER_DOUBLEPOSTCARD_JP
,
117 // defined for 'equal size' test with the implementation array
118 #define NUM_PAPER_ENTRIES (PAPER_16K_197x273 - PAPER_A0 + 1)
121 class I18NUTIL_DLLPUBLIC PaperInfo
124 long m_nPaperWidth
; // width in 100thMM
125 long m_nPaperHeight
; // height in 100thMM
127 PaperInfo(Paper eType
);
128 PaperInfo(long nPaperWidth
, long nPaperHeight
);
130 Paper
getPaper() const { return m_eType
; }
131 long getWidth() const { return m_nPaperWidth
; }
132 long getHeight() const { return m_nPaperHeight
; }
133 bool sloppyEqual(const PaperInfo
&rOther
) const;
136 static PaperInfo
getSystemDefaultPaper();
137 static PaperInfo
getDefaultPaperForLocale(const css::lang::Locale
& rLocale
);
139 static Paper
fromPSName(const OString
&rName
);
140 static OString
toPSName(Paper eType
);
142 static long sloppyFitPageDimension(long nDimension
);
145 #endif // INCLUDED_I18NUTIL_PAPER_HXX
147 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */