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_SAL_TEXTENC_UNICHARS_HXX
21 #define INCLUDED_SAL_TEXTENC_UNICHARS_HXX
23 #include "sal/config.h"
25 #include "sal/types.h"
27 #define RTL_TEXTENC_UNICODE_REPLACEMENT_CHARACTER 0xFFFD
29 inline bool ImplIsNoncharacter(sal_uInt32 nUtf32
)
31 return (nUtf32
>= 0xFDD0 && nUtf32
<= 0xFDEF)
32 || (nUtf32
& 0xFFFF) >= 0xFFFE
35 // All code points that are noncharacters, as of Unicode 3.1.1.
37 bool ImplIsControlOrFormat(sal_uInt32 nUtf32
);
39 inline bool ImplIsHighSurrogate(sal_uInt32 nUtf32
)
40 { return nUtf32
>= 0xD800 && nUtf32
<= 0xDBFF; }
41 // All code points that are high-surrogates, as of Unicode 3.1.1.
43 inline bool ImplIsLowSurrogate(sal_uInt32 nUtf32
)
44 { return nUtf32
>= 0xDC00 && nUtf32
<= 0xDFFF; }
45 // All code points that are low-surrogates, as of Unicode 3.1.1.
47 bool ImplIsPrivateUse(sal_uInt32 nUtf32
);
49 bool ImplIsZeroWidth(sal_uInt32 nUtf32
);
51 inline sal_uInt32
ImplGetHighSurrogate(sal_uInt32 nUtf32
)
53 assert(nUtf32
>= 0x10000);
54 return ((nUtf32
- 0x10000) >> 10) | 0xD800;
57 inline sal_uInt32
ImplGetLowSurrogate(sal_uInt32 nUtf32
)
59 assert(nUtf32
>= 0x10000);
60 return ((nUtf32
- 0x10000) & 0x3FF) | 0xDC00;
63 inline sal_uInt32
ImplCombineSurrogates(sal_uInt32 nHigh
, sal_uInt32 nLow
)
65 assert(ImplIsHighSurrogate(nHigh
) && ImplIsLowSurrogate(nLow
));
66 return (((nHigh
& 0x3FF) << 10) | (nLow
& 0x3FF)) + 0x10000;
71 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */