xref: /trunk/main/sc/sdi/app.sdi (revision a22ac757c2d74ad34699b832b04067f5ac53bbed)
1*e07c0dceSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*e07c0dceSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*e07c0dceSAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*e07c0dceSAndrew Rist * distributed with this work for additional information
6*e07c0dceSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*e07c0dceSAndrew Rist * to you under the Apache License, Version 2.0 (the
8*e07c0dceSAndrew Rist * "License"); you may not use this file except in compliance
9*e07c0dceSAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
11*e07c0dceSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
13*e07c0dceSAndrew Rist * Unless required by applicable law or agreed to in writing,
14*e07c0dceSAndrew Rist * software distributed under the License is distributed on an
15*e07c0dceSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*e07c0dceSAndrew Rist * KIND, either express or implied.  See the License for the
17*e07c0dceSAndrew Rist * specific language governing permissions and limitations
18*e07c0dceSAndrew Rist * under the License.
19cdf0e10cSrcweir *
20*e07c0dceSAndrew Rist *************************************************************/
21*e07c0dceSAndrew Rist
22cdf0e10cSrcweirinterface StarCalc
23cdf0e10cSrcweir[
24cdf0e10cSrcweir    uuid ( "AB3257C0-07D7-11CF-89CB-008029E4B0B1" )
25cdf0e10cSrcweir]
26cdf0e10cSrcweir{
27cdf0e10cSrcweir    FID_AUTOCOMPLETE    [ ExecMethod = Execute; StateMethod = GetState; ]
28cdf0e10cSrcweir    SID_DETECTIVE_AUTO  [ ExecMethod = Execute; StateMethod = GetState; ]
29cdf0e10cSrcweir    SID_PSZ_FUNCTION    [ ExecMethod = Execute; StateMethod = GetState; ]
30cdf0e10cSrcweir    FID_FOCUS_POSWND    [ ExecMethod = Execute; ]
31cdf0e10cSrcweir
32cdf0e10cSrcweir    SID_ATTR_METRIC     [ ExecMethod = Execute; StateMethod = GetState; ]
33cdf0e10cSrcweir
34cdf0e10cSrcweir    SID_AUTOSPELL_CHECK
35cdf0e10cSrcweir    [
36cdf0e10cSrcweir        ExecMethod = Execute ;
37cdf0e10cSrcweir        StateMethod = GetState ;
38cdf0e10cSrcweir        Export = FALSE ;
39cdf0e10cSrcweir    ]
40cdf0e10cSrcweir
41cdf0e10cSrcweir    SID_ATTR_LANGUAGE
42cdf0e10cSrcweir    [
43cdf0e10cSrcweir        ExecMethod = Execute ;
44cdf0e10cSrcweir        StateMethod = GetState ;
45cdf0e10cSrcweir        Export = FALSE ;
46cdf0e10cSrcweir    ]
47cdf0e10cSrcweir    SID_ATTR_CHAR_CJK_LANGUAGE
48cdf0e10cSrcweir    [
49cdf0e10cSrcweir        ExecMethod = Execute ;
50cdf0e10cSrcweir        StateMethod = GetState ;
51cdf0e10cSrcweir        Export = FALSE ;
52cdf0e10cSrcweir    ]
53cdf0e10cSrcweir    SID_ATTR_CHAR_CTL_LANGUAGE
54cdf0e10cSrcweir    [
55cdf0e10cSrcweir        ExecMethod = Execute ;
56cdf0e10cSrcweir        StateMethod = GetState ;
57cdf0e10cSrcweir        Export = FALSE ;
58cdf0e10cSrcweir    ]
59cdf0e10cSrcweir
60cdf0e10cSrcweir    SID_CHOOSE_DESIGN   [ ExecMethod = Execute; ]
61cdf0e10cSrcweir    SID_EURO_CONVERTER  [ ExecMethod = Execute; ]
62cdf0e10cSrcweir
63cdf0e10cSrcweir
64cdf0e10cSrcweir    SID_OPEN_XML_FILTERSETTINGS [ ExecMethod = Execute; ]
65cdf0e10cSrcweir
66cdf0e10cSrcweir
67cdf0e10cSrcweir    SID_HANGUL_HANJA_CONVERSION [ StateMethod = HideDisabledSlots; Export = FALSE; ]
68cdf0e10cSrcweir    SID_CHINESE_CONVERSION      [ StateMethod = HideDisabledSlots; Export = FALSE; ]
69cdf0e10cSrcweir    SID_TRANSLITERATE_HALFWIDTH [ StateMethod = HideDisabledSlots; Export = FALSE; ]
70cdf0e10cSrcweir    SID_TRANSLITERATE_FULLWIDTH [ StateMethod = HideDisabledSlots; Export = FALSE; ]
71cdf0e10cSrcweir    SID_TRANSLITERATE_HIRAGANA  [ StateMethod = HideDisabledSlots; Export = FALSE; ]
72cdf0e10cSrcweir    SID_TRANSLITERATE_KATAGANA  [ StateMethod = HideDisabledSlots; Export = FALSE; ]
73cdf0e10cSrcweir
74cdf0e10cSrcweir    SID_INSERT_RLM              [ StateMethod = HideDisabledSlots; Export = FALSE; ]
75cdf0e10cSrcweir    SID_INSERT_LRM              [ StateMethod = HideDisabledSlots; Export = FALSE; ]
76cdf0e10cSrcweir    SID_INSERT_ZWSP             [ StateMethod = HideDisabledSlots; Export = FALSE; ]
77cdf0e10cSrcweir    SID_INSERT_ZWNBSP           [ StateMethod = HideDisabledSlots; Export = FALSE; ]
78cdf0e10cSrcweir
79cdf0e10cSrcweir}
80cdf0e10cSrcweir
81cdf0e10cSrcweirshell ScModule
82cdf0e10cSrcweir{
83cdf0e10cSrcweir    import StarCalc[Automation];
84cdf0e10cSrcweir}
85