1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23#ifndef __com_sun_star_i18n_TransliterationModulesExtra_idl__ 24#define __com_sun_star_i18n_TransliterationModulesExtra_idl__ 25 26//============================================================================= 27 28module com { module sun { module star { module i18n { 29 30//============================================================================= 31 32/** Extra transliteration module enumeration to use with 33 <member>XTransliteration::loadModule()</member> 34 35 The values used in this group need to be different from the ones in 36 <type>TransliterationModules</type> and <type>TransliterationModulesNew</type>! 37 */ 38 39 40// using a constant group instead of enum leaves room for additional values later on... 41constants TransliterationModulesExtra 42{ 43 /** The first character of the sentence is put in upper case 44 */ 45 const short SENTENCE_CASE = 200; 46 47 //------------------------------------------------------------------------- 48 49 /** The first character of the word is put in upper case. 50 * This one is part 51 */ 52 const short TITLE_CASE = 201; 53 54 //------------------------------------------------------------------------- 55 56 /** All characters of the word are to change their case from small letters 57 * to capital letters and vice versa. 58 */ 59 const short TOGGLE_CASE = 202; 60 61 //------------------------------------------------------------------------- 62 63 const long END_OF_MODULE = 0; 64}; 65 66//============================================================================= 67}; }; }; }; 68 69#endif 70