xref: /AOO41X/main/sw/sdi/_viewsh.sdi (revision 69a743679e823ad8f875be547552acb607b8ada5)
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
10cdf0e10cSrcweir *
11a02241ffSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
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.
19cdf0e10cSrcweir *
20a02241ffSAndrew Rist *************************************************************/
21a02241ffSAndrew Rist
22a02241ffSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir
25cdf0e10cSrcweirinterface BaseTextEditView
26cdf0e10cSrcweir[
27cdf0e10cSrcweir	Automation = FALSE;
28cdf0e10cSrcweir]
29cdf0e10cSrcweir{
30cdf0e10cSrcweir	FN_REFRESH_VIEW // status(final|play)
31cdf0e10cSrcweir	[
32cdf0e10cSrcweir		ExecMethod = Execute ;
33cdf0e10cSrcweir	]
34cdf0e10cSrcweir	FN_PAGEUP // status(final|play)
35cdf0e10cSrcweir	[
36cdf0e10cSrcweir		ExecMethod = Execute ;
37cdf0e10cSrcweir		StateMethod = GetState ;
38cdf0e10cSrcweir	]
39cdf0e10cSrcweir	FN_PAGEUP_SEL // status()
40cdf0e10cSrcweir	[
41cdf0e10cSrcweir		ExecMethod = Execute ;
42cdf0e10cSrcweir		StateMethod = GetState ;
43cdf0e10cSrcweir	]
44cdf0e10cSrcweir	SID_UNDO // status(final|play)
45cdf0e10cSrcweir	[
46cdf0e10cSrcweir		ExecMethod = Execute ;
47cdf0e10cSrcweir		StateMethod = GetState ;
48cdf0e10cSrcweir	]
49cdf0e10cSrcweir	SID_FORMATPAINTBRUSH //
50cdf0e10cSrcweir    [
51cdf0e10cSrcweir        ExecMethod = ExecFormatPaintbrush ;
52cdf0e10cSrcweir        StateMethod = StateFormatPaintbrush ;
53cdf0e10cSrcweir        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
54cdf0e10cSrcweir    ]
55cdf0e10cSrcweir	SID_CLEARHISTORY // status(final|play)
56cdf0e10cSrcweir	[
57cdf0e10cSrcweir		ExecMethod = Execute ;
58cdf0e10cSrcweir		StateMethod = GetState ;
59cdf0e10cSrcweir	]
60cdf0e10cSrcweir	SID_CREATE_SW_DRAWVIEW
61cdf0e10cSrcweir	[
62cdf0e10cSrcweir		ExecMethod = Execute;
63cdf0e10cSrcweir	]
64cdf0e10cSrcweir	FN_PAGEDOWN // status(final|play)
65cdf0e10cSrcweir	[
66cdf0e10cSrcweir		ExecMethod = Execute ;
67cdf0e10cSrcweir		StateMethod = GetState ;
68cdf0e10cSrcweir	]
69cdf0e10cSrcweir	FN_PAGEDOWN_SEL // status()
70cdf0e10cSrcweir	[
71cdf0e10cSrcweir		ExecMethod = Execute ;
72cdf0e10cSrcweir		StateMethod = GetState ;
73cdf0e10cSrcweir	]
74cdf0e10cSrcweir	FN_NAVIGATION_PI_GOTO_PAGE // status(final|play)
75cdf0e10cSrcweir	[
76cdf0e10cSrcweir		ExecMethod = Execute ;
77cdf0e10cSrcweir		StateMethod = NoState ;
78cdf0e10cSrcweir	]
79cdf0e10cSrcweir	FN_SCROLL_NAVIGATION
80cdf0e10cSrcweir	[
81cdf0e10cSrcweir		ExecMethod = NoExec ;
82cdf0e10cSrcweir		StateMethod = NoState ;
83cdf0e10cSrcweir	]
84cdf0e10cSrcweir	FN_SCROLL_NEXT_PREV
85cdf0e10cSrcweir	[
86cdf0e10cSrcweir		ExecMethod = Execute;
87cdf0e10cSrcweir	]
88cdf0e10cSrcweir	FN_SET_PAGE_STYLE // status(final|play)
89cdf0e10cSrcweir	[
90cdf0e10cSrcweir		ExecMethod = ExecColl ;
91cdf0e10cSrcweir	]
92cdf0e10cSrcweir	SID_OBJECT_SELECT
93cdf0e10cSrcweir	[
94cdf0e10cSrcweir		ExecMethod = ExecDraw ;
95cdf0e10cSrcweir		StateMethod = GetDrawState ;
96cdf0e10cSrcweir	]
97cdf0e10cSrcweir    SID_BROWSER_MODE
98cdf0e10cSrcweir    [
99cdf0e10cSrcweir        ExecMethod = ExecViewOptions ;
100cdf0e10cSrcweir        StateMethod = StateViewOptions ;
101cdf0e10cSrcweir    ]
102cdf0e10cSrcweir    FN_PRINT_LAYOUT
103cdf0e10cSrcweir    [
104cdf0e10cSrcweir        ExecMethod = ExecViewOptions ;
105cdf0e10cSrcweir        StateMethod = StateViewOptions ;
106cdf0e10cSrcweir    ]
107cdf0e10cSrcweir    FN_REDLINE_PROTECT
108cdf0e10cSrcweir    [
109cdf0e10cSrcweir		ExecMethod = Execute;
110cdf0e10cSrcweir		StateMethod = GetState ;
111cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_MAILBOX_EDITOR";
112cdf0e10cSrcweir	]
113cdf0e10cSrcweir    FN_REDLINE_ON // status()
114cdf0e10cSrcweir	[
115cdf0e10cSrcweir		ExecMethod = Execute;
116cdf0e10cSrcweir		StateMethod = GetState ;
117cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_MAILBOX_EDITOR";
118cdf0e10cSrcweir	]
119cdf0e10cSrcweir	FN_REDLINE_SHOW // status()
120cdf0e10cSrcweir	[
121cdf0e10cSrcweir		ExecMethod = Execute;
122cdf0e10cSrcweir		StateMethod = GetState ;
123cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_MAILBOX_EDITOR";
124cdf0e10cSrcweir	]
125cdf0e10cSrcweir	FN_REDLINE_ACCEPT // status(play)
126cdf0e10cSrcweir	[
127cdf0e10cSrcweir		ExecMethod = Execute ;
128cdf0e10cSrcweir		StateMethod = GetState ;
129cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_MAILBOX_EDITOR";
130cdf0e10cSrcweir	]
131cdf0e10cSrcweir    FN_REDLINE_ACCEPT_DIRECT
132cdf0e10cSrcweir    [
133cdf0e10cSrcweir        ExecMethod = Execute ;
134cdf0e10cSrcweir        StateMethod = GetState ;
135cdf0e10cSrcweir        DisableFlags="SW_DISABLE_ON_MAILBOX_EDITOR";
136cdf0e10cSrcweir    ]
137cdf0e10cSrcweir    FN_REDLINE_REJECT_DIRECT
138cdf0e10cSrcweir    [
139cdf0e10cSrcweir        ExecMethod = Execute ;
140cdf0e10cSrcweir        StateMethod = GetState ;
141cdf0e10cSrcweir        DisableFlags="SW_DISABLE_ON_MAILBOX_EDITOR";
142cdf0e10cSrcweir    ]
143cdf0e10cSrcweir
144cdf0e10cSrcweir	SID_DOCUMENT_COMPARE // status(play)
145cdf0e10cSrcweir	[
146cdf0e10cSrcweir		ExecMethod = Execute ;
147cdf0e10cSrcweir		StateMethod = GetState ;
148cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_MAILBOX_EDITOR";
149cdf0e10cSrcweir	]
150cdf0e10cSrcweir	SID_DOCUMENT_MERGE // status(play)
151cdf0e10cSrcweir	[
152cdf0e10cSrcweir		ExecMethod = Execute ;
153cdf0e10cSrcweir		StateMethod = GetState ;
154cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_MAILBOX_EDITOR";
155cdf0e10cSrcweir	]
156cdf0e10cSrcweir	FN_ESCAPE // status(final|play|rec)
157cdf0e10cSrcweir	[
158cdf0e10cSrcweir		ExecMethod = Execute ;
159cdf0e10cSrcweir	]
160cdf0e10cSrcweir	FN_FAX // status(final|play)
161cdf0e10cSrcweir	[
162cdf0e10cSrcweir		ExecMethod = ExecutePrint ;
163cdf0e10cSrcweir	]
164cdf0e10cSrcweir	SID_PRINTDOC // status(final|play)
165cdf0e10cSrcweir	[
166cdf0e10cSrcweir		ExecMethod = ExecutePrint ;
167cdf0e10cSrcweir		StateMethod = GetState ;
168cdf0e10cSrcweir	]
169cdf0e10cSrcweir	SID_PRINTDOCDIRECT // status(final|play)
170cdf0e10cSrcweir	[
171cdf0e10cSrcweir		ExecMethod = ExecutePrint ;
172cdf0e10cSrcweir		StateMethod = GetState ;
173cdf0e10cSrcweir	]
174cdf0e10cSrcweir	SID_ATTR_LRSPACE
175cdf0e10cSrcweir	[
176cdf0e10cSrcweir		ExecMethod = ExecTabWin ;
177cdf0e10cSrcweir		StateMethod = StateTabWin ;
178cdf0e10cSrcweir		GroupId = GID_EDIT ;
179cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
180cdf0e10cSrcweir	]
181cdf0e10cSrcweir	SID_ATTR_ULSPACE
182cdf0e10cSrcweir	[
183cdf0e10cSrcweir		ExecMethod = ExecTabWin ;
184cdf0e10cSrcweir		StateMethod = StateTabWin ;
185cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
186cdf0e10cSrcweir	]
187cdf0e10cSrcweir	SID_ATTR_LONG_LRSPACE // status()
188cdf0e10cSrcweir	[
189cdf0e10cSrcweir		ExecMethod = ExecTabWin ;
190cdf0e10cSrcweir		StateMethod = StateTabWin ;
191cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
192cdf0e10cSrcweir	]
193cdf0e10cSrcweir    SID_ATTR_LONG_ULSPACE // status()
194cdf0e10cSrcweir	[
195cdf0e10cSrcweir		ExecMethod = ExecTabWin ;
196cdf0e10cSrcweir		StateMethod = StateTabWin ;
197cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
198cdf0e10cSrcweir	]
199cdf0e10cSrcweir	SID_ATTR_PARA_LRSPACE // status()
200cdf0e10cSrcweir	[
201cdf0e10cSrcweir		ExecMethod = ExecTabWin ;
202cdf0e10cSrcweir		StateMethod = StateTabWin ;
203cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
204cdf0e10cSrcweir	]
205cdf0e10cSrcweir    SID_ATTR_PARA_LRSPACE_VERTICAL // status()
206cdf0e10cSrcweir	[
207cdf0e10cSrcweir		ExecMethod = ExecTabWin ;
208cdf0e10cSrcweir		StateMethod = StateTabWin ;
209cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
210cdf0e10cSrcweir	]
211cdf0e10cSrcweir    SID_RULER_BORDERS // status()
212cdf0e10cSrcweir	[
213cdf0e10cSrcweir		ExecMethod = ExecTabWin ;
214cdf0e10cSrcweir		StateMethod = StateTabWin ;
215cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
216cdf0e10cSrcweir	]
217cdf0e10cSrcweir    SID_RULER_BORDERS_VERTICAL // status()
218cdf0e10cSrcweir	[
219cdf0e10cSrcweir		ExecMethod = ExecTabWin ;
220cdf0e10cSrcweir		StateMethod = StateTabWin ;
221cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
222cdf0e10cSrcweir	]
223cdf0e10cSrcweir    SID_RULER_BORDER_DISTANCE // status()
224cdf0e10cSrcweir	[
225cdf0e10cSrcweir		StateMethod = StateTabWin ;
226cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
227cdf0e10cSrcweir	]
228cdf0e10cSrcweir    SID_RULER_PAGE_POS // status()
229cdf0e10cSrcweir	[
230cdf0e10cSrcweir		ExecMethod = NoExec ;
231cdf0e10cSrcweir		StateMethod = StateTabWin ;
232cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
233cdf0e10cSrcweir	]
234cdf0e10cSrcweir    SID_RULER_TEXT_RIGHT_TO_LEFT
235cdf0e10cSrcweir    [
236cdf0e10cSrcweir        StateMethod = StateTabWin ;
237cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
238cdf0e10cSrcweir	]
239cdf0e10cSrcweir    SID_RULER_LR_MIN_MAX // status()
240cdf0e10cSrcweir	[
241cdf0e10cSrcweir		StateMethod = StateTabWin ;
242cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
243cdf0e10cSrcweir	]
244cdf0e10cSrcweir	SID_RULER_PROTECT // status()
245cdf0e10cSrcweir	[
246cdf0e10cSrcweir		StateMethod = StateTabWin ;
247cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
248cdf0e10cSrcweir	]
249cdf0e10cSrcweir    SID_RULER_ROWS // status()
250cdf0e10cSrcweir    [
251cdf0e10cSrcweir        ExecMethod = ExecTabWin ;
252cdf0e10cSrcweir        StateMethod = StateTabWin ;
253cdf0e10cSrcweir        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
254cdf0e10cSrcweir    ]
255cdf0e10cSrcweir    SID_RULER_ROWS_VERTICAL // status()
256cdf0e10cSrcweir    [
257cdf0e10cSrcweir        ExecMethod = ExecTabWin ;
258cdf0e10cSrcweir        StateMethod = StateTabWin ;
259cdf0e10cSrcweir        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
260cdf0e10cSrcweir    ]
261cdf0e10cSrcweir    FN_EDIT_LINK_DLG // status(final|play)
262cdf0e10cSrcweir	[
263cdf0e10cSrcweir		ExecMethod = Execute ;
264cdf0e10cSrcweir		StateMethod = GetState ;
265cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
266cdf0e10cSrcweir	]
267cdf0e10cSrcweir    FN_SPELL_GRAMMAR_DIALOG
268cdf0e10cSrcweir    [
269cdf0e10cSrcweir        ExecMethod = Execute ;
270cdf0e10cSrcweir        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
271cdf0e10cSrcweir    ]
272cdf0e10cSrcweir    SID_RECHECK_DOCUMENT
273cdf0e10cSrcweir    [
274cdf0e10cSrcweir        ExecMethod = Execute ;
275cdf0e10cSrcweir        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
276cdf0e10cSrcweir    ]
277cdf0e10cSrcweir	FN_LINE_NUMBERING_DLG // status()
278cdf0e10cSrcweir	[
279cdf0e10cSrcweir		ExecMethod = Execute;
280cdf0e10cSrcweir	]
281cdf0e10cSrcweir	FN_UPDATE_TOX // status()
282cdf0e10cSrcweir	[
283cdf0e10cSrcweir		ExecMethod = Execute ;
284cdf0e10cSrcweir		StateMethod = GetState ;
285cdf0e10cSrcweir		MenuConfig , AccelConfig , ToolBoxConfig ;
286cdf0e10cSrcweir
287cdf0e10cSrcweir	]
288cdf0e10cSrcweir	FN_UPDATE_CUR_TOX // status()
289cdf0e10cSrcweir	[
290cdf0e10cSrcweir		ExecMethod = Execute ;
291cdf0e10cSrcweir		StateMethod = GetState ;
292cdf0e10cSrcweir	]
293cdf0e10cSrcweir	FN_EDIT_CURRENT_TOX // status()
294cdf0e10cSrcweir	[
295cdf0e10cSrcweir		ExecMethod = Execute ;
296cdf0e10cSrcweir		StateMethod = GetState ;
297cdf0e10cSrcweir	]
298cdf0e10cSrcweir	SID_TWAIN_SELECT
299cdf0e10cSrcweir	[
300cdf0e10cSrcweir		ExecMethod = Execute ;
301cdf0e10cSrcweir		StateMethod = GetState ;
302cdf0e10cSrcweir	]
303cdf0e10cSrcweir	SID_TWAIN_TRANSFER
304cdf0e10cSrcweir	[
305cdf0e10cSrcweir		ExecMethod = Execute ;
306cdf0e10cSrcweir		StateMethod = GetState ;
307cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
308cdf0e10cSrcweir	]
309cdf0e10cSrcweir	 //---------------------------------------------------------------------
310cdf0e10cSrcweir	 //Ab hier Statusleiste
311cdf0e10cSrcweir	FN_STAT_PAGE // status()
312cdf0e10cSrcweir	[
313cdf0e10cSrcweir		ExecMethod = ExecuteStatusLine ;
314cdf0e10cSrcweir		StateMethod = StateStatusLine ;
315cdf0e10cSrcweir	]
316cdf0e10cSrcweir	FN_STAT_BOOKMARK // status()
317cdf0e10cSrcweir	[
318cdf0e10cSrcweir		ExecMethod = ExecuteStatusLine ;
319cdf0e10cSrcweir	]
320cdf0e10cSrcweir	FN_STAT_TEMPLATE // status(final|play)
321cdf0e10cSrcweir	[
322cdf0e10cSrcweir		ExecMethod = ExecuteStatusLine ;
323cdf0e10cSrcweir		StateMethod = StateStatusLine ;
324cdf0e10cSrcweir	]
325cdf0e10cSrcweir	FN_STAT_SELMODE // status(final|play)
326cdf0e10cSrcweir	[
327cdf0e10cSrcweir		 //Aktueller Selektionsmode: 0 == Normal, 2 == Ergaenzen, 1 == Erweitern
328cdf0e10cSrcweir		ExecMethod = ExecuteStatusLine ;
329cdf0e10cSrcweir		StateMethod = StateStatusLine ;
330cdf0e10cSrcweir	]
331cdf0e10cSrcweir	FN_SET_ADD_MODE // status()
332cdf0e10cSrcweir	[
333cdf0e10cSrcweir		ExecMethod = ExecuteStatusLine ;
334cdf0e10cSrcweir		StateMethod = NoState ;
335cdf0e10cSrcweir	]
336cdf0e10cSrcweir	FN_SET_EXT_MODE // status()
337cdf0e10cSrcweir	[
338cdf0e10cSrcweir		ExecMethod = ExecuteStatusLine ;
339cdf0e10cSrcweir		StateMethod = NoState ;
340cdf0e10cSrcweir	]
341cdf0e10cSrcweir	SID_ATTR_ZOOM // status(final|play)
342cdf0e10cSrcweir	[
343cdf0e10cSrcweir		ExecMethod = ExecuteStatusLine ;
344cdf0e10cSrcweir		StateMethod = StateStatusLine ;
345cdf0e10cSrcweir	]
346cdf0e10cSrcweir        SID_ATTR_VIEWLAYOUT // status()
347cdf0e10cSrcweir        [
348cdf0e10cSrcweir                ExecMethod = ExecuteStatusLine ;
349cdf0e10cSrcweir                StateMethod = StateStatusLine ;
350cdf0e10cSrcweir        ]
351cdf0e10cSrcweir        SID_ATTR_ZOOMSLIDER // status()
352cdf0e10cSrcweir        [
353cdf0e10cSrcweir                ExecMethod = ExecuteStatusLine ;
354cdf0e10cSrcweir                StateMethod = StateStatusLine ;
355cdf0e10cSrcweir        ]
356cdf0e10cSrcweir        SID_ATTR_INSERT // status(final|play|rec)
357cdf0e10cSrcweir	[
358cdf0e10cSrcweir		ExecMethod = ExecuteStatusLine ;
359cdf0e10cSrcweir		StateMethod = StateStatusLine ;
360cdf0e10cSrcweir	]
361cdf0e10cSrcweir	SID_ATTR_SIZE // status()
362cdf0e10cSrcweir	[
363cdf0e10cSrcweir		ExecMethod = ExecuteStatusLine ;
364cdf0e10cSrcweir		StateMethod = StateStatusLine ;
365cdf0e10cSrcweir	]
366cdf0e10cSrcweir	SID_ATTR_POSITION // status()
367cdf0e10cSrcweir	[
368cdf0e10cSrcweir		StateMethod = StateStatusLine ;
369cdf0e10cSrcweir	]
370cdf0e10cSrcweir	SID_TABLE_CELL // status()
371cdf0e10cSrcweir	[
372cdf0e10cSrcweir		StateMethod = StateStatusLine ;
373cdf0e10cSrcweir	]
374cdf0e10cSrcweir	 //----------------------------------------------
375cdf0e10cSrcweir	 //End mit Statusleiste
376cdf0e10cSrcweir	 //----------------------------------------------
377cdf0e10cSrcweir	SID_ATTR_BORDER_SHADOW // status()
378cdf0e10cSrcweir	[
379cdf0e10cSrcweir		ExecMethod = Execute ;
380cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
381cdf0e10cSrcweir	]
382cdf0e10cSrcweir	/****************************************************/
383cdf0e10cSrcweir	/*													*/
384cdf0e10cSrcweir	/*		 Properties Seitenformat					*/
385cdf0e10cSrcweir	/*													*/
386cdf0e10cSrcweir	/****************************************************/
387cdf0e10cSrcweir	SID_ATTR_PAGE // status()
388cdf0e10cSrcweir	[
389cdf0e10cSrcweir		ExecMethod = Execute ;
390cdf0e10cSrcweir		StateMethod = GetState ;
391cdf0e10cSrcweir	]
392cdf0e10cSrcweir	SID_ATTR_PAGE_SIZE // status(final|play)
393cdf0e10cSrcweir	[
394cdf0e10cSrcweir		ExecMethod = Execute ;
395cdf0e10cSrcweir		StateMethod = GetState ;
396cdf0e10cSrcweir	]
397cdf0e10cSrcweir	SID_ATTR_PAGE_MAXSIZE // status()
398cdf0e10cSrcweir	[
399cdf0e10cSrcweir		Export = FALSE ;
400cdf0e10cSrcweir		ExecMethod = Execute ;
401cdf0e10cSrcweir	]
402cdf0e10cSrcweir	SID_ATTR_PAGE_PAPERBIN // status(final|play)
403cdf0e10cSrcweir	[
404cdf0e10cSrcweir		ExecMethod = Execute ;
405cdf0e10cSrcweir		StateMethod = GetState ;
406cdf0e10cSrcweir	]
407766ce4d0SZheng Fan
408766ce4d0SZheng Fan	SID_ATTR_PARA_ULSPACE
409766ce4d0SZheng Fan	[
410766ce4d0SZheng Fan		ExecMethod = ExecTabWin ;
411766ce4d0SZheng Fan    	StateMethod = StateTabWin ;
412766ce4d0SZheng Fan	]
413766ce4d0SZheng Fan
4148a2dd8f0SOliver-Rainer Wittmann    SID_ATTR_PAGE_COLUMN
415ff0525f2SOliver-Rainer Wittmann    [
416ff0525f2SOliver-Rainer Wittmann        ExecMethod = ExecTabWin ;
417ff0525f2SOliver-Rainer Wittmann        StateMethod = StateTabWin ;
418ff0525f2SOliver-Rainer Wittmann    ]
4198a2dd8f0SOliver-Rainer Wittmann    SID_ATTR_PAGE_ULSPACE
4208a2dd8f0SOliver-Rainer Wittmann    [
4218a2dd8f0SOliver-Rainer Wittmann        ExecMethod = ExecTabWin ;
4228a2dd8f0SOliver-Rainer Wittmann        StateMethod = StateTabWin ;
4238a2dd8f0SOliver-Rainer Wittmann        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
4248a2dd8f0SOliver-Rainer Wittmann    ]
4258a2dd8f0SOliver-Rainer Wittmann    SID_ATTR_PAGE_LRSPACE
4268a2dd8f0SOliver-Rainer Wittmann    [
4278a2dd8f0SOliver-Rainer Wittmann        ExecMethod = ExecTabWin ;
4288a2dd8f0SOliver-Rainer Wittmann        StateMethod = StateTabWin ;
4298a2dd8f0SOliver-Rainer Wittmann        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
4308a2dd8f0SOliver-Rainer Wittmann    ]
431ff0525f2SOliver-Rainer Wittmann
432cdf0e10cSrcweir    SID_THESAURUS // status(final|play)
433cdf0e10cSrcweir	[
434cdf0e10cSrcweir		ExecMethod = ExecLingu ;
435cdf0e10cSrcweir		StateMethod = GetState ;
436cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
437cdf0e10cSrcweir	]
438cdf0e10cSrcweir        SID_HANGUL_HANJA_CONVERSION // status(final|play)
439cdf0e10cSrcweir        [
440cdf0e10cSrcweir                ExecMethod = ExecLingu ;
441cdf0e10cSrcweir                StateMethod = GetState ;
442cdf0e10cSrcweir                DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
443cdf0e10cSrcweir        ]
444cdf0e10cSrcweir        SID_CHINESE_CONVERSION
445cdf0e10cSrcweir        [
446cdf0e10cSrcweir                ExecMethod = ExecLingu ;
447cdf0e10cSrcweir                StateMethod = GetState ;
448cdf0e10cSrcweir                DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
449cdf0e10cSrcweir        ]
450cdf0e10cSrcweir    /*
451cdf0e10cSrcweir	suchen und ersetzen
452cdf0e10cSrcweir*/
453cdf0e10cSrcweir
454cdf0e10cSrcweir
455cdf0e10cSrcweir	SID_SEARCH_ITEM // status()
456cdf0e10cSrcweir	[
457cdf0e10cSrcweir		ExecMethod = ExecSearch ;
458cdf0e10cSrcweir		StateMethod = StateSearch ;
459cdf0e10cSrcweir		Export = FALSE;
460cdf0e10cSrcweir	]
461cdf0e10cSrcweir	FN_REPEAT_SEARCH // status(final|play)
462cdf0e10cSrcweir	[
463cdf0e10cSrcweir		ExecMethod = ExecSearch ;
464cdf0e10cSrcweir	]
465cdf0e10cSrcweir	FID_SEARCH_NOW // status()
466cdf0e10cSrcweir	[
467cdf0e10cSrcweir		ExecMethod = ExecSearch ;
468cdf0e10cSrcweir	]
469cdf0e10cSrcweir	SID_SEARCH_OPTIONS // status()
470cdf0e10cSrcweir	[
471cdf0e10cSrcweir		StateMethod = StateSearch ;
472cdf0e10cSrcweir	]
473cdf0e10cSrcweir	FID_SEARCH_SEARCHSET // status()
474cdf0e10cSrcweir	[
475cdf0e10cSrcweir		ExecMethod = ExecSearch ;
476cdf0e10cSrcweir	]
477cdf0e10cSrcweir	FID_SEARCH_REPLACESET // status()
478cdf0e10cSrcweir	[
479cdf0e10cSrcweir		ExecMethod = ExecSearch ;
480cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
481cdf0e10cSrcweir	]
482cdf0e10cSrcweir	SID_ATTR_TABSTOP // status()
483cdf0e10cSrcweir	[
484cdf0e10cSrcweir		ExecMethod = ExecTabWin ;
485cdf0e10cSrcweir		StateMethod = StateTabWin ;
486cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
487cdf0e10cSrcweir	]
488cdf0e10cSrcweir    SID_ATTR_TABSTOP_VERTICAL // status()
489cdf0e10cSrcweir	[
490cdf0e10cSrcweir		ExecMethod = ExecTabWin ;
491cdf0e10cSrcweir		StateMethod = StateTabWin ;
492cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
493cdf0e10cSrcweir	]
494cdf0e10cSrcweir    // ab hier Export = FALSE;
495cdf0e10cSrcweir	FID_SEARCH_ON // status()
496cdf0e10cSrcweir	[
497cdf0e10cSrcweir		ExecMethod = ExecSearch ;
498cdf0e10cSrcweir		Export = FALSE;
499cdf0e10cSrcweir	]
500cdf0e10cSrcweir	FID_SEARCH_OFF // status()
501cdf0e10cSrcweir	[
502cdf0e10cSrcweir		ExecMethod = ExecSearch ;
503cdf0e10cSrcweir		Export = FALSE;
504cdf0e10cSrcweir	]
505cdf0e10cSrcweir	FN_INSERT_CTRL
506cdf0e10cSrcweir	[
507cdf0e10cSrcweir		ExecMethod = Execute ;
508cdf0e10cSrcweir		StateMethod = GetState ;
509cdf0e10cSrcweir		Export = FALSE;
510cdf0e10cSrcweir   ]
511cdf0e10cSrcweir
512cdf0e10cSrcweir	SID_ATTR_DEFTABSTOP
513cdf0e10cSrcweir	[
514cdf0e10cSrcweir		ExecMethod = Execute ;
515cdf0e10cSrcweir		StateMethod = GetState ;
516cdf0e10cSrcweir		Export = FALSE;
517cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
518cdf0e10cSrcweir	]
519cdf0e10cSrcweir	SID_ATTR_LANGUAGE
520cdf0e10cSrcweir	[
521cdf0e10cSrcweir		ExecMethod = Execute ;
522cdf0e10cSrcweir		StateMethod = GetState ;
523cdf0e10cSrcweir		Export = FALSE;
524cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
525cdf0e10cSrcweir	]
526cdf0e10cSrcweir	SID_ATTR_CHAR_CJK_LANGUAGE
527cdf0e10cSrcweir	[
528cdf0e10cSrcweir		ExecMethod = Execute ;
529cdf0e10cSrcweir		StateMethod = GetState ;
530cdf0e10cSrcweir		Export = FALSE;
531cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
532cdf0e10cSrcweir	]
533cdf0e10cSrcweir	SID_ATTR_CHAR_CTL_LANGUAGE
534cdf0e10cSrcweir	[
535cdf0e10cSrcweir		ExecMethod = Execute ;
536cdf0e10cSrcweir		StateMethod = GetState ;
537cdf0e10cSrcweir		Export = FALSE;
538cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
539cdf0e10cSrcweir	]
540cdf0e10cSrcweir
541cdf0e10cSrcweir
542cdf0e10cSrcweir	SID_JUMPTOMARK
543cdf0e10cSrcweir	[
544cdf0e10cSrcweir		ExecMethod = Execute ;
545cdf0e10cSrcweir		StateMethod = NoState ;
546cdf0e10cSrcweir		FastCall , Cachable ;
547cdf0e10cSrcweir	]
548cdf0e10cSrcweir
549cdf0e10cSrcweir	FN_SYNC_LABELS	// status(play)
550cdf0e10cSrcweir	[
551cdf0e10cSrcweir		ExecMethod = Execute ;
552cdf0e10cSrcweir	]
553cdf0e10cSrcweir    FN_MAILMERGE_CHILDWINDOW
554cdf0e10cSrcweir    [
555cdf0e10cSrcweir        ExecMethod = Execute ;
556cdf0e10cSrcweir        StateMethod = GetState;
557cdf0e10cSrcweir    ]
558cdf0e10cSrcweir
559cdf0e10cSrcweir    FN_MAILMERGE_SENDMAIL_CHILDWINDOW
560cdf0e10cSrcweir    [
561cdf0e10cSrcweir        ExecMethod = Execute ;
562cdf0e10cSrcweir        StateMethod = GetState;
563cdf0e10cSrcweir    ]
564cdf0e10cSrcweir
565cdf0e10cSrcweir    SID_ATTR_BRUSH // status()
566cdf0e10cSrcweir	[
567cdf0e10cSrcweir		ExecMethod = Execute ;
568cdf0e10cSrcweir		StateMethod = GetState ;
569cdf0e10cSrcweir		DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
570cdf0e10cSrcweir	]
571cdf0e10cSrcweir	SID_GALLERY
572cdf0e10cSrcweir	[
573cdf0e10cSrcweir		ExecMethod = Execute ;
574cdf0e10cSrcweir		StateMethod = GetState ;
575cdf0e10cSrcweir	]
576cdf0e10cSrcweir	SID_AVMEDIA_PLAYER
577cdf0e10cSrcweir	[
578cdf0e10cSrcweir		ExecMethod = Execute ;
579cdf0e10cSrcweir		StateMethod = GetState ;
580cdf0e10cSrcweir	]
581cdf0e10cSrcweir    SID_VIEW_DATA_SOURCE_BROWSER   // status()
582cdf0e10cSrcweir	[
583cdf0e10cSrcweir        ExecMethod = Execute ;
584cdf0e10cSrcweir        StateMethod = GetState;
585cdf0e10cSrcweir	]
586cdf0e10cSrcweir    SID_READONLY_MODE // ole : no, status : no
587cdf0e10cSrcweir    [
588cdf0e10cSrcweir        StateMethod = GetState ;
589cdf0e10cSrcweir    ]
590cdf0e10cSrcweir    SID_IMAGE_ORIENTATION
591cdf0e10cSrcweir    [
592cdf0e10cSrcweir        StateMethod = GetState ;
593cdf0e10cSrcweir    ]
594cdf0e10cSrcweir    FN_INSERT_FIELD_DATA_ONLY // status(final|play)
595cdf0e10cSrcweir    [
596cdf0e10cSrcweir        ExecMethod = Execute ;
597cdf0e10cSrcweir        StateMethod = GetState ;
598cdf0e10cSrcweir    ]
599cdf0e10cSrcweir    FN_QRY_MERGE  // status()
600cdf0e10cSrcweir    [
601cdf0e10cSrcweir        ExecMethod = Execute ;
602cdf0e10cSrcweir        DisableFlags="SW_DISABLE_ON_MAILBOX_EDITOR";
603cdf0e10cSrcweir    ]
604cdf0e10cSrcweir    SID_ALIGN_ANY_LEFT
605cdf0e10cSrcweir    [
606cdf0e10cSrcweir        ExecMethod = Execute ;
607cdf0e10cSrcweir        StateMethod = GetState ;
608cdf0e10cSrcweir    ]
609cdf0e10cSrcweir    SID_ALIGN_ANY_HCENTER
610cdf0e10cSrcweir    [
611cdf0e10cSrcweir        ExecMethod = Execute ;
612cdf0e10cSrcweir        StateMethod = GetState ;
613cdf0e10cSrcweir    ]
614cdf0e10cSrcweir    SID_ALIGN_ANY_RIGHT
615cdf0e10cSrcweir    [
616cdf0e10cSrcweir        ExecMethod = Execute ;
617cdf0e10cSrcweir        StateMethod = GetState ;
618cdf0e10cSrcweir    ]
619cdf0e10cSrcweir    SID_ALIGN_ANY_JUSTIFIED
620cdf0e10cSrcweir    [
621cdf0e10cSrcweir        ExecMethod = Execute ;
622cdf0e10cSrcweir        StateMethod = GetState ;
623cdf0e10cSrcweir    ]
624cdf0e10cSrcweir    SID_ALIGN_ANY_TOP
625cdf0e10cSrcweir    [
626cdf0e10cSrcweir        ExecMethod = Execute ;
627cdf0e10cSrcweir        StateMethod = GetState ;
628cdf0e10cSrcweir    ]
629cdf0e10cSrcweir    SID_ALIGN_ANY_VCENTER
630cdf0e10cSrcweir    [
631cdf0e10cSrcweir        ExecMethod = Execute ;
632cdf0e10cSrcweir        StateMethod = GetState ;
633cdf0e10cSrcweir    ]
634cdf0e10cSrcweir    SID_ALIGN_ANY_BOTTOM
635cdf0e10cSrcweir    [
636cdf0e10cSrcweir        ExecMethod = Execute ;
637cdf0e10cSrcweir        StateMethod = GetState ;
638cdf0e10cSrcweir    ]
639cdf0e10cSrcweir    SID_RESTORE_EDITING_VIEW
640cdf0e10cSrcweir    [
641cdf0e10cSrcweir        ExecMethod = Execute ;
642cdf0e10cSrcweir        StateMethod = GetState ;
643cdf0e10cSrcweir    ]
644cdf0e10cSrcweir    SID_INSERT_GRAPHIC // status(final|play)
645cdf0e10cSrcweir    [
646cdf0e10cSrcweir        ExecMethod = Execute ;
647*69a74367SOliver-Rainer Wittmann        StateMethod = GetState ;
648cdf0e10cSrcweir        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
649cdf0e10cSrcweir    ]
650cdf0e10cSrcweir    SID_AUTOSPELL_CHECK
651cdf0e10cSrcweir    [
652cdf0e10cSrcweir        ExecMethod = ExecViewOptions ;
653cdf0e10cSrcweir        StateMethod = StateViewOptions ;
654cdf0e10cSrcweir    ]
655cdf0e10cSrcweir
656cdf0e10cSrcweir      //Extra/Optionen/Ansicht
657cdf0e10cSrcweir        //Wird zusammen zum Property ViewSettings
658cdf0e10cSrcweir    FN_VIEW_HIDDEN_PARA
659cdf0e10cSrcweir    [
660cdf0e10cSrcweir        ExecMethod = ExecViewOptions ;
661cdf0e10cSrcweir        StateMethod = StateViewOptions ;
662cdf0e10cSrcweir        Export = FALSE;
663cdf0e10cSrcweir    ]
664cdf0e10cSrcweir
665cdf0e10cSrcweir	FN_VIEW_NOTES
666cdf0e10cSrcweir    [
667cdf0e10cSrcweir        ExecMethod = ExecViewOptions ;
668cdf0e10cSrcweir        StateMethod = StateViewOptions ;
669cdf0e10cSrcweir        Export = FALSE;
670cdf0e10cSrcweir    ]
671cdf0e10cSrcweir     // alles ab hier kann weg (Export = FALSE;), wenn die vorangehenden funktionieren
672cdf0e10cSrcweir    FN_RULER // status()
673cdf0e10cSrcweir    [
674cdf0e10cSrcweir        ExecMethod = ExecViewOptions ;
675cdf0e10cSrcweir        StateMethod = StateViewOptions ;
676cdf0e10cSrcweir        Export = FALSE;
677cdf0e10cSrcweir        Cachable;
678cdf0e10cSrcweir        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
679cdf0e10cSrcweir    ]
680cdf0e10cSrcweir
681cdf0e10cSrcweir    FN_VIEW_BOUNDS // status()
682cdf0e10cSrcweir    [
683cdf0e10cSrcweir        ExecMethod = ExecViewOptions ;
684cdf0e10cSrcweir        StateMethod = StateViewOptions ;
685cdf0e10cSrcweir        Export = FALSE;
686cdf0e10cSrcweir        Cachable;
687cdf0e10cSrcweir    ]
688cdf0e10cSrcweir
689cdf0e10cSrcweir    FN_VIEW_GRAPHIC // status()
690cdf0e10cSrcweir    [
691cdf0e10cSrcweir        ExecMethod = ExecViewOptions ;
692cdf0e10cSrcweir        StateMethod = StateViewOptions ;
693cdf0e10cSrcweir        Export = FALSE ;
694cdf0e10cSrcweir    ]
695cdf0e10cSrcweir    FN_VIEW_FIELDS // status()
696cdf0e10cSrcweir    [
697cdf0e10cSrcweir        ExecMethod = ExecViewOptions ;
698cdf0e10cSrcweir        StateMethod = StateViewOptions ;
699cdf0e10cSrcweir        Export = FALSE;
700cdf0e10cSrcweir    ]
701cdf0e10cSrcweir
702cdf0e10cSrcweir    FN_VIEW_FIELDNAME // status()
703cdf0e10cSrcweir    [
704cdf0e10cSrcweir        ExecMethod = ExecViewOptions ;
705cdf0e10cSrcweir        StateMethod = StateViewOptions ;
706cdf0e10cSrcweir        Cachable ;
707cdf0e10cSrcweir        Export = FALSE;
708cdf0e10cSrcweir    ]
709cdf0e10cSrcweir
710cdf0e10cSrcweir    FN_VIEW_MARKS // status()
711cdf0e10cSrcweir    [
712cdf0e10cSrcweir        ExecMethod = ExecViewOptions ;
713cdf0e10cSrcweir        StateMethod = StateViewOptions ;
714cdf0e10cSrcweir        Cachable ;
715cdf0e10cSrcweir        Export = FALSE;
716cdf0e10cSrcweir    ]
717cdf0e10cSrcweir
718cdf0e10cSrcweir    FN_VIEW_META_CHARS // status()
719cdf0e10cSrcweir    [
720cdf0e10cSrcweir        ExecMethod = ExecViewOptions ;
721cdf0e10cSrcweir        StateMethod = StateViewOptions ;
722cdf0e10cSrcweir        Cachable ;
723cdf0e10cSrcweir        Export = FALSE;
724cdf0e10cSrcweir    ]
725cdf0e10cSrcweir
726cdf0e10cSrcweir    FN_VIEW_TABLEGRID // status()
727cdf0e10cSrcweir    [
728cdf0e10cSrcweir        ExecMethod = ExecViewOptions ;
729cdf0e10cSrcweir        StateMethod = StateViewOptions ;
730cdf0e10cSrcweir    ]
731cdf0e10cSrcweir
732cdf0e10cSrcweir    SID_GRID_VISIBLE
733cdf0e10cSrcweir    [
734cdf0e10cSrcweir        ExecMethod = ExecViewOptions;
735cdf0e10cSrcweir        StateMethod = StateViewOptions ;
736cdf0e10cSrcweir    ]
737cdf0e10cSrcweir    SID_GRID_USE
738cdf0e10cSrcweir    [
739cdf0e10cSrcweir        ExecMethod = ExecViewOptions;
740cdf0e10cSrcweir        StateMethod = StateViewOptions ;
741cdf0e10cSrcweir    ]
742cdf0e10cSrcweir    SID_HELPLINES_MOVE
743cdf0e10cSrcweir    [
744cdf0e10cSrcweir        ExecMethod = ExecViewOptions;
745cdf0e10cSrcweir        StateMethod = StateViewOptions ;
746cdf0e10cSrcweir    ]
747cdf0e10cSrcweir
748cdf0e10cSrcweir    FN_VLINEAL // status()
749cdf0e10cSrcweir    [
750cdf0e10cSrcweir        ExecMethod = ExecViewOptions ;
751cdf0e10cSrcweir        StateMethod = StateViewOptions ;
752cdf0e10cSrcweir        Export = FALSE;
753cdf0e10cSrcweir        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
754cdf0e10cSrcweir    ]
755cdf0e10cSrcweir
756cdf0e10cSrcweir    FN_HSCROLLBAR // status()
757cdf0e10cSrcweir    [
758cdf0e10cSrcweir        ExecMethod = ExecViewOptions ;
759cdf0e10cSrcweir        StateMethod = StateViewOptions ;
760cdf0e10cSrcweir        Export = FALSE;
761cdf0e10cSrcweir    ]
762cdf0e10cSrcweir
763cdf0e10cSrcweir    FN_VSCROLLBAR // status()
764cdf0e10cSrcweir    [
765cdf0e10cSrcweir        ExecMethod = ExecViewOptions ;
766cdf0e10cSrcweir        StateMethod = StateViewOptions ;
767cdf0e10cSrcweir        Export = FALSE;
768cdf0e10cSrcweir    ]
769cdf0e10cSrcweir
770cdf0e10cSrcweir    FN_SHADOWCURSOR // status(final|play)
771cdf0e10cSrcweir    [
772cdf0e10cSrcweir        ExecMethod = ExecViewOptions ;
773cdf0e10cSrcweir        StateMethod = StateViewOptions ;
774cdf0e10cSrcweir        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
775cdf0e10cSrcweir    ]
776cdf0e10cSrcweir}
777cdf0e10cSrcweir
778cdf0e10cSrcweirinterface GlobalContents
779cdf0e10cSrcweir[	uuid = "1FD80520-F517-11d0-AC9B-008029E867C6"; ]
780cdf0e10cSrcweir{
781cdf0e10cSrcweir	UINT16 	Type	FN_COLL_TYPE
782cdf0e10cSrcweir	(
783cdf0e10cSrcweir		UINT16	Position		FN_COLL_TYPE
784cdf0e10cSrcweir	)
785cdf0e10cSrcweir	[
786cdf0e10cSrcweir	]
787cdf0e10cSrcweir
788cdf0e10cSrcweir	// Bereichsname, Index-Titel oder Leerstring
789cdf0e10cSrcweir	String 	Title FN_COLL_TITLE
790cdf0e10cSrcweir	(
791cdf0e10cSrcweir		UINT16	Position		FN_COLL_TITLE
792cdf0e10cSrcweir	)
793cdf0e10cSrcweir	[
794cdf0e10cSrcweir	]
795cdf0e10cSrcweir	// ohne FileName wird ein TextBereich an der Position eingefuegt
796cdf0e10cSrcweir	BOOL	InsertDocument 	FN_COLL_ADD
797cdf0e10cSrcweir	(
798cdf0e10cSrcweir		UINT16	Position		FN_COLL_ADD,
799cdf0e10cSrcweir		UINT16 	FileName    	FN_PARAM_1
800cdf0e10cSrcweir	)
801cdf0e10cSrcweir	[
802cdf0e10cSrcweir	]
803cdf0e10cSrcweir
804cdf0e10cSrcweir}
805cdf0e10cSrcweir
806