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 _INITUI_HXX 24 #define _INITUI_HXX 25 26 #include "tools/solar.h" 27 #include "swdllapi.h" 28 29 /* 30 * Forward Declarations 31 */ 32 class String; 33 class SwThesaurus; 34 class SvStringsDtor; 35 36 /* 37 * Extern Definitions 38 */ 39 extern SwThesaurus* pThes; 40 41 extern String* pOldGrfCat; 42 extern String* pOldTabCat; 43 extern String* pOldFrmCat; 44 45 extern String* pCurrGlosGroup; 46 47 SW_DLLPUBLIC String* GetOldGrfCat(); 48 SW_DLLPUBLIC String* GetOldTabCat(); 49 SW_DLLPUBLIC String* GetOldFrmCat(); 50 SW_DLLPUBLIC String* GetOldDrwCat(); 51 52 SW_DLLPUBLIC String* GetCurrGlosGroup(); 53 SW_DLLPUBLIC void SetCurrGlosGroup(String* pStr); 54 55 extern SvStringsDtor* pDBNameList; 56 57 extern SvStringsDtor* pAuthFieldNameList; 58 extern SvStringsDtor* pAuthFieldTypeList; 59 60 // stellt die Textbausteinverwaltung zur Verfuegung 61 class SwGlossaries; 62 SW_DLLPUBLIC SwGlossaries* GetGlossaries(); 63 64 class SwGlossaryList; 65 66 sal_Bool HasGlossaryList(); 67 SwGlossaryList* GetGlossaryList(); 68 69 extern void _InitUI(); 70 extern void _FinitUI(); 71 extern void _InitSpell(); 72 extern void _FinitSpell(); 73 74 75 #endif 76