lok: vcl: fix multiple floatwin removal case more robustly.
[LibreOffice.git] / sal / textenc / unichars.hxx
blob0bcd6f71051807bb21ee2ab427df80c23fe8650c
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_SAL_TEXTENC_UNICHARS_HXX
21 #define INCLUDED_SAL_TEXTENC_UNICHARS_HXX
23 #include <sal/config.h>
25 #include <cassert>
27 #include <rtl/character.hxx>
28 #include <sal/types.h>
30 #define RTL_TEXTENC_UNICODE_REPLACEMENT_CHARACTER 0xFFFD
32 inline bool ImplIsNoncharacter(sal_uInt32 nUtf32)
34 return (nUtf32 >= 0xFDD0 && nUtf32 <= 0xFDEF)
35 || (nUtf32 & 0xFFFF) >= 0xFFFE
36 || !rtl::isUnicodeCodePoint(nUtf32);
38 // All code points that are noncharacters, as of Unicode 3.1.1.
40 bool ImplIsControlOrFormat(sal_uInt32 nUtf32);
42 inline bool ImplIsHighSurrogate(sal_uInt32 nUtf32)
43 { return nUtf32 >= 0xD800 && nUtf32 <= 0xDBFF; }
44 // All code points that are high-surrogates, as of Unicode 3.1.1.
46 inline bool ImplIsLowSurrogate(sal_uInt32 nUtf32)
47 { return nUtf32 >= 0xDC00 && nUtf32 <= 0xDFFF; }
48 // All code points that are low-surrogates, as of Unicode 3.1.1.
50 bool ImplIsPrivateUse(sal_uInt32 nUtf32);
52 bool ImplIsZeroWidth(sal_uInt32 nUtf32);
54 inline sal_uInt32 ImplGetHighSurrogate(sal_uInt32 nUtf32)
56 assert(nUtf32 >= 0x10000);
57 return ((nUtf32 - 0x10000) >> 10) | 0xD800;
60 inline sal_uInt32 ImplGetLowSurrogate(sal_uInt32 nUtf32)
62 assert(nUtf32 >= 0x10000);
63 return ((nUtf32 - 0x10000) & 0x3FF) | 0xDC00;
66 inline sal_uInt32 ImplCombineSurrogates(sal_uInt32 nHigh, sal_uInt32 nLow)
68 assert(ImplIsHighSurrogate(nHigh) && ImplIsLowSurrogate(nLow));
69 return (((nHigh & 0x3FF) << 10) | (nLow & 0x3FF)) + 0x10000;
72 #endif
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */