xref: /aoo41x/main/sw/sdi/_basesh.sdi (revision 23d8f725)
1a02241ffSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3a02241ffSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4a02241ffSAndrew Rist * or more contributor license agreements.  See the NOTICE file
5a02241ffSAndrew Rist * distributed with this work for additional information
6a02241ffSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7a02241ffSAndrew Rist * to you under the Apache License, Version 2.0 (the
8a02241ffSAndrew Rist * "License"); you may not use this file except in compliance
9a02241ffSAndrew Rist * with the License.  You may obtain a copy of the License at
10a02241ffSAndrew Rist *
11a02241ffSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12a02241ffSAndrew Rist *
13a02241ffSAndrew Rist * Unless required by applicable law or agreed to in writing,
14a02241ffSAndrew Rist * software distributed under the License is distributed on an
15a02241ffSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16a02241ffSAndrew Rist * KIND, either express or implied.  See the License for the
17a02241ffSAndrew Rist * specific language governing permissions and limitations
18a02241ffSAndrew Rist * under the License.
19a02241ffSAndrew Rist *
20a02241ffSAndrew Rist *************************************************************/
21a02241ffSAndrew Rist
22a02241ffSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweirinterface BaseTextSelection
25cdf0e10cSrcweir[
26cdf0e10cSrcweir	Automation = FALSE;
27cdf0e10cSrcweir]
28cdf0e10cSrcweir{
29cdf0e10cSrcweir    SID_ATTR_BRUSH
30cdf0e10cSrcweir    [
31cdf0e10cSrcweir		ExecMethod = Execute ;
32cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
33cdf0e10cSrcweir    ]
34cdf0e10cSrcweir
35cdf0e10cSrcweir	SID_DELETE  // status(final|play)
36cdf0e10cSrcweir	[
37cdf0e10cSrcweir		ExecMethod = ExecDelete ;
38cdf0e10cSrcweir		StateMethod = GetState ;
39cdf0e10cSrcweir		FastCall = FALSE ;
40cdf0e10cSrcweir	]
41cdf0e10cSrcweir
42cdf0e10cSrcweir	FN_BACKSPACE  // status(final|play)
43cdf0e10cSrcweir	[
44cdf0e10cSrcweir		ExecMethod = ExecDelete ;
45cdf0e10cSrcweir		StateMethod = GetState ;
46cdf0e10cSrcweir		FastCall = FALSE ;
47cdf0e10cSrcweir	]
48cdf0e10cSrcweir
49cdf0e10cSrcweir	FN_SHIFT_BACKSPACE // status()
50cdf0e10cSrcweir	[
51cdf0e10cSrcweir		ExecMethod = ExecDelete ;
52cdf0e10cSrcweir		StateMethod = NoState ;
53cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
54cdf0e10cSrcweir	]
55cdf0e10cSrcweir
56cdf0e10cSrcweir	SID_UNDO // status(final|play)
57cdf0e10cSrcweir	[
58cdf0e10cSrcweir		ExecMethod = ExecUndo ;
59cdf0e10cSrcweir		StateMethod = StateUndo ;
60cdf0e10cSrcweir	]
61cdf0e10cSrcweir
62cdf0e10cSrcweir	SID_GETUNDOSTRINGS  // status(final|play)
63cdf0e10cSrcweir	[
64cdf0e10cSrcweir		StateMethod = StateUndo ;
65cdf0e10cSrcweir	]
66cdf0e10cSrcweir
67cdf0e10cSrcweir	SID_REDO // status(final|play)
68cdf0e10cSrcweir	[
69cdf0e10cSrcweir		ExecMethod = ExecUndo ;
70cdf0e10cSrcweir		StateMethod = StateUndo ;
71cdf0e10cSrcweir	]
72cdf0e10cSrcweir
73cdf0e10cSrcweir	SID_GETREDOSTRINGS  // status(final|play)
74cdf0e10cSrcweir	[
75cdf0e10cSrcweir		StateMethod = StateUndo ;
76cdf0e10cSrcweir	]
77cdf0e10cSrcweir
78cdf0e10cSrcweir	SID_REPEAT // status()
79cdf0e10cSrcweir	[
80cdf0e10cSrcweir		ExecMethod = ExecUndo ;
81cdf0e10cSrcweir		StateMethod = StateUndo ;
82cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
83cdf0e10cSrcweir	]
84cdf0e10cSrcweir
85cdf0e10cSrcweir	SID_CUT // status(final|play)
86cdf0e10cSrcweir	[
87cdf0e10cSrcweir		ExecMethod = ExecClpbrd ;
88cdf0e10cSrcweir		StateMethod = StateClpbrd ;
89cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
90cdf0e10cSrcweir	]
91cdf0e10cSrcweir
92cdf0e10cSrcweir	SID_COPY   // status(final|play)
93cdf0e10cSrcweir	[
94cdf0e10cSrcweir		ExecMethod = ExecClpbrd ;
95cdf0e10cSrcweir		StateMethod = StateClpbrd ;
96cdf0e10cSrcweir	]
97cdf0e10cSrcweir
98cdf0e10cSrcweir	SID_PASTE  // status(final|play)
99cdf0e10cSrcweir	[
100cdf0e10cSrcweir		ExecMethod = ExecClpbrd ;
101cdf0e10cSrcweir		StateMethod = StateClpbrd ;
102cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
103cdf0e10cSrcweir	]
104cdf0e10cSrcweir
105cdf0e10cSrcweir	SID_CLIPBOARD_FORMAT_ITEMS  // status(final|play)
106cdf0e10cSrcweir	[
107cdf0e10cSrcweir		StateMethod = StateClpbrd ;
108cdf0e10cSrcweir		ExecMethod = ExecClpbrd ;
109cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
110cdf0e10cSrcweir	]
111cdf0e10cSrcweir
112cdf0e10cSrcweir	SID_PASTE_UNFORMATTED  // status(final|play)
113cdf0e10cSrcweir	[
114cdf0e10cSrcweir		ExecMethod = ExecClpbrd ;
115cdf0e10cSrcweir		StateMethod = StateClpbrd ;
116cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
117cdf0e10cSrcweir	]
118cdf0e10cSrcweir
119cdf0e10cSrcweir    SID_PASTE_SPECIAL  // status(final|play)
120cdf0e10cSrcweir	[
121cdf0e10cSrcweir		ExecMethod = ExecClpbrd ;
122cdf0e10cSrcweir		StateMethod = StateClpbrd ;
123cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
124cdf0e10cSrcweir	]
125cdf0e10cSrcweir
126cdf0e10cSrcweir	FN_REPAGINATE  // status(final|play)
127cdf0e10cSrcweir	[
128cdf0e10cSrcweir		ExecMethod = Execute ;
129cdf0e10cSrcweir		StateMethod = NoState ;
130cdf0e10cSrcweir	]
131cdf0e10cSrcweir
132cdf0e10cSrcweir	FN_CHANGE_DBFIELD
133cdf0e10cSrcweir	[
134cdf0e10cSrcweir		ExecMethod = ExecField ;
135cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
136cdf0e10cSrcweir	]
137cdf0e10cSrcweir
138cdf0e10cSrcweir    FN_UPDATE_FIELDS // status(final|play)
139cdf0e10cSrcweir	[
140cdf0e10cSrcweir		ExecMethod = Execute ;
141cdf0e10cSrcweir		StateMethod = NoState ;
142cdf0e10cSrcweir	]
143cdf0e10cSrcweir
144cdf0e10cSrcweir	FN_UPDATE_CHARTS // status(final|play)
145cdf0e10cSrcweir	[
146cdf0e10cSrcweir		ExecMethod = Execute ;
147cdf0e10cSrcweir		StateMethod = GetState ;
148cdf0e10cSrcweir	]
149cdf0e10cSrcweir	FN_UPDATE_ALL // status(final|play)
150cdf0e10cSrcweir	[
151cdf0e10cSrcweir		ExecMethod = Execute ;
152cdf0e10cSrcweir		StateMethod = NoState ;
153cdf0e10cSrcweir	]
154cdf0e10cSrcweir
155cdf0e10cSrcweir	FN_UPDATE_INPUTFIELDS  // status(final|play)
156cdf0e10cSrcweir	[
157cdf0e10cSrcweir		ExecMethod = Execute ;
158cdf0e10cSrcweir		StateMethod = NoState ;
159cdf0e10cSrcweir	]
160cdf0e10cSrcweir
161cdf0e10cSrcweir	FN_FRAME_TO_ANCHOR // status()
162cdf0e10cSrcweir	[
163cdf0e10cSrcweir		/*OS: Datentypen unvertraeglich ?? */
164cdf0e10cSrcweir		ExecMethod = Execute ;
165cdf0e10cSrcweir		StateMethod = NoState ;
166cdf0e10cSrcweir	]
167cdf0e10cSrcweir
168cdf0e10cSrcweir	FN_GOTO_NEXT_OBJ // status(final|play)
169cdf0e10cSrcweir	[
170cdf0e10cSrcweir		ExecMethod = Execute ;
171cdf0e10cSrcweir		StateMethod = NoState ;
172cdf0e10cSrcweir	]
173cdf0e10cSrcweir
174cdf0e10cSrcweir	FN_GOTO_PREV_OBJ // status(final|play)
175cdf0e10cSrcweir	[
176cdf0e10cSrcweir		ExecMethod = Execute ;
177cdf0e10cSrcweir		StateMethod = NoState ;
178cdf0e10cSrcweir	]
179cdf0e10cSrcweir
180cdf0e10cSrcweir	FN_GOTO_NEXT_MARK // status(final|play)
181cdf0e10cSrcweir	[
182cdf0e10cSrcweir		ExecMethod = Execute ;
183cdf0e10cSrcweir		StateMethod = NoState ;
184cdf0e10cSrcweir	]
185cdf0e10cSrcweir
186cdf0e10cSrcweir	FN_GOTO_PREV_MARK  // status(final|play)
187cdf0e10cSrcweir	[
188cdf0e10cSrcweir		ExecMethod = Execute ;
189cdf0e10cSrcweir		StateMethod = NoState ;
190cdf0e10cSrcweir	]
191cdf0e10cSrcweir
192cdf0e10cSrcweir	FN_PREV_BOOKMARK // status(final|play)
193cdf0e10cSrcweir	[
194cdf0e10cSrcweir		ExecMethod = Execute ;
195cdf0e10cSrcweir		StateMethod = NoState ;
196cdf0e10cSrcweir	]
197cdf0e10cSrcweir
198cdf0e10cSrcweir	FN_NEXT_BOOKMARK // status(final|play)
199cdf0e10cSrcweir	[
200cdf0e10cSrcweir		ExecMethod = Execute ;
201cdf0e10cSrcweir		StateMethod = NoState ;
202cdf0e10cSrcweir	]
203cdf0e10cSrcweir
204cdf0e10cSrcweir	SID_GALLERY_FORMATS // status()
205cdf0e10cSrcweir	[
206cdf0e10cSrcweir		Export = FALSE ;
207cdf0e10cSrcweir		ExecMethod = Execute ;
208cdf0e10cSrcweir	]
209cdf0e10cSrcweir
210cdf0e10cSrcweir	SID_GALLERY_ENABLE_ADDCOPY
211cdf0e10cSrcweir	[
212cdf0e10cSrcweir		Export = FALSE;
213cdf0e10cSrcweir		StateMethod = GetState;
214cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
215cdf0e10cSrcweir	]
216cdf0e10cSrcweir
217cdf0e10cSrcweir	SID_BACKGROUND_COLOR // status()
218cdf0e10cSrcweir	[
219cdf0e10cSrcweir		ExecMethod = ExecBckCol ;
220cdf0e10cSrcweir		StateMethod = GetBckColState ;
221cdf0e10cSrcweir		Cachable , AutoUpdate ;
222cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
223cdf0e10cSrcweir	]
224cdf0e10cSrcweir
225cdf0e10cSrcweir	FN_EDIT_REGION // status(final|play)
226cdf0e10cSrcweir	[
227cdf0e10cSrcweir		ExecMethod = EditRegionDialog ;
228cdf0e10cSrcweir		StateMethod = GetState ;
229cdf0e10cSrcweir	]
230cdf0e10cSrcweir
231cdf0e10cSrcweir    FN_INSERT_REGION // status()
232cdf0e10cSrcweir	[
233cdf0e10cSrcweir		ExecMethod = InsertRegionDialog;
234cdf0e10cSrcweir		StateMethod = GetState;
235cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
236cdf0e10cSrcweir	]
237cdf0e10cSrcweir
238*ff0525f2SOliver-Rainer Wittmann    FN_FORMAT_PAGE_DLG  // status(final|play)
239*ff0525f2SOliver-Rainer Wittmann    [
240*ff0525f2SOliver-Rainer Wittmann        ExecMethod = ExecDlg ;
241*ff0525f2SOliver-Rainer Wittmann        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
242*ff0525f2SOliver-Rainer Wittmann    ]
243cdf0e10cSrcweir
244*ff0525f2SOliver-Rainer Wittmann    FN_FORMAT_PAGE_COLUMN_DLG  // status(final|play)
245*ff0525f2SOliver-Rainer Wittmann    [
246*ff0525f2SOliver-Rainer Wittmann        ExecMethod = ExecDlg ;
247*ff0525f2SOliver-Rainer Wittmann        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
248*ff0525f2SOliver-Rainer Wittmann    ]
249*ff0525f2SOliver-Rainer Wittmann
250*ff0525f2SOliver-Rainer Wittmann    FN_FORMAT_PAGE_SETTING_DLG
251*ff0525f2SOliver-Rainer Wittmann    [
252*ff0525f2SOliver-Rainer Wittmann        ExecMethod = ExecDlg ;
253*ff0525f2SOliver-Rainer Wittmann        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
254*ff0525f2SOliver-Rainer Wittmann    ]
255cdf0e10cSrcweir
256cdf0e10cSrcweir    FN_CONVERT_TABLE_TO_TEXT
257cdf0e10cSrcweir    [
258cdf0e10cSrcweir        ExecMethod = Execute ;
259cdf0e10cSrcweir        StateMethod = GetState ;
260cdf0e10cSrcweir        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
261cdf0e10cSrcweir    ]
262cdf0e10cSrcweir
263cdf0e10cSrcweir    FN_CONVERT_TEXT_TO_TABLE
264cdf0e10cSrcweir    [
265cdf0e10cSrcweir        ExecMethod = Execute ;
266cdf0e10cSrcweir        StateMethod = GetState ;
267cdf0e10cSrcweir        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
268cdf0e10cSrcweir    ]
269cdf0e10cSrcweir    FN_CONVERT_TEXT_TABLE // status(final|play)
270cdf0e10cSrcweir	[
271cdf0e10cSrcweir		ExecMethod = Execute ;
272cdf0e10cSrcweir		StateMethod = GetState ;
273cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
274cdf0e10cSrcweir	]
275cdf0e10cSrcweir    FN_FORMAT_BORDER_DLG // status(final|play)
276cdf0e10cSrcweir	[
277cdf0e10cSrcweir		ExecMethod = ExecDlg ;
278cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
279cdf0e10cSrcweir	]
280cdf0e10cSrcweir
281cdf0e10cSrcweir	SID_ATTR_BORDER_INNER // status()
282cdf0e10cSrcweir	[
283cdf0e10cSrcweir		StateMethod = GetBorderState ;
284cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
285cdf0e10cSrcweir	]
286cdf0e10cSrcweir
287cdf0e10cSrcweir    	SID_ATTR_BORDER_OUTER // status()
288cdf0e10cSrcweir	[
289cdf0e10cSrcweir		ExecMethod = Execute ;
290cdf0e10cSrcweir		StateMethod = GetBorderState ;
291cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
292cdf0e10cSrcweir	]
293cdf0e10cSrcweir
294cdf0e10cSrcweir    SID_BORDER_REDUCED_MODE
295cdf0e10cSrcweir    [
296cdf0e10cSrcweir        StateMethod = GetBorderState ;
297cdf0e10cSrcweir        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
298cdf0e10cSrcweir    ]
299cdf0e10cSrcweir
300cdf0e10cSrcweir	FN_FORMAT_BACKGROUND_DLG  // status(final|play)
301cdf0e10cSrcweir	[
302cdf0e10cSrcweir		ExecMethod = ExecDlg ;
303cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
304cdf0e10cSrcweir	]
305cdf0e10cSrcweir
306cdf0e10cSrcweir	SfxBoolItem StyleWatercanMode SID_STYLE_WATERCAN // status()
307cdf0e10cSrcweir	[
308cdf0e10cSrcweir		SfxUInt16Item WatercanStyleModeOnOff
309cdf0e10cSrcweir		(
310cdf0e10cSrcweir			SfxStringItem Param SID_STYLE_WATERCAN ,
311cdf0e10cSrcweir			SfxUInt16Item Family SID_STYLE_FAMILY
312cdf0e10cSrcweir		) ;
313cdf0e10cSrcweir		ExecMethod = Execute ;
314cdf0e10cSrcweir		StateMethod = StateStyle ;
315cdf0e10cSrcweir        	NoRecord;
316cdf0e10cSrcweir		GroupId = GID_TEMPLATE ;
317cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
318cdf0e10cSrcweir	]
319cdf0e10cSrcweir
320cdf0e10cSrcweir	SID_STYLE_UPDATE_BY_EXAMPLE // status()
321cdf0e10cSrcweir	[
322cdf0e10cSrcweir		ExecMethod = Execute ;
323cdf0e10cSrcweir		StateMethod = StateStyle ;
324cdf0e10cSrcweir	]
325cdf0e10cSrcweir
326cdf0e10cSrcweir	SID_STYLE_NEW_BY_EXAMPLE // status(fina|play)
327cdf0e10cSrcweir	[
328cdf0e10cSrcweir		ExecMethod = Execute ;
329cdf0e10cSrcweir		StateMethod = StateStyle ;
330cdf0e10cSrcweir		FastCall = TRUE; // fuer Macroausfuehrung!
331cdf0e10cSrcweir	]
332cdf0e10cSrcweir	SID_STYLE_APPLY // status(fina|play)
333cdf0e10cSrcweir	[
334cdf0e10cSrcweir		ExecMethod = Execute ;
335cdf0e10cSrcweir		StateMethod = StateStyle ;
336cdf0e10cSrcweir		FastCall = TRUE;// fuer Macroausfuehrung!
337cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
338cdf0e10cSrcweir	]
339cdf0e10cSrcweir
340cdf0e10cSrcweir	SID_STYLE_FAMILY1 // status(fina|play)
341cdf0e10cSrcweir	[
342cdf0e10cSrcweir		StateMethod = StateStyle ;
343cdf0e10cSrcweir	]
344cdf0e10cSrcweir
345cdf0e10cSrcweir	SID_STYLE_FAMILY2 // status(fina|play)
346cdf0e10cSrcweir	[
347cdf0e10cSrcweir		StateMethod = StateStyle ;
348cdf0e10cSrcweir	]
349cdf0e10cSrcweir
350cdf0e10cSrcweir	SID_STYLE_FAMILY3 // status(fina|play)
351cdf0e10cSrcweir	[
352cdf0e10cSrcweir		StateMethod = StateStyle ;
353cdf0e10cSrcweir	]
354cdf0e10cSrcweir
355cdf0e10cSrcweir	SID_STYLE_FAMILY4 // status(fina|play)
356cdf0e10cSrcweir	[
357cdf0e10cSrcweir		StateMethod = StateStyle ;
358cdf0e10cSrcweir	]
359cdf0e10cSrcweir
360cdf0e10cSrcweir	SID_STYLE_FAMILY5 // status(fina|play)
361cdf0e10cSrcweir	[
362cdf0e10cSrcweir		StateMethod = StateStyle ;
363cdf0e10cSrcweir	]
364cdf0e10cSrcweir
365cdf0e10cSrcweir	 //OS: Selection.Escape gibt es zusaetzlich zu Window.Escape
366cdf0e10cSrcweir
367cdf0e10cSrcweir	FN_ESCAPE // status(final|play|rec)
368cdf0e10cSrcweir	[
369cdf0e10cSrcweir		ExecMethod = Execute ;
370cdf0e10cSrcweir	]
371cdf0e10cSrcweir
372cdf0e10cSrcweir	SID_IMAP
373cdf0e10cSrcweir	[
374cdf0e10cSrcweir		ExecMethod = Execute ;
375cdf0e10cSrcweir		StateMethod = GetState ;
376cdf0e10cSrcweir		Toggle = FALSE;
377cdf0e10cSrcweir	]
378cdf0e10cSrcweir
379cdf0e10cSrcweir	SID_IMAP_EXEC
380cdf0e10cSrcweir	[
381cdf0e10cSrcweir		ExecMethod = Execute ;
382cdf0e10cSrcweir		StateMethod = GetState ;
383cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
384cdf0e10cSrcweir	]
385cdf0e10cSrcweir// Methode fuer Rahmen und Objekte
386cdf0e10cSrcweir	FN_TOOL_ANKER
387cdf0e10cSrcweir	[
388cdf0e10cSrcweir		ExecMethod = Execute ;
389cdf0e10cSrcweir		StateMethod = GetState ;
390cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
391cdf0e10cSrcweir	]
392cdf0e10cSrcweir
393cdf0e10cSrcweir	FN_TOOL_ANKER_PARAGRAPH
394cdf0e10cSrcweir	[
395cdf0e10cSrcweir		ExecMethod = Execute ;
396cdf0e10cSrcweir		StateMethod = GetState ;
397cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
398cdf0e10cSrcweir	]
399cdf0e10cSrcweir
400cdf0e10cSrcweir	FN_TOOL_ANKER_CHAR
401cdf0e10cSrcweir	[
402cdf0e10cSrcweir		ExecMethod = Execute ;
403cdf0e10cSrcweir		StateMethod = GetState ;
404cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
405cdf0e10cSrcweir	]
406cdf0e10cSrcweir
407cdf0e10cSrcweir	FN_TOOL_ANKER_AT_CHAR
408cdf0e10cSrcweir	[
409cdf0e10cSrcweir		ExecMethod = Execute ;
410cdf0e10cSrcweir		StateMethod = GetState ;
411cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
412cdf0e10cSrcweir	]
413cdf0e10cSrcweir
414cdf0e10cSrcweir	FN_TOOL_ANKER_FRAME
415cdf0e10cSrcweir	[
416cdf0e10cSrcweir		ExecMethod = Execute ;
417cdf0e10cSrcweir		StateMethod = GetState ;
418cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
419cdf0e10cSrcweir	]
420cdf0e10cSrcweir
421cdf0e10cSrcweir	FN_UPDATE_ALL_LINKS // status()
422cdf0e10cSrcweir	[
423cdf0e10cSrcweir		ExecMethod = Execute ;
424cdf0e10cSrcweir		StateMethod = GetState ;
425cdf0e10cSrcweir	]
426cdf0e10cSrcweir
427cdf0e10cSrcweir/*-----------------22.01.97 09.41-------------------
428cdf0e10cSrcweir// ab hier immer Export = FALSE
429cdf0e10cSrcweir--------------------------------------------------*/
430cdf0e10cSrcweir
431cdf0e10cSrcweir	FN_FRAME_WRAP   // status()
432cdf0e10cSrcweir	[
433cdf0e10cSrcweir		ExecMethod = Execute ;
434cdf0e10cSrcweir		StateMethod = GetState ;
435cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
436cdf0e10cSrcweir		Export = FALSE;
437cdf0e10cSrcweir	]
438cdf0e10cSrcweir
439cdf0e10cSrcweir	FN_FRAME_WRAP_IDEAL // status()
440cdf0e10cSrcweir	[
441cdf0e10cSrcweir		ExecMethod = Execute ;
442cdf0e10cSrcweir		StateMethod = GetState ;
443cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
444cdf0e10cSrcweir		Export = FALSE;
445cdf0e10cSrcweir	]
446cdf0e10cSrcweir
447cdf0e10cSrcweir	FN_FRAME_NOWRAP   // status()
448cdf0e10cSrcweir	[
449cdf0e10cSrcweir		ExecMethod = Execute ;
450cdf0e10cSrcweir		StateMethod = GetState ;
451cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
452cdf0e10cSrcweir		Export = FALSE;
453cdf0e10cSrcweir	]
454cdf0e10cSrcweir
455cdf0e10cSrcweir	FN_FRAME_WRAPTHRU   // status()
456cdf0e10cSrcweir	[
457cdf0e10cSrcweir		ExecMethod = Execute ;
458cdf0e10cSrcweir		StateMethod = GetState ;
459cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
460cdf0e10cSrcweir		Export = FALSE;
461cdf0e10cSrcweir	]
462cdf0e10cSrcweir
463cdf0e10cSrcweir	FN_FRAME_WRAPTHRU_TRANSP // status()
464cdf0e10cSrcweir	[
465cdf0e10cSrcweir		ExecMethod = Execute ;
466cdf0e10cSrcweir		StateMethod = GetState ;
467cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
468cdf0e10cSrcweir		Export = FALSE;
469cdf0e10cSrcweir	]
470cdf0e10cSrcweir
471cdf0e10cSrcweir	FN_FRAME_WRAP_CONTOUR // status()
472cdf0e10cSrcweir	[
473cdf0e10cSrcweir		ExecMethod = Execute ;
474cdf0e10cSrcweir		StateMethod = GetState ;
475cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
476cdf0e10cSrcweir		Export = FALSE;
477cdf0e10cSrcweir	]
478cdf0e10cSrcweir
479cdf0e10cSrcweir	FN_WRAP_ANCHOR_ONLY // status()
480cdf0e10cSrcweir	[
481cdf0e10cSrcweir		ExecMethod = Execute ;
482cdf0e10cSrcweir		StateMethod = GetState ;
483cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
484cdf0e10cSrcweir		Export = FALSE;
485cdf0e10cSrcweir	]
486cdf0e10cSrcweir
487cdf0e10cSrcweir	FN_FRAME_WRAP_LEFT // status()
488cdf0e10cSrcweir	[
489cdf0e10cSrcweir		ExecMethod = Execute ;
490cdf0e10cSrcweir		StateMethod = GetState ;
491cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
492cdf0e10cSrcweir		Export = FALSE;
493cdf0e10cSrcweir	]
494cdf0e10cSrcweir
495cdf0e10cSrcweir	FN_FRAME_WRAP_RIGHT // status()
496cdf0e10cSrcweir	[
497cdf0e10cSrcweir		ExecMethod = Execute ;
498cdf0e10cSrcweir		StateMethod = GetState ;
499cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
500cdf0e10cSrcweir		Export = FALSE;
501cdf0e10cSrcweir	]
502cdf0e10cSrcweir
503cdf0e10cSrcweir
504cdf0e10cSrcweir
505cdf0e10cSrcweir	SID_GALLERY_BG_BRUSH
506cdf0e10cSrcweir	[
507cdf0e10cSrcweir		ExecMethod = ExecuteGallery;
508cdf0e10cSrcweir		StateMethod = GetGalleryState;
509cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
510cdf0e10cSrcweir		Export = FALSE;
511cdf0e10cSrcweir	]
512cdf0e10cSrcweir	SID_ATTR_BORDER_SHADOW // status(final|play)
513cdf0e10cSrcweir	[
514cdf0e10cSrcweir		ExecMethod = Execute ;
515cdf0e10cSrcweir		StateMethod = GetState ;
516cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
517cdf0e10cSrcweir	]
518cdf0e10cSrcweir
519cdf0e10cSrcweir	FN_XFORMS_DESIGN_MODE
520cdf0e10cSrcweir	[
521cdf0e10cSrcweir		ExecMethod = Execute;
522cdf0e10cSrcweir		StateMethod = GetState;
523cdf0e10cSrcweir	]
524cdf0e10cSrcweir}
525cdf0e10cSrcweir
526