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 24 #ifndef _SALLANG_HXX 25 #define _SALLANG_HXX 26 27 //#ifndef _TOOLS_LANG_HXX 28 //#include <tools/lang.hxx> 29 //#endif 30 #include <i18npool/mslangid.hxx> 31 32 // -------------------- 33 // - Language Strings - 34 // -------------------- 35 36 // --- Key-Namen --- 37 #define LSTR_KEY_SHIFT 0 38 #define LSTR_KEY_CTRL 1 39 #define LSTR_KEY_ALT 2 40 #define LSTR_KEY_UP 3 41 #define LSTR_KEY_DOWN 4 42 #define LSTR_KEY_LEFT 5 43 #define LSTR_KEY_RIGHT 6 44 #define LSTR_KEY_HOME 7 45 #define LSTR_KEY_END 8 46 #define LSTR_KEY_PAGEUP 9 47 #define LSTR_KEY_PAGEDOWN 10 48 #define LSTR_KEY_RETURN 11 49 #define LSTR_KEY_ESC 12 50 #define LSTR_KEY_TAB 13 51 #define LSTR_KEY_BACKSPACE 14 52 #define LSTR_KEY_SPACE 15 53 #define LSTR_KEY_INSERT 16 54 #define LSTR_KEY_DELETE 17 55 56 // --- Anzahl der Texte --- 57 58 #define LSTR_COUNT 18 59 60 // -------------------------------------------- 61 // - Methoden zum Abfragen der Sprach-Strings - 62 // -------------------------------------------- 63 64 const sal_Unicode** ImplGetLangTab( LanguageType eLang ); 65 66 #endif // _SALLANG_HXX 67