Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / i18n / UnicodeScript.idl
blobaf7045c882a31838afbd65238ae2366bbcba6777
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 .
19 #ifndef __com_sun_star_i18n_UnicodeScript_idl__
20 #define __com_sun_star_i18n_UnicodeScript_idl__
23 module com { module sun { module star { module i18n {
26 /**
27 Unicode script types, returned by
28 XCharacterClassification::getScript()
31 published enum UnicodeScript
33 kBasicLatin,
34 kLatin1Supplement,
35 kLatinExtendedA,
36 kLatinExtendedB,
37 kIPAExtension,
38 kSpacingModifier,
39 kCombiningDiacritical,
40 kGreek,
41 kCyrillic,
42 kArmenian,
43 kHebrew,
44 kArabic,
45 kSyriac,
46 kThaana,
47 kDevanagari,
48 kBengali,
49 kGurmukhi,
50 kGujarati,
51 kOriya,
52 kTamil,
53 kTelugu,
54 kKannada,
55 kMalayalam,
56 kSinhala,
57 kThai,
58 kLao,
59 kTibetan,
60 kMyanmar,
61 kGeorgian,
62 kHangulJamo,
63 kEthiopic,
64 kCherokee,
65 kUnifiedCanadianAboriginalSyllabics,
66 kOgham,
67 kRunic,
68 kKhmer,
69 kMongolian,
70 kLatinExtendedAdditional,
71 kGreekExtended,
72 kGeneralPunctuation,
73 kSuperSubScript,
74 kCurrencySymbolScript,
75 kSymbolCombiningMark,
76 kLetterlikeSymbol,
77 kNumberForm,
78 kArrow,
79 kMathOperator,
80 kMiscTechnical,
81 kControlPicture,
82 kOpticalCharacter,
83 kEnclosedAlphanumeric,
84 kBoxDrawing,
85 kBlockElement,
86 kGeometricShape,
87 kMiscSymbol,
88 kDingbat,
89 kBraillePatterns,
90 kCJKRadicalsSupplement,
91 kKangxiRadicals,
92 kIdeographicDescriptionCharacters,
93 kCJKSymbolPunctuation,
94 kHiragana,
95 kKatakana,
96 kBopomofo,
97 kHangulCompatibilityJamo,
98 kKanbun,
99 kBopomofoExtended,
100 kEnclosedCJKLetterMonth,
101 kCJKCompatibility,
102 k_CJKUnifiedIdeographsExtensionA,
103 kCJKUnifiedIdeograph,
104 kYiSyllables,
105 kYiRadicals,
106 kHangulSyllable,
107 kHighSurrogate,
108 kHighPrivateUseSurrogate,
109 kLowSurrogate,
110 kPrivateUse,
111 kCJKCompatibilityIdeograph,
112 kAlphabeticPresentation,
113 kArabicPresentationA,
114 kCombiningHalfMark,
115 kCJKCompatibilityForm,
116 kSmallFormVariant,
117 kArabicPresentationB,
118 kNoScript,
119 kHalfwidthFullwidthForm,
120 kScriptCount
123 }; }; }; };
125 #endif
127 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */