xref: /aoo41x/main/sc/sdi/editsh.sdi (revision 512ec161)
1e07c0dceSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3e07c0dceSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4e07c0dceSAndrew Rist * or more contributor license agreements.  See the NOTICE file
5e07c0dceSAndrew Rist * distributed with this work for additional information
6e07c0dceSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7e07c0dceSAndrew Rist * to you under the Apache License, Version 2.0 (the
8e07c0dceSAndrew Rist * "License"); you may not use this file except in compliance
9e07c0dceSAndrew Rist * with the License.  You may obtain a copy of the License at
10e07c0dceSAndrew Rist *
11e07c0dceSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12e07c0dceSAndrew Rist *
13e07c0dceSAndrew Rist * Unless required by applicable law or agreed to in writing,
14e07c0dceSAndrew Rist * software distributed under the License is distributed on an
15e07c0dceSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16e07c0dceSAndrew Rist * KIND, either express or implied.  See the License for the
17e07c0dceSAndrew Rist * specific language governing permissions and limitations
18e07c0dceSAndrew Rist * under the License.
19e07c0dceSAndrew Rist *
20e07c0dceSAndrew Rist *************************************************************/
21e07c0dceSAndrew Rist
22e07c0dceSAndrew Rist
23cdf0e10cSrcweirinterface TableText
24cdf0e10cSrcweir{
25cdf0e10cSrcweir	//	von Basic aus nicht erreichbar, darum alles mit Export = FALSE
26cdf0e10cSrcweir
27cdf0e10cSrcweir	SID_ATTR_INSERT		[ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
28cdf0e10cSrcweir
29cdf0e10cSrcweir	SID_DELETE
30cdf0e10cSrcweir	[
31cdf0e10cSrcweir		ExecMethod = Execute ;
32cdf0e10cSrcweir		StateMethod = GetState ;
33cdf0e10cSrcweir		Export = FALSE;
34cdf0e10cSrcweir		GroupId = GID_EDIT ;
35cdf0e10cSrcweir		Cachable ;
36cdf0e10cSrcweir	]
37cdf0e10cSrcweir	SID_CUT				[ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
38cdf0e10cSrcweir	SID_COPY			[ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
39cdf0e10cSrcweir	SID_PASTE			[ ExecMethod = Execute; StateMethod = GetClipState; Export = FALSE; ]
40cdf0e10cSrcweir    SID_PASTE_SPECIAL   [ ExecMethod = Execute; StateMethod = GetClipState; Export = FALSE; ]
41cdf0e10cSrcweir	SID_CLIPBOARD_FORMAT_ITEMS [ ExecMethod = Execute; StateMethod = GetClipState; Export = FALSE; ]
42cdf0e10cSrcweir	SID_SELECTALL		[ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
43cdf0e10cSrcweir	SID_CHARMAP			[ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
44cdf0e10cSrcweir	FID_INSERT_NAME		[ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
45cdf0e10cSrcweir    SID_THES            [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
46cdf0e10cSrcweir
47cdf0e10cSrcweir	SID_UNDO			[ ExecMethod = ExecuteUndo; StateMethod = GetUndoState; Export = FALSE; ]
48cdf0e10cSrcweir	SID_REDO			[ ExecMethod = ExecuteUndo; StateMethod = GetUndoState; Export = FALSE; ]
49cdf0e10cSrcweir	SID_REPEAT			[ ExecMethod = ExecuteUndo; StateMethod = GetUndoState; Export = FALSE; ]
50cdf0e10cSrcweir
51cdf0e10cSrcweir	 // ---- Attribute:
52cdf0e10cSrcweir	SID_ATTR_CHAR_FONT			[ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
53cdf0e10cSrcweir	SID_ATTR_CHAR_FONTHEIGHT	[ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
54cdf0e10cSrcweir	SID_ATTR_CHAR_COLOR			[ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
55cdf0e10cSrcweir
56cdf0e10cSrcweir	 // ---- Attribut - Toggles:
57cdf0e10cSrcweir	SID_ATTR_CHAR_WEIGHT		[ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
58cdf0e10cSrcweir	SID_ATTR_CHAR_POSTURE		[ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
59cdf0e10cSrcweir	SID_ATTR_CHAR_UNDERLINE		[ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
60cdf0e10cSrcweir
61cdf0e10cSrcweir	SID_ULINE_VAL_NONE			[ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
62cdf0e10cSrcweir	SID_ULINE_VAL_SINGLE		[ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
63cdf0e10cSrcweir	SID_ULINE_VAL_DOUBLE		[ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
64cdf0e10cSrcweir	SID_ULINE_VAL_DOTTED		[ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
65cdf0e10cSrcweir
66cdf0e10cSrcweir	SID_ATTR_CHAR_OVERLINE		[ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
67cdf0e10cSrcweir	SID_ATTR_CHAR_STRIKEOUT		[ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
68cdf0e10cSrcweir	SID_ATTR_CHAR_SHADOWED		[ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
69cdf0e10cSrcweir	SID_ATTR_CHAR_CONTOUR		[ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
70cdf0e10cSrcweir	SID_SET_SUPER_SCRIPT		[ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
71cdf0e10cSrcweir	SID_SET_SUB_SCRIPT			[ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
72*512ec161SZheng Fan	SID_ATTR_CHAR_KERNING		[ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
73cdf0e10cSrcweir	SID_CELL_FORMAT_RESET	[ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
74cdf0e10cSrcweir	SID_CHAR_DLG			[ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
75d9a8b508SZheng Fan	SID_CHAR_DLG_EFFECT		[ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
76cdf0e10cSrcweir	SID_TOGGLE_REL			[ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
77cdf0e10cSrcweir
78cdf0e10cSrcweir	SID_HYPERLINK_SETLINK	[ ExecMethod = Execute; Export = FALSE; ]
79cdf0e10cSrcweir	SID_HYPERLINK_GETLINK	[ StateMethod = GetState; Export = FALSE; ]
80cdf0e10cSrcweir        SID_OPEN_HYPERLINK      [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
81cdf0e10cSrcweir
82cdf0e10cSrcweir    SID_TRANSLITERATE_SENTENCE_CASE [ ExecMethod = ExecuteTrans; StateMethod = GetState;  Export = FALSE; ]
83cdf0e10cSrcweir    SID_TRANSLITERATE_TITLE_CASE    [ ExecMethod = ExecuteTrans; StateMethod = GetState;  Export = FALSE; ]
84cdf0e10cSrcweir    SID_TRANSLITERATE_TOGGLE_CASE   [ ExecMethod = ExecuteTrans; StateMethod = GetState;  Export = FALSE; ]
85cdf0e10cSrcweir    SID_TRANSLITERATE_UPPER     [ ExecMethod = ExecuteTrans; StateMethod = GetState; Export = FALSE; ]
86cdf0e10cSrcweir	SID_TRANSLITERATE_LOWER		[ ExecMethod = ExecuteTrans; StateMethod = GetState; Export = FALSE; ]
87cdf0e10cSrcweir	SID_TRANSLITERATE_HALFWIDTH	[ ExecMethod = ExecuteTrans; StateMethod = GetState; Export = FALSE; ]
88cdf0e10cSrcweir	SID_TRANSLITERATE_FULLWIDTH	[ ExecMethod = ExecuteTrans; StateMethod = GetState; Export = FALSE; ]
89cdf0e10cSrcweir	SID_TRANSLITERATE_HIRAGANA	[ ExecMethod = ExecuteTrans; StateMethod = GetState; Export = FALSE; ]
90cdf0e10cSrcweir	SID_TRANSLITERATE_KATAGANA	[ ExecMethod = ExecuteTrans; StateMethod = GetState; Export = FALSE; ]
91cdf0e10cSrcweir
92cdf0e10cSrcweir    FN_INSERT_SOFT_HYPHEN       [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
93cdf0e10cSrcweir    FN_INSERT_HARDHYPHEN        [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
94cdf0e10cSrcweir    FN_INSERT_HARD_SPACE        [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
95cdf0e10cSrcweir    SID_INSERT_RLM              [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
96cdf0e10cSrcweir    SID_INSERT_LRM              [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
97cdf0e10cSrcweir    SID_INSERT_ZWSP             [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
98cdf0e10cSrcweir    SID_INSERT_ZWNBSP           [ ExecMethod = Execute; StateMethod = GetState; Export = FALSE; ]
99cdf0e10cSrcweir}
100cdf0e10cSrcweir
101cdf0e10cSrcweir
102cdf0e10cSrcweir // ===========================================================================
103cdf0e10cSrcweirshell ScEditShell
104cdf0e10cSrcweir{
105cdf0e10cSrcweir	import TableText;
106cdf0e10cSrcweir}
107cdf0e10cSrcweir
108