tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / include / oox / export / utils.hxx
blob00fd953a04e76e3a2a5a3d6e8f48f27e0895ad80
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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_OOX_EXPORT_UTILS_HXX
21 #define INCLUDED_OOX_EXPORT_UTILS_HXX
23 #include <sal/config.h>
25 #include <o3tl/unit_conversion.hxx>
26 #include <rtl/string.hxx>
27 #include <sal/types.h>
29 #include <cmath>
31 inline OString I32SHEX(sal_Int32 x)
33 OString aStr = OString::number(x, 16);
34 while (aStr.getLength() < 6)
35 aStr = "0" + aStr;
36 return aStr;
39 /**
40 * @return const char* literal "true" for true value, or literal "false"
41 * for false value.
43 static constexpr const char* ToPsz(bool b)
45 return b ? "true" : "false";
48 /**
49 * @return literal "1" for true value, or literal "0" for false value.
51 static constexpr const char* ToPsz10(bool b)
53 // xlsx seems to use "1" or "0" for boolean values. I wonder it ever uses
54 // the "true" "false" variant.
55 return b ? "1" : "0";
58 static constexpr sal_Int64 PPTtoEMU( sal_Int32 nPPT )
60 return o3tl::convert(nPPT, o3tl::Length::master, o3tl::Length::emu);
63 static constexpr sal_Int64 TwipsToEMU( sal_Int32 nTwips )
65 return o3tl::convert(nTwips, o3tl::Length::twip, o3tl::Length::emu);
68 template <typename T>
69 OString write1000thOfAPercent(T number)
71 return OString::number( lround(number * 1000.0) );
74 namespace oox::drawingml {
75 enum DocumentType { DOCUMENT_DOCX, DOCUMENT_PPTX, DOCUMENT_XLSX };
78 #endif
80 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */