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 22interface StarCalc 23[ 24 uuid ( "AB3257C0-07D7-11CF-89CB-008029E4B0B1" ) 25] 26{ 27 FID_AUTOCOMPLETE [ ExecMethod = Execute; StateMethod = GetState; ] 28 SID_DETECTIVE_AUTO [ ExecMethod = Execute; StateMethod = GetState; ] 29 SID_PSZ_FUNCTION [ ExecMethod = Execute; StateMethod = GetState; ] 30 FID_FOCUS_POSWND [ ExecMethod = Execute; ] 31 32 SID_ATTR_METRIC [ ExecMethod = Execute; StateMethod = GetState; ] 33 34 SID_AUTOSPELL_CHECK 35 [ 36 ExecMethod = Execute ; 37 StateMethod = GetState ; 38 Export = FALSE ; 39 ] 40 41 SID_ATTR_LANGUAGE 42 [ 43 ExecMethod = Execute ; 44 StateMethod = GetState ; 45 Export = FALSE ; 46 ] 47 SID_ATTR_CHAR_CJK_LANGUAGE 48 [ 49 ExecMethod = Execute ; 50 StateMethod = GetState ; 51 Export = FALSE ; 52 ] 53 SID_ATTR_CHAR_CTL_LANGUAGE 54 [ 55 ExecMethod = Execute ; 56 StateMethod = GetState ; 57 Export = FALSE ; 58 ] 59 60 SID_CHOOSE_DESIGN [ ExecMethod = Execute; ] 61 SID_EURO_CONVERTER [ ExecMethod = Execute; ] 62 63 64 SID_OPEN_XML_FILTERSETTINGS [ ExecMethod = Execute; ] 65 66 67 SID_HANGUL_HANJA_CONVERSION [ StateMethod = HideDisabledSlots; Export = FALSE; ] 68 SID_CHINESE_CONVERSION [ StateMethod = HideDisabledSlots; Export = FALSE; ] 69 SID_TRANSLITERATE_HALFWIDTH [ StateMethod = HideDisabledSlots; Export = FALSE; ] 70 SID_TRANSLITERATE_FULLWIDTH [ StateMethod = HideDisabledSlots; Export = FALSE; ] 71 SID_TRANSLITERATE_HIRAGANA [ StateMethod = HideDisabledSlots; Export = FALSE; ] 72 SID_TRANSLITERATE_KATAGANA [ StateMethod = HideDisabledSlots; Export = FALSE; ] 73 74 SID_INSERT_RLM [ StateMethod = HideDisabledSlots; Export = FALSE; ] 75 SID_INSERT_LRM [ StateMethod = HideDisabledSlots; Export = FALSE; ] 76 SID_INSERT_ZWSP [ StateMethod = HideDisabledSlots; Export = FALSE; ] 77 SID_INSERT_ZWNBSP [ StateMethod = HideDisabledSlots; Export = FALSE; ] 78 79} 80 81shell ScModule 82{ 83 import StarCalc[Automation]; 84} 85