Bump version to 4.1-6
[LibreOffice.git] / i18npool / inc / servicename.hxx
blob7a8d0d11418e29360cc458e0375ac1754313ba31
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 Service Name
21 com.sun.star.i18n.Transliteration ... dispatching UNO object and generic methods
22 com.sun.star.i18n.Transliteration.u2l ... upper to lower
23 com.sun.star.i18n.Transliteration.l2u ... lower to upper
24 com.sun.star.i18n.Transliteration.caseignore ... case ignore
25 com.sun.star.i18n.Transliteration.l10n ... other
27 We have to adopt different service name for internal UNO objects.
28 Case realted functionality vary depending on Locale.
31 Implementation Name
32 For geneic service: com.sun.star.i18n.Transliteration,
33 com.sun.star.i18n.Transliteration
35 com.sun.star.i18n.Transliteration.u2l
36 com.sun.star.i18n.Transliteration.l2u
37 com.sun.star.i18n.Transliteration.caseignore
38 For these there services above,
40 com.sun.star.i18n.Transliteration.ja_JP
41 ^^^^^
42 Locale name
44 For com.sun.star.i18n.l10n.Transliteration service,
45 com.sun.star.i18n.Transliteration.HALFWIDTH_FULLWIDTH,
46 com.sun.star.i18n.Transliteration.FULLWIDTH_HALFWIDTH,
47 com.sun.star.i18n.Transliteration.IGNORE_WIDTH,
48 com.sun.star.i18n.Transliteration.KATAKANA_HIRAGANA,
49 com.sun.star.i18n.Transliteration.HIRAGANA_KATAKANA,
50 com.sun.star.i18n.Transliteration.IGNORE_KANA,
52 ... These objects above can be used in every Locale context.
57 #ifndef _I18N_SERVICENAME_HXX_
58 #define _I18N_SERVICENAME_HXX_
60 #define TRLT_SERVICELNAME "com.sun.star.i18n.Transliteration"
61 #define TRLT_SERVICELNAME_PREFIX TRLT_SERVICELNAME "."
62 #define TRLT_SERVICELNAME_L10N TRLT_SERVICELNAME_PREFIX "l10n"
64 #define TRLT_IMPLNAME "com.sun.star.i18n.Transliteration"
65 #define TRLT_IMPLNAME_PREFIX "com.sun.star.i18n.Transliteration."
66 // 1...5...901...5...901...5...901..4 --> 34
68 #endif
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */