Branch libreoffice-5-0-4
[LibreOffice.git] / i18npool / inc / servicename.hxx
blob1daa8864e837bfa9dc0183719bc2cf5262e800b8
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 INCLUDED_I18NPOOL_INC_SERVICENAME_HXX
58 #define INCLUDED_I18NPOOL_INC_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_PREFIX "com.sun.star.i18n.Transliteration."
65 // 1...5...901...5...901...5...901..4 --> 34
67 #endif
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */