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 .
21 #include <vcl/svapp.hxx>
22 #include <editeng/editrids.hrc>
23 #include <editeng/paperinf.hxx>
24 #include <editeng/eerdll.hxx>
26 /*--------------------------------------------------------------------
27 Description: Is the printer valid
28 --------------------------------------------------------------------*/
30 inline bool IsValidPrinter( const Printer
* pPtr
)
32 return !pPtr
->GetName().isEmpty();
37 Size
SvxPaperInfo::GetPaperSize( Paper ePaper
, MapUnit eUnit
)
39 PaperInfo
aInfo(ePaper
);
40 Size
aRet(aInfo
.getWidth(), aInfo
.getHeight()); // in 100thMM
41 return eUnit
== MAP_100TH_MM
? aRet
: OutputDevice::LogicToLogic(aRet
, MAP_100TH_MM
, eUnit
);
44 /*------------------------------------------------------------------------
45 Description: Return the paper size of the printer, aligned to our
46 own sizes. If no Printer is set in the system, A4 portrait
47 will be delivered as the default paper size.
48 ------------------------------------------------------------------------*/
50 //Is this method may be confused about the units it returns ?
51 //Always returns TWIPS for known paper sizes or on failure.
52 //But in the case of PAPER_USER paper and with a Printer with a mapmode set
53 //will return in those printer units ?
54 Size
SvxPaperInfo::GetPaperSize( const Printer
* pPrinter
)
56 if ( !IsValidPrinter(pPrinter
) )
57 return GetPaperSize( PAPER_A4
);
58 const Paper ePaper
= pPrinter
->GetPaper();
60 if ( ePaper
== PAPER_USER
)
62 // Orientation not take into account, as the right size has
63 // been already set by SV
64 Size aPaperSize
= pPrinter
->GetPaperSize();
65 const Size aInvalidSize
;
67 if ( aPaperSize
== aInvalidSize
)
68 return GetPaperSize(PAPER_A4
);
69 MapMode aMap1
= pPrinter
->GetMapMode();
74 pPrinter
->PixelToLogic( aPaperSize
, MapMode( MAP_TWIP
) );
78 const Orientation eOrient
= pPrinter
->GetOrientation();
79 Size
aSize( GetPaperSize( ePaper
) );
80 // for Landscape exchange the pages, has already been done by SV
81 if ( eOrient
== ORIENTATION_LANDSCAPE
)
88 Paper
SvxPaperInfo::GetSvxPaper( const Size
&rSize
, MapUnit eUnit
, bool bSloppy
)
90 Size
aSize(eUnit
== MAP_100TH_MM
? rSize
: OutputDevice::LogicToLogic(rSize
, eUnit
, MAP_100TH_MM
));
91 PaperInfo
aInfo(aSize
.Width(), aSize
.Height());
94 return aInfo
.getPaper();
99 long SvxPaperInfo::GetSloppyPaperDimension( long nSize
, MapUnit eUnit
)
101 nSize
= eUnit
== MAP_100TH_MM
? nSize
: OutputDevice::LogicToLogic(nSize
, eUnit
, MAP_100TH_MM
);
102 nSize
= PaperInfo::sloppyFitPageDimension(nSize
);
103 return eUnit
== MAP_100TH_MM
? nSize
: OutputDevice::LogicToLogic(nSize
, MAP_100TH_MM
, eUnit
);
108 Size
SvxPaperInfo::GetDefaultPaperSize( MapUnit eUnit
)
110 PaperInfo
aInfo(PaperInfo::getSystemDefaultPaper());
111 Size
aRet(aInfo
.getWidth(), aInfo
.getHeight());
112 return eUnit
== MAP_100TH_MM
? aRet
: OutputDevice::LogicToLogic(aRet
, MAP_100TH_MM
, eUnit
);
115 /*------------------------------------------------------------------------
116 Description: String representation for the SV-defines of paper size
117 ------------------------------------------------------------------------*/
119 OUString
SvxPaperInfo::GetName( Paper ePaper
)
121 return Printer::GetPaperName( ePaper
);
125 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */