xref: /aoo42x/main/sd/sdi/_drvwsh.sdi (revision 26734c99)
14b0f5a03SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
34b0f5a03SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
44b0f5a03SAndrew Rist * or more contributor license agreements.  See the NOTICE file
54b0f5a03SAndrew Rist * distributed with this work for additional information
64b0f5a03SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
74b0f5a03SAndrew Rist * to you under the Apache License, Version 2.0 (the
84b0f5a03SAndrew Rist * "License"); you may not use this file except in compliance
94b0f5a03SAndrew Rist * with the License.  You may obtain a copy of the License at
104b0f5a03SAndrew Rist *
114b0f5a03SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
124b0f5a03SAndrew Rist *
134b0f5a03SAndrew Rist * Unless required by applicable law or agreed to in writing,
144b0f5a03SAndrew Rist * software distributed under the License is distributed on an
154b0f5a03SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
164b0f5a03SAndrew Rist * KIND, either express or implied.  See the License for the
174b0f5a03SAndrew Rist * specific language governing permissions and limitations
184b0f5a03SAndrew Rist * under the License.
194b0f5a03SAndrew Rist *
204b0f5a03SAndrew Rist *************************************************************/
214b0f5a03SAndrew Rist
224b0f5a03SAndrew Rist
23cdf0e10cSrcweir
24*26734c99SArmin Le Grandenum SdrFitToSizeType
25*26734c99SArmin Le Grand{
26*26734c99SArmin Le Grand    SDRTEXTFIT_NONE ,
27*26734c99SArmin Le Grand    SDRTEXTFIT_PROPORTIONAL ,
28*26734c99SArmin Le Grand    SDRTEXTFIT_ALLLINES ,
29*26734c99SArmin Le Grand    SDRTEXTFIT_RESIZEATTR
30*26734c99SArmin Le Grand}
31cdf0e10cSrcweiritem UINT32 SvxObjectItem ;
32cdf0e10cSrcweiritem BOOL SdrShadowItem ;
33*26734c99SArmin Le Granditem SdrFitToSizeType SdrTextFitToSizeTypeItem ;
34cdf0e10cSrcweir
35cdf0e10cSrcweir
36cdf0e10cSrcweirinterface DrawView
37cdf0e10cSrcweir{
38cdf0e10cSrcweir	SID_JUMPTOMARK // ole : no, status : ?
39cdf0e10cSrcweir	[
40cdf0e10cSrcweir		ExecMethod = ExecCtrl ;
41cdf0e10cSrcweir		StateMethod = GetCtrlState ;
42cdf0e10cSrcweir	]
43cdf0e10cSrcweir    SID_SWITCHPAGE // ole : no, status : play rec
44cdf0e10cSrcweir    [
45cdf0e10cSrcweir        ExecMethod = ExecCtrl ;
46cdf0e10cSrcweir        StateMethod = GetCtrlState ;
47cdf0e10cSrcweir    ]
48cdf0e10cSrcweir    SID_SWITCHLAYER // ole : no, status : play rec
49cdf0e10cSrcweir    [
50cdf0e10cSrcweir        ExecMethod = ExecCtrl ;
51cdf0e10cSrcweir        StateMethod = GetCtrlState ;
52cdf0e10cSrcweir    ]
53cdf0e10cSrcweir    SID_RELOAD  // ole : no, status : ?
54cdf0e10cSrcweir    [
55cdf0e10cSrcweir        GroupId = GID_DOCUMENT ;
56cdf0e10cSrcweir        ExecMethod = ExecCtrl ;
57cdf0e10cSrcweir        StateMethod = GetCtrlState ;
58cdf0e10cSrcweir        Asynchron , AutoUpdate ,
59cdf0e10cSrcweir        MenuConfig , AccelConfig , ToolBoxConfig ;
60cdf0e10cSrcweir    ]
61cdf0e10cSrcweir    SID_PAGEMODE // ole : no, status : play rec
62cdf0e10cSrcweir    [
63cdf0e10cSrcweir        ExecMethod = ExecCtrl ;
64cdf0e10cSrcweir        StateMethod = GetMenuState ;
65cdf0e10cSrcweir    ]
66cdf0e10cSrcweir    SID_LAYERMODE // ole : no, status : play rec
67cdf0e10cSrcweir    [
68cdf0e10cSrcweir        ExecMethod = ExecCtrl ;
69cdf0e10cSrcweir        StateMethod = GetMenuState ;
70cdf0e10cSrcweir    ]
71cdf0e10cSrcweir    SID_OBJECTRESIZE // ole : no, status : ?
72cdf0e10cSrcweir    [
73cdf0e10cSrcweir        ExecMethod = ExecCtrl ;
74cdf0e10cSrcweir        StateMethod = GetMenuState ;
75cdf0e10cSrcweir    ]
76cdf0e10cSrcweir    SID_ORIGINAL_SIZE // ole : yes, status : ?
77cdf0e10cSrcweir    [
78cdf0e10cSrcweir        ExecMethod = FuTemporary ;
79cdf0e10cSrcweir        StateMethod = GetMenuState ;
80cdf0e10cSrcweir    ]
81cdf0e10cSrcweir	SID_SAVEGRAPHIC
82cdf0e10cSrcweir    [
83cdf0e10cSrcweir        ExecMethod = FuTemporary ;
84cdf0e10cSrcweir        StateMethod = GetMenuState ;
85cdf0e10cSrcweir    ]
86cdf0e10cSrcweir    SID_CUT // ole : no, status : ?
87cdf0e10cSrcweir    [
88cdf0e10cSrcweir        ExecMethod = FuSupport ;
89cdf0e10cSrcweir        StateMethod = GetMenuState ;
90cdf0e10cSrcweir    ]
91cdf0e10cSrcweir    SID_COPY // ole : no, status : ?
92cdf0e10cSrcweir    [
93cdf0e10cSrcweir        ExecMethod = FuSupport ;
94cdf0e10cSrcweir        StateMethod = GetMenuState ;
95cdf0e10cSrcweir    ]
96cdf0e10cSrcweir    SID_PASTE // ole : no, status : ?
97cdf0e10cSrcweir    [
98cdf0e10cSrcweir        ExecMethod = FuSupport ;
99cdf0e10cSrcweir        StateMethod = GetMenuState ;
100cdf0e10cSrcweir    ]
101cdf0e10cSrcweir	SID_CLIPBOARD_FORMAT_ITEMS
102cdf0e10cSrcweir	[
103cdf0e10cSrcweir        ExecMethod = FuSupport ;
104cdf0e10cSrcweir        StateMethod = GetMenuState ;
105cdf0e10cSrcweir	];
106cdf0e10cSrcweir    SID_DRAWINGMODE // ole : no, status : play rec
107cdf0e10cSrcweir    [
108cdf0e10cSrcweir        ExecMethod = FuSupport ;
109cdf0e10cSrcweir        StateMethod = GetMenuState ;
110cdf0e10cSrcweir    ]
111cdf0e10cSrcweir    SID_MASTERPAGE // ole : no, status : play rec
112cdf0e10cSrcweir    [
113cdf0e10cSrcweir        ExecMethod = FuSupport ;
114cdf0e10cSrcweir        StateMethod = GetMenuState ;
115cdf0e10cSrcweir    ]
116cdf0e10cSrcweir     // Menue-Messages fuer temporaere Funktionen mit Dialog
117cdf0e10cSrcweir    SID_ATTR_ZOOM // ole : no, status : no
118cdf0e10cSrcweir    [
119cdf0e10cSrcweir        ExecMethod = FuTemporary ;
120cdf0e10cSrcweir        StateMethod = GetStatusBarState ;
121cdf0e10cSrcweir    ]
122cdf0e10cSrcweir    SID_ATTR_ZOOMSLIDER // status()
123cdf0e10cSrcweir    [
124cdf0e10cSrcweir        ExecMethod = FuTemporary ;
125cdf0e10cSrcweir        StateMethod = GetStatusBarState ;
126cdf0e10cSrcweir    ]
127cdf0e10cSrcweir    SID_ATTRIBUTES_LINE // ole : no, status : no
128cdf0e10cSrcweir    [
129cdf0e10cSrcweir        ExecMethod = FuTemporary ;
130cdf0e10cSrcweir        StateMethod = GetMenuState ;
131cdf0e10cSrcweir    ]
132cdf0e10cSrcweir    SID_ATTRIBUTES_AREA // ole : no, status : no
133cdf0e10cSrcweir    [
134cdf0e10cSrcweir        ExecMethod = FuTemporary ;
135cdf0e10cSrcweir        StateMethod = GetMenuState ;
136cdf0e10cSrcweir    ]
137cdf0e10cSrcweir    SID_INSERTPAGE // ole : no, status : play rec
138cdf0e10cSrcweir    [
139cdf0e10cSrcweir        ExecMethod = FuTemporary ;
140cdf0e10cSrcweir        StateMethod = GetMenuState ;
141cdf0e10cSrcweir    ]
142cdf0e10cSrcweir    SID_INSERTPAGE_QUICK // ole : no, status : play rec
143cdf0e10cSrcweir    [
144cdf0e10cSrcweir        ExecMethod = FuTemporary ;
145cdf0e10cSrcweir        StateMethod = GetMenuState ;
146cdf0e10cSrcweir    ]
147cdf0e10cSrcweir    SID_HYPERLINK_SETLINK // ole : no, status : no
148cdf0e10cSrcweir    [
149cdf0e10cSrcweir        ExecMethod = FuTemporary ;
150cdf0e10cSrcweir    ]
151cdf0e10cSrcweir    SID_HYPERLINK_GETLINK // ole : no, status : no
152cdf0e10cSrcweir    [
153cdf0e10cSrcweir        StateMethod = GetCtrlState ;
154cdf0e10cSrcweir    ]
155cdf0e10cSrcweir    SID_READONLY_MODE // ole : no, status : no
156cdf0e10cSrcweir    [
157cdf0e10cSrcweir        StateMethod = GetCtrlState ;
158cdf0e10cSrcweir    ]
159cdf0e10cSrcweir    SID_RENAMEPAGE // ole : no, status : ?
160cdf0e10cSrcweir    [
161cdf0e10cSrcweir        ExecMethod = FuTemporary ;
162cdf0e10cSrcweir        StateMethod = GetMenuState ;
163cdf0e10cSrcweir    ]
164cdf0e10cSrcweir    SID_RENAMEPAGE_QUICK // ole : no, status : ?
165cdf0e10cSrcweir    [
166cdf0e10cSrcweir        ExecMethod = FuTemporary ;
167cdf0e10cSrcweir        StateMethod = GetMenuState ;
168cdf0e10cSrcweir    ]
169cdf0e10cSrcweir    SID_INSERTLAYER // ole : no, status : play rec
170cdf0e10cSrcweir    [
171cdf0e10cSrcweir        ExecMethod = FuTemporary ;
172cdf0e10cSrcweir        StateMethod = GetMenuState ;
173cdf0e10cSrcweir    ]
174cdf0e10cSrcweir    SID_MODIFYLAYER // ole : no, status : play rec
175cdf0e10cSrcweir    [
176cdf0e10cSrcweir        ExecMethod = FuTemporary ;
177cdf0e10cSrcweir        StateMethod = GetMenuState ;
178cdf0e10cSrcweir    ]
179cdf0e10cSrcweir    SID_RENAMELAYER // ole : no, status : ?
180cdf0e10cSrcweir    [
181cdf0e10cSrcweir        ExecMethod = FuTemporary ;
182cdf0e10cSrcweir        StateMethod = GetMenuState ;
183cdf0e10cSrcweir    ]
184cdf0e10cSrcweir    SID_NAVIGATOR // ole : no, status : ?
185cdf0e10cSrcweir    [
186cdf0e10cSrcweir        ExecMethod = FuTemporary ;
187cdf0e10cSrcweir        StateMethod = GetMenuState ;
188cdf0e10cSrcweir    ]
189cdf0e10cSrcweir    SID_3D_WIN // ole : no, status : ?
190cdf0e10cSrcweir    [
191cdf0e10cSrcweir        ExecMethod = FuTemporary ;
192cdf0e10cSrcweir        StateMethod = GetMenuState ;
193cdf0e10cSrcweir    ]
194cdf0e10cSrcweir    SID_3D_INIT // ole : no, status : ?
195cdf0e10cSrcweir    [
196cdf0e10cSrcweir        ExecMethod = ExecEffectWin ;
197cdf0e10cSrcweir        StateMethod = GetMenuState ;
198cdf0e10cSrcweir    ]
199cdf0e10cSrcweir    SID_3D_STATE // ole : no, status : ?
200cdf0e10cSrcweir    [
201cdf0e10cSrcweir        ExecMethod = ExecEffectWin ;
202cdf0e10cSrcweir        StateMethod = GetMenuState ;
203cdf0e10cSrcweir    ]
204cdf0e10cSrcweir    SID_3D_ASSIGN // ole : no, status : ?
205cdf0e10cSrcweir    [
206cdf0e10cSrcweir        ExecMethod = ExecEffectWin ;
207cdf0e10cSrcweir        StateMethod = GetMenuState ;
208cdf0e10cSrcweir    ]
209cdf0e10cSrcweir    SID_ATTR_TRANSFORM // ole : no, status : ?
210cdf0e10cSrcweir    [
211cdf0e10cSrcweir        ExecMethod = FuTemporary ;
212cdf0e10cSrcweir        StateMethod = GetMenuState ;
213cdf0e10cSrcweir    ]
214cdf0e10cSrcweir     /// !?
215cdf0e10cSrcweir    SID_CHAR_DLG // ole : no, status : ?
216cdf0e10cSrcweir    [
217cdf0e10cSrcweir        ExecMethod = FuTemporary ;
218cdf0e10cSrcweir        StateMethod = GetMenuState ;
219cdf0e10cSrcweir    ]
220cdf0e10cSrcweir    /* -> SVX
221cdf0e10cSrcweir    SID_PARA_DLG // ole : no, status : ?
222cdf0e10cSrcweir    [
223cdf0e10cSrcweir        ExecMethod = FuTemporary ;
224cdf0e10cSrcweir        StateMethod = GetMenuState ;
225cdf0e10cSrcweir    ]
226cdf0e10cSrcweir*/
227cdf0e10cSrcweir
228cdf0e10cSrcweir    SID_PARA_DLG // ole : no, status : ?
229cdf0e10cSrcweir    [
230cdf0e10cSrcweir        ExecMethod = FuTemporary ;
231cdf0e10cSrcweir        StateMethod = GetMenuState ;
232cdf0e10cSrcweir        GroupId = GID_DOCUMENT ;
233cdf0e10cSrcweir        Cachable , HasDialog , Export ,
234cdf0e10cSrcweir        MenuConfig , AccelConfig , ToolBoxConfig ;
235cdf0e10cSrcweir    ]
236cdf0e10cSrcweir    SID_CHARMAP // ole : no, status : ?
237cdf0e10cSrcweir    [
238cdf0e10cSrcweir        ExecMethod = FuTemporary ;
239cdf0e10cSrcweir        StateMethod = GetMenuState ;
240cdf0e10cSrcweir    ]
241cdf0e10cSrcweir    FN_INSERT_SOFT_HYPHEN // status(final|play)
242cdf0e10cSrcweir	[
243cdf0e10cSrcweir        ExecMethod = FuTemporary ;
244cdf0e10cSrcweir        StateMethod = GetMenuState ;
245cdf0e10cSrcweir	]
246cdf0e10cSrcweir	FN_INSERT_HARDHYPHEN // status()
247cdf0e10cSrcweir	[
248cdf0e10cSrcweir        ExecMethod = FuTemporary ;
249cdf0e10cSrcweir        StateMethod = GetMenuState ;
250cdf0e10cSrcweir	]
251cdf0e10cSrcweir	FN_INSERT_HARD_SPACE // status(final|play)
252cdf0e10cSrcweir	[
253cdf0e10cSrcweir        ExecMethod = FuTemporary ;
254cdf0e10cSrcweir        StateMethod = GetMenuState ;
255cdf0e10cSrcweir	]
256cdf0e10cSrcweir    SID_INSERT_RLM
257cdf0e10cSrcweir    [
258cdf0e10cSrcweir        ExecMethod = FuTemporary ;
259cdf0e10cSrcweir        StateMethod = GetMenuState ;
260cdf0e10cSrcweir    ]
261cdf0e10cSrcweir    SID_INSERT_LRM
262cdf0e10cSrcweir    [
263cdf0e10cSrcweir        ExecMethod = FuTemporary ;
264cdf0e10cSrcweir        StateMethod = GetMenuState ;
265cdf0e10cSrcweir    ]
266cdf0e10cSrcweir    SID_INSERT_ZWSP
267cdf0e10cSrcweir    [
268cdf0e10cSrcweir        ExecMethod = FuTemporary ;
269cdf0e10cSrcweir        StateMethod = GetMenuState ;
270cdf0e10cSrcweir    ]
271cdf0e10cSrcweir    SID_INSERT_ZWNBSP
272cdf0e10cSrcweir    [
273cdf0e10cSrcweir        ExecMethod = FuTemporary ;
274cdf0e10cSrcweir        StateMethod = GetMenuState ;
275cdf0e10cSrcweir    ]
276cdf0e10cSrcweir
277cdf0e10cSrcweir    SID_PASTE_SPECIAL // ole : no, status : ?
278cdf0e10cSrcweir    [
279cdf0e10cSrcweir        ExecMethod = FuTemporary ;
280cdf0e10cSrcweir        StateMethod = GetMenuState ;
281cdf0e10cSrcweir    ]
282cdf0e10cSrcweir
283cdf0e10cSrcweir    SID_INSERT_GRAPHIC // ole : no, status : todo
284cdf0e10cSrcweir    [
285cdf0e10cSrcweir        ExecMethod = FuTemporary ;
286cdf0e10cSrcweir        StateMethod = GetMenuState ;
287cdf0e10cSrcweir        GroupId = GID_INSERT ;
288cdf0e10cSrcweir        Cachable , HasDialog , Export , Asynchron ,
289cdf0e10cSrcweir        MenuConfig , AccelConfig , ToolBoxConfig ;
290cdf0e10cSrcweir    ]
291cdf0e10cSrcweir    SID_MANAGE_LINKS // ole : no, status : ?
292cdf0e10cSrcweir    [
293cdf0e10cSrcweir        ExecMethod = FuTemporary ;
294cdf0e10cSrcweir        StateMethod = GetMenuState ;
295cdf0e10cSrcweir    ]
296cdf0e10cSrcweir    SID_THESAURUS // ole : no, status : no
297cdf0e10cSrcweir    [
298cdf0e10cSrcweir        ExecMethod = FuTemporary ;
299cdf0e10cSrcweir        StateMethod = GetMenuState ;
300cdf0e10cSrcweir    ]
301cdf0e10cSrcweir    SID_ATTR_TABLE // ole : no, status : ?
302cdf0e10cSrcweir    [
303cdf0e10cSrcweir        ExecMethod = FuTemporary ;
304cdf0e10cSrcweir        StateMethod = GetMenuState ;
305cdf0e10cSrcweir    ]
306cdf0e10cSrcweir
307cdf0e10cSrcweir    SID_INSERT_DIAGRAM // ole : yes, status : ?
308cdf0e10cSrcweir    [
309cdf0e10cSrcweir        ExecMethod = FuTemporary ;
310cdf0e10cSrcweir        StateMethod = GetMenuState ;
311cdf0e10cSrcweir        GroupId = GID_DOCUMENT ;
312cdf0e10cSrcweir        Cachable , HasDialog , Export , Asynchron ,
313cdf0e10cSrcweir        MenuConfig , AccelConfig , ToolBoxConfig ;
314cdf0e10cSrcweir    ]
315cdf0e10cSrcweir    SID_BMPMASK // ole : yes, status : ?
316cdf0e10cSrcweir    [
317cdf0e10cSrcweir        ExecMethod = FuTemporary ;
318cdf0e10cSrcweir        StateMethod = GetMenuState ;
319cdf0e10cSrcweir    ]
320cdf0e10cSrcweir    SID_BMPMASK_PIPETTE // ole : no, status : ?
321cdf0e10cSrcweir    [
322cdf0e10cSrcweir        ExecMethod = ExecBmpMask ;
323cdf0e10cSrcweir        StateMethod = GetBmpMaskState ;
324cdf0e10cSrcweir    ]
325cdf0e10cSrcweir    SID_BMPMASK_EXEC // ole : no, status : ?
326cdf0e10cSrcweir    [
327cdf0e10cSrcweir        ExecMethod = ExecBmpMask ;
328cdf0e10cSrcweir        StateMethod = GetBmpMaskState ;
329cdf0e10cSrcweir    ]
330cdf0e10cSrcweir    SID_INSERT_OBJECT // ole : yes, status : ?
331cdf0e10cSrcweir    [
332cdf0e10cSrcweir        ExecMethod = FuTemporary ;
333cdf0e10cSrcweir        StateMethod = GetMenuState ;
334cdf0e10cSrcweir    ]
335cdf0e10cSrcweir    SID_INSERT_PLUGIN // ole : yes, status : ?
336cdf0e10cSrcweir    [
337cdf0e10cSrcweir        ExecMethod = FuTemporary ;
338cdf0e10cSrcweir        StateMethod = GetMenuState ;
339cdf0e10cSrcweir    ]
340cdf0e10cSrcweir    SID_INSERT_SOUND // ole : yes, status : ?
341cdf0e10cSrcweir    [
342cdf0e10cSrcweir        ExecMethod = FuTemporary ;
343cdf0e10cSrcweir        StateMethod = GetMenuState ;
344cdf0e10cSrcweir    ]
345cdf0e10cSrcweir	SID_INSERT_VIDEO // ole : yes, status : ?
346cdf0e10cSrcweir    [
347cdf0e10cSrcweir        ExecMethod = FuTemporary ;
348cdf0e10cSrcweir        StateMethod = GetMenuState ;
349cdf0e10cSrcweir    ]
350cdf0e10cSrcweir    SID_INSERT_FLOATINGFRAME // ole : yes, status : ?
351cdf0e10cSrcweir    [
352cdf0e10cSrcweir        ExecMethod = FuTemporary ;
353cdf0e10cSrcweir        StateMethod = GetMenuState ;
354cdf0e10cSrcweir    ]
355cdf0e10cSrcweir    SID_INSERT_IMAGE // ole : yes, status : ?
356cdf0e10cSrcweir    [
357cdf0e10cSrcweir        ExecMethod = FuTemporary ;
358cdf0e10cSrcweir        StateMethod = GetMenuState ;
359cdf0e10cSrcweir    ]
360cdf0e10cSrcweir    SID_INSERT_MATH // ole : yes, status : ?
361cdf0e10cSrcweir    [
362cdf0e10cSrcweir        ExecMethod = FuTemporary ;
363cdf0e10cSrcweir        StateMethod = GetMenuState ;
364cdf0e10cSrcweir    ]
365cdf0e10cSrcweir    SID_COPYOBJECTS // ole : no, status : ?
366cdf0e10cSrcweir    [
367cdf0e10cSrcweir        ExecMethod = FuTemporary ;
368cdf0e10cSrcweir        StateMethod = GetMenuState ;
369cdf0e10cSrcweir    ]
370cdf0e10cSrcweir    SID_PAGESETUP // ole : no, status : no
371cdf0e10cSrcweir    [
372cdf0e10cSrcweir        ExecMethod = FuTemporary ;
373cdf0e10cSrcweir        StateMethod = GetMenuState ;
374cdf0e10cSrcweir    ]
375cdf0e10cSrcweir    SID_PAGESIZE // ole : no, status : rec play
376cdf0e10cSrcweir    [
377cdf0e10cSrcweir        ExecMethod = FuTemporary ;
378cdf0e10cSrcweir        StateMethod = GetMenuState ;
379cdf0e10cSrcweir    ]
380cdf0e10cSrcweir    SID_PAGEMARGIN // ole : no, status : rec play
381cdf0e10cSrcweir    [
382cdf0e10cSrcweir        ExecMethod = FuTemporary ;
383cdf0e10cSrcweir        StateMethod = GetMenuState ;
384cdf0e10cSrcweir    ]
385cdf0e10cSrcweir    SID_SELECTAT // ole : no, status : play rec
386cdf0e10cSrcweir    [
387cdf0e10cSrcweir        ExecMethod = FuTemporary ;
388cdf0e10cSrcweir        StateMethod = GetMenuState ;
389cdf0e10cSrcweir    ]
390cdf0e10cSrcweir    SID_PRESENTATION_LAYOUT // ole : no, status : ?
391cdf0e10cSrcweir    [
392cdf0e10cSrcweir        ExecMethod = FuTemporary ;
393cdf0e10cSrcweir        StateMethod = GetMenuState ;
394cdf0e10cSrcweir    ]
395cdf0e10cSrcweir    SID_GROUP // ole : no, status : ?
396cdf0e10cSrcweir    [
397cdf0e10cSrcweir        ExecMethod = FuTemporary ;
398cdf0e10cSrcweir        StateMethod = GetMenuState ;
399cdf0e10cSrcweir        FastCall = FALSE ;
400cdf0e10cSrcweir    ]
401cdf0e10cSrcweir    SID_ENTER_GROUP // ole : no, status : ?
402cdf0e10cSrcweir    [
403cdf0e10cSrcweir        ExecMethod = FuTemporary ;
404cdf0e10cSrcweir        StateMethod = GetMenuState ;
405cdf0e10cSrcweir    ]
406cdf0e10cSrcweir    SID_LEAVE_GROUP // ole : no, status : ?
407cdf0e10cSrcweir    [
408cdf0e10cSrcweir        ExecMethod = FuTemporary ;
409cdf0e10cSrcweir        StateMethod = GetMenuState ;
410cdf0e10cSrcweir    ]
411cdf0e10cSrcweir    SID_LEAVE_ALL_GROUPS // ole : no, status : ?
412cdf0e10cSrcweir    [
413cdf0e10cSrcweir        ExecMethod = FuTemporary ;
414cdf0e10cSrcweir        StateMethod = GetMenuState ;
415cdf0e10cSrcweir    ]
416cdf0e10cSrcweir    SID_UNGROUP // ole : no, status : ?
417cdf0e10cSrcweir    [
418cdf0e10cSrcweir        ExecMethod = FuTemporary ;
419cdf0e10cSrcweir        StateMethod = GetMenuState ;
420cdf0e10cSrcweir        FastCall = FALSE ;
421cdf0e10cSrcweir    ]
422cdf0e10cSrcweir    SID_COMBINE // ole : no, status : ?
423cdf0e10cSrcweir    [
424cdf0e10cSrcweir        ExecMethod = FuTemporary ;
425cdf0e10cSrcweir        StateMethod = GetMenuState ;
426cdf0e10cSrcweir    ]
427cdf0e10cSrcweir    SID_DISTRIBUTE_DLG // ole : no, status : ?
428cdf0e10cSrcweir    [
429cdf0e10cSrcweir        ExecMethod = FuTemporary ;
430cdf0e10cSrcweir        StateMethod = GetMenuState ;
431cdf0e10cSrcweir    ]
432cdf0e10cSrcweir    SID_POLY_MERGE // ole : no, status : ?
433cdf0e10cSrcweir    [
434cdf0e10cSrcweir        ExecMethod = FuTemporary ;
435cdf0e10cSrcweir        StateMethod = GetMenuState ;
436cdf0e10cSrcweir    ]
437cdf0e10cSrcweir    SID_POLY_SUBSTRACT // ole : no, status : ?
438cdf0e10cSrcweir    [
439cdf0e10cSrcweir        ExecMethod = FuTemporary ;
440cdf0e10cSrcweir        StateMethod = GetMenuState ;
441cdf0e10cSrcweir    ]
442cdf0e10cSrcweir    SID_POLY_INTERSECT // ole : no, status : ?
443cdf0e10cSrcweir    [
444cdf0e10cSrcweir        ExecMethod = FuTemporary ;
445cdf0e10cSrcweir        StateMethod = GetMenuState ;
446cdf0e10cSrcweir    ]
447cdf0e10cSrcweir    SID_CONNECT // ole : no, status : ?
448cdf0e10cSrcweir    [
449cdf0e10cSrcweir        ExecMethod = FuTemporary ;
450cdf0e10cSrcweir        StateMethod = GetMenuState ;
451cdf0e10cSrcweir    ]
452cdf0e10cSrcweir    SID_DISMANTLE // ole : no, status : ?
453cdf0e10cSrcweir    [
454cdf0e10cSrcweir        ExecMethod = FuTemporary ;
455cdf0e10cSrcweir        StateMethod = GetMenuState ;
456cdf0e10cSrcweir    ]
457cdf0e10cSrcweir    SID_BREAK // ole : no, status : ?
458cdf0e10cSrcweir    [
459cdf0e10cSrcweir        ExecMethod = FuTemporary ;
460cdf0e10cSrcweir        StateMethod = GetMenuState ;
461cdf0e10cSrcweir    ]
462cdf0e10cSrcweir    SID_CONVERT_TO_3D // ole : no, status : ?
463cdf0e10cSrcweir    [
464cdf0e10cSrcweir        ExecMethod = FuTemporary ;
465cdf0e10cSrcweir        StateMethod = GetMenuState ;
466cdf0e10cSrcweir    ]
467cdf0e10cSrcweir    SID_CONVERT_TO_3D_LATHE // ole : no, status : ?
468cdf0e10cSrcweir    [
469cdf0e10cSrcweir        ExecMethod = FuPermanent ;
470cdf0e10cSrcweir        StateMethod = GetMenuState ;
471cdf0e10cSrcweir    ]
472cdf0e10cSrcweir    SID_CONVERT_TO_BITMAP // ole : no, status : ?
473cdf0e10cSrcweir    [
474cdf0e10cSrcweir        ExecMethod = FuTemporary ;
475cdf0e10cSrcweir        StateMethod = GetMenuState ;
476cdf0e10cSrcweir    ]
477cdf0e10cSrcweir    SID_CONVERT_TO_METAFILE // ole : no, status : ?
478cdf0e10cSrcweir    [
479cdf0e10cSrcweir        ExecMethod = FuTemporary ;
480cdf0e10cSrcweir        StateMethod = GetMenuState ;
481cdf0e10cSrcweir    ]
482cdf0e10cSrcweir    SID_FRAME_TO_TOP // ole : no, status : play rec
483cdf0e10cSrcweir    [
484cdf0e10cSrcweir        ExecMethod = FuTemporary ;
485cdf0e10cSrcweir        StateMethod = GetMenuState ;
486cdf0e10cSrcweir    ]
487cdf0e10cSrcweir    SID_MOREFRONT // ole : no, status : play rec
488cdf0e10cSrcweir    [
489cdf0e10cSrcweir        ExecMethod = FuTemporary ;
490cdf0e10cSrcweir        StateMethod = GetMenuState ;
491cdf0e10cSrcweir    ]
492cdf0e10cSrcweir    SID_BEFORE_OBJ // ole : no, status : no
493cdf0e10cSrcweir    [
494cdf0e10cSrcweir        ExecMethod = FuTemporary ;
495cdf0e10cSrcweir        StateMethod = GetMenuState ;
496cdf0e10cSrcweir    ]
497cdf0e10cSrcweir    SID_BEHIND_OBJ // ole : no, status : no
498cdf0e10cSrcweir    [
499cdf0e10cSrcweir        ExecMethod = FuTemporary ;
500cdf0e10cSrcweir        StateMethod = GetMenuState ;
501cdf0e10cSrcweir    ]
502cdf0e10cSrcweir    SID_REVERSE_ORDER // ole : no, status : play rec
503cdf0e10cSrcweir    [
504cdf0e10cSrcweir        ExecMethod = FuTemporary ;
505cdf0e10cSrcweir        StateMethod = GetMenuState ;
506cdf0e10cSrcweir    ]
507cdf0e10cSrcweir    SID_MOREBACK // ole : no, status : play rec
508cdf0e10cSrcweir    [
509cdf0e10cSrcweir        ExecMethod = FuTemporary ;
510cdf0e10cSrcweir        StateMethod = GetMenuState ;
511cdf0e10cSrcweir    ]
512cdf0e10cSrcweir    SID_FRAME_TO_BOTTOM // ole : no, status : play rec
513cdf0e10cSrcweir    [
514cdf0e10cSrcweir        ExecMethod = FuTemporary ;
515cdf0e10cSrcweir        StateMethod = GetMenuState ;
516cdf0e10cSrcweir    ]
517cdf0e10cSrcweir    SID_OBJECT_ALIGN_LEFT // ole : no, status : play rec
518cdf0e10cSrcweir    [
519cdf0e10cSrcweir        ExecMethod = FuTemporary ;
520cdf0e10cSrcweir        StateMethod = GetMenuState ;
521cdf0e10cSrcweir    ]
522cdf0e10cSrcweir    SID_OBJECT_ALIGN_CENTER // ole : no, status : play rec
523cdf0e10cSrcweir    [
524cdf0e10cSrcweir        ExecMethod = FuTemporary ;
525cdf0e10cSrcweir        StateMethod = GetMenuState ;
526cdf0e10cSrcweir    ]
527cdf0e10cSrcweir    SID_OBJECT_ALIGN_RIGHT // ole : no, status : play rec
528cdf0e10cSrcweir    [
529cdf0e10cSrcweir        ExecMethod = FuTemporary ;
530cdf0e10cSrcweir        StateMethod = GetMenuState ;
531cdf0e10cSrcweir    ]
532cdf0e10cSrcweir    SID_OBJECT_ALIGN_UP // ole : no, status : play rec
533cdf0e10cSrcweir    [
534cdf0e10cSrcweir        ExecMethod = FuTemporary ;
535cdf0e10cSrcweir        StateMethod = GetMenuState ;
536cdf0e10cSrcweir    ]
537cdf0e10cSrcweir    SID_OBJECT_ALIGN_MIDDLE // ole : no, status : play rec
538cdf0e10cSrcweir    [
539cdf0e10cSrcweir        ExecMethod = FuTemporary ;
540cdf0e10cSrcweir        StateMethod = GetMenuState ;
541cdf0e10cSrcweir    ]
542cdf0e10cSrcweir    SID_OBJECT_ALIGN_DOWN // ole : no, status : play rec
543cdf0e10cSrcweir    [
544cdf0e10cSrcweir        ExecMethod = FuTemporary ;
545cdf0e10cSrcweir        StateMethod = GetMenuState ;
546cdf0e10cSrcweir    ]
547cdf0e10cSrcweir    SID_SELECTALL // ole : no, status : ?
548cdf0e10cSrcweir    [
549cdf0e10cSrcweir        ExecMethod = FuTemporary ;
550cdf0e10cSrcweir        StateMethod = GetMenuState ;
551cdf0e10cSrcweir    ]
552cdf0e10cSrcweir    SID_ZOOM_NEXT // ole : no, status : play rec
553cdf0e10cSrcweir    [
554cdf0e10cSrcweir        ExecMethod = FuSupport ;
555cdf0e10cSrcweir        StateMethod = GetMenuState ;
556cdf0e10cSrcweir    ]
557cdf0e10cSrcweir    SID_ZOOM_PREV // ole : no, status : play rec
558cdf0e10cSrcweir    [
559cdf0e10cSrcweir        ExecMethod = FuSupport ;
560cdf0e10cSrcweir        StateMethod = GetMenuState ;
561cdf0e10cSrcweir    ]
562cdf0e10cSrcweir    SID_ZOOM_OUT // ole : no, status : play rec
563cdf0e10cSrcweir    [
564cdf0e10cSrcweir        ExecMethod = FuTemporary ;
565cdf0e10cSrcweir        StateMethod = GetMenuState ;
566cdf0e10cSrcweir    ]
567cdf0e10cSrcweir    SID_ZOOM_PANNING // ole : no, status : play rec
568cdf0e10cSrcweir    [
569cdf0e10cSrcweir        ExecMethod = FuTemporary ;
570cdf0e10cSrcweir        StateMethod = GetMenuState ;
571cdf0e10cSrcweir    ]
572cdf0e10cSrcweir    SID_ZOOM_IN // ole : no, status : play rec
573cdf0e10cSrcweir    [
574cdf0e10cSrcweir        ExecMethod = FuSupport ;
575cdf0e10cSrcweir        StateMethod = GetMenuState ;
576cdf0e10cSrcweir    ]
577cdf0e10cSrcweir    SID_SIZE_REAL // ole : no, status : play rec
578cdf0e10cSrcweir    [
579cdf0e10cSrcweir        ExecMethod = FuSupport ;
580cdf0e10cSrcweir        StateMethod = GetMenuState ;
581cdf0e10cSrcweir    ]
582cdf0e10cSrcweir    SID_SIZE_PAGE // ole : no, status : play rec
583cdf0e10cSrcweir    [
584cdf0e10cSrcweir        ExecMethod = FuSupport ;
585cdf0e10cSrcweir        StateMethod = GetMenuState ;
586cdf0e10cSrcweir    ]
587cdf0e10cSrcweir    SID_SIZE_VISAREA // ole : no, status : no
588cdf0e10cSrcweir    [
589cdf0e10cSrcweir        ExecMethod = FuSupport ;
590cdf0e10cSrcweir        StateMethod = GetMenuState ;
591cdf0e10cSrcweir    ]
592cdf0e10cSrcweir    SID_SIZE_PAGE_WIDTH // ole : no, status : play rec
593cdf0e10cSrcweir    [
594cdf0e10cSrcweir        ExecMethod = FuSupport ;
595cdf0e10cSrcweir        StateMethod = GetMenuState ;
596cdf0e10cSrcweir    ]
597cdf0e10cSrcweir    SID_SIZE_OPTIMAL // ole : no, status : play rec
598cdf0e10cSrcweir    [
599cdf0e10cSrcweir        ExecMethod = FuSupport ;
600cdf0e10cSrcweir        StateMethod = GetMenuState ;
601cdf0e10cSrcweir    ]
602cdf0e10cSrcweir    SID_SIZE_ALL // ole : no, status : ?
603cdf0e10cSrcweir    [
604cdf0e10cSrcweir        ExecMethod = FuSupport ;
605cdf0e10cSrcweir        StateMethod = GetMenuState ;
606cdf0e10cSrcweir    ]
607cdf0e10cSrcweir    SID_ZOOM // ole : no, status : play rec
608cdf0e10cSrcweir    [
609cdf0e10cSrcweir        ExecMethod = FuSupport ;
610cdf0e10cSrcweir        StateMethod = GetMenuState ;
611cdf0e10cSrcweir    ]
612cdf0e10cSrcweir    SID_DELETE // ole : no, status : ?
613cdf0e10cSrcweir    [
614cdf0e10cSrcweir        ExecMethod = FuSupport ;
615cdf0e10cSrcweir        StateMethod = GetMenuState ;
616cdf0e10cSrcweir        GroupId = GID_DOCUMENT ;
617cdf0e10cSrcweir        Cachable , Asynchron ,
618cdf0e10cSrcweir        MenuConfig , AccelConfig , ToolBoxConfig ;
619cdf0e10cSrcweir    ]
620cdf0e10cSrcweir    SID_CHANGEBEZIER // ole : no, status : ?
621cdf0e10cSrcweir    [
622cdf0e10cSrcweir        ExecMethod = FuTemporary ;
623cdf0e10cSrcweir        StateMethod = GetMenuState ;
624cdf0e10cSrcweir    ]
625cdf0e10cSrcweir    SID_CHANGEPOLYGON // ole : no, status : ?
626cdf0e10cSrcweir    [
627cdf0e10cSrcweir        ExecMethod = FuTemporary ;
628cdf0e10cSrcweir        StateMethod = GetMenuState ;
629cdf0e10cSrcweir        ReadOnlyDoc = FALSE ;
630cdf0e10cSrcweir    ]
631cdf0e10cSrcweir    SID_CONVERT_TO_CONTOUR // ole : no, status : ?
632cdf0e10cSrcweir    [
633cdf0e10cSrcweir        ExecMethod = FuTemporary ;
634cdf0e10cSrcweir        StateMethod = GetMenuState ;
635cdf0e10cSrcweir        ReadOnlyDoc = FALSE ;
636cdf0e10cSrcweir    ]
637cdf0e10cSrcweir    SID_CHOOSE_POLYGON // ole : no, status : ?
638cdf0e10cSrcweir    [
639cdf0e10cSrcweir        ExecMethod = FuTemporary ;
640cdf0e10cSrcweir        StateMethod = GetMenuState ;
641cdf0e10cSrcweir    ]
642cdf0e10cSrcweir    SID_OUTLINE_BULLET // ole : no, status : ?
643cdf0e10cSrcweir    [
644cdf0e10cSrcweir        ExecMethod = FuTemporary ;
645cdf0e10cSrcweir        StateMethod = GetMenuState ;
646cdf0e10cSrcweir		MenuConfig = TRUE;
647cdf0e10cSrcweir    ]
648cdf0e10cSrcweir    SID_ATTR_CHAR // ole : no, status : ?
649cdf0e10cSrcweir    [
650cdf0e10cSrcweir        ExecMethod = FuPermanent ;
651cdf0e10cSrcweir        StateMethod = GetMenuState ;
652cdf0e10cSrcweir    ]
653cdf0e10cSrcweir    SID_DRAW_TEXT_VERTICAL // ole : no, status : ?
654cdf0e10cSrcweir    [
655cdf0e10cSrcweir        ExecMethod = FuPermanent ;
656cdf0e10cSrcweir        StateMethod = GetMenuState ;
657cdf0e10cSrcweir    ]
658cdf0e10cSrcweir    SID_TEXTEDIT // ole : no, status : ?
659cdf0e10cSrcweir    [
660cdf0e10cSrcweir        ExecMethod = FuPermanent ;
661cdf0e10cSrcweir        StateMethod = GetMenuState ;
662cdf0e10cSrcweir    ]
663cdf0e10cSrcweir    SID_TEXT_FITTOSIZE // ole : no, status : ?
664cdf0e10cSrcweir    [
665cdf0e10cSrcweir        ExecMethod = FuPermanent ;
666cdf0e10cSrcweir        StateMethod = GetMenuState ;
667cdf0e10cSrcweir    ]
668cdf0e10cSrcweir    SID_TEXT_FITTOSIZE_VERTICAL // ole : no, status : ?
669cdf0e10cSrcweir    [
670cdf0e10cSrcweir        ExecMethod = FuPermanent ;
671cdf0e10cSrcweir        StateMethod = GetMenuState ;
672cdf0e10cSrcweir    ]
673cdf0e10cSrcweir	SID_VERTICALTEXT_STATE
674cdf0e10cSrcweir	[
675cdf0e10cSrcweir        StateMethod = GetMenuState ;
676cdf0e10cSrcweir	]
677cdf0e10cSrcweir    SID_CTLFONT_STATE
678cdf0e10cSrcweir    [
679cdf0e10cSrcweir        StateMethod = GetMenuState ;
680cdf0e10cSrcweir    ]
681cdf0e10cSrcweir
682cdf0e10cSrcweir    /* -> SVX
683cdf0e10cSrcweir    SID_OBJECT_ROTATE // ole : no, status : ?
684cdf0e10cSrcweir    [
685cdf0e10cSrcweir        ExecMethod = FuPermanent ;
686cdf0e10cSrcweir        StateMethod = GetMenuState ;
687cdf0e10cSrcweir    ]
688cdf0e10cSrcweir*/
689cdf0e10cSrcweir
690cdf0e10cSrcweir    SID_OBJECT_ROTATE // ole : no, status : ?
691cdf0e10cSrcweir    [
692cdf0e10cSrcweir        ExecMethod = FuPermanent ;
693cdf0e10cSrcweir        StateMethod = GetMenuState ;
694cdf0e10cSrcweir        GroupId = GID_DOCUMENT ;
695cdf0e10cSrcweir        Cachable , AutoUpdate ,
696cdf0e10cSrcweir        MenuConfig , AccelConfig , ToolBoxConfig ;
697cdf0e10cSrcweir    ]
698cdf0e10cSrcweir    SID_OBJECT_SHEAR // ole : no, status : ?
699cdf0e10cSrcweir    [
700cdf0e10cSrcweir        ExecMethod = FuPermanent ;
701cdf0e10cSrcweir        StateMethod = GetMenuState ;
702cdf0e10cSrcweir    ]
703cdf0e10cSrcweir    /* -> DB
704cdf0e10cSrcweir    SID_OBJECT_MIRROR // ole : no, status : play rec
705cdf0e10cSrcweir    [
706cdf0e10cSrcweir        ExecMethod = FuPermanent ;
707cdf0e10cSrcweir        StateMethod = GetMenuState ;
708cdf0e10cSrcweir    ]
709cdf0e10cSrcweir*/
710cdf0e10cSrcweir
711cdf0e10cSrcweir    SID_OBJECT_MIRROR // ole : no, status : play rec
712cdf0e10cSrcweir    [
713cdf0e10cSrcweir        ExecMethod = FuPermanent ;
714cdf0e10cSrcweir        StateMethod = GetMenuState ;
715cdf0e10cSrcweir    ]
716cdf0e10cSrcweir
717cdf0e10cSrcweir    SID_OBJECT_CROP // ole : no, status : play rec
718cdf0e10cSrcweir    [
719cdf0e10cSrcweir        ExecMethod = FuPermanent ;
720cdf0e10cSrcweir        StateMethod = GetMenuState ;
721cdf0e10cSrcweir    ]
722cdf0e10cSrcweir
723cdf0e10cSrcweir    SID_OBJECT_TRANSPARENCE // ole : no, status : ?
724cdf0e10cSrcweir    [
725cdf0e10cSrcweir        ExecMethod = FuPermanent ;
726cdf0e10cSrcweir        StateMethod = GetMenuState ;
727cdf0e10cSrcweir    ]
728cdf0e10cSrcweir    SID_OBJECT_GRADIENT // ole : no, status : ?
729cdf0e10cSrcweir    [
730cdf0e10cSrcweir        ExecMethod = FuPermanent ;
731cdf0e10cSrcweir        StateMethod = GetMenuState ;
732cdf0e10cSrcweir    ]
733cdf0e10cSrcweir
734cdf0e10cSrcweir    SID_OBJECT_CROOK_ROTATE // ole : no, status : ?
735cdf0e10cSrcweir    [
736cdf0e10cSrcweir        ExecMethod = FuPermanent ;
737cdf0e10cSrcweir        StateMethod = GetMenuState ;
738cdf0e10cSrcweir    ]
739cdf0e10cSrcweir    SID_OBJECT_CROOK_SLANT // ole : no, status : play rec
740cdf0e10cSrcweir    [
741cdf0e10cSrcweir        ExecMethod = FuPermanent ;
742cdf0e10cSrcweir        StateMethod = GetMenuState ;
743cdf0e10cSrcweir    ]
744cdf0e10cSrcweir    SID_OBJECT_CROOK_STRETCH // ole : no, status : play rec
745cdf0e10cSrcweir    [
746cdf0e10cSrcweir        ExecMethod = FuPermanent ;
747cdf0e10cSrcweir        StateMethod = GetMenuState ;
748cdf0e10cSrcweir    ]
749cdf0e10cSrcweir    SID_DRAW_RECT // ole : no, status : play rec
750cdf0e10cSrcweir    [
751cdf0e10cSrcweir        ExecMethod = FuPermanent ;
752cdf0e10cSrcweir        StateMethod = GetMenuState ;
753cdf0e10cSrcweir    ]
754cdf0e10cSrcweir    SID_DRAW_RECT_NOFILL // ole : no, status : play rec
755cdf0e10cSrcweir    [
756cdf0e10cSrcweir        ExecMethod = FuPermanent ;
757cdf0e10cSrcweir        StateMethod = GetMenuState ;
758cdf0e10cSrcweir    ]
759cdf0e10cSrcweir    SID_DRAW_RECT_ROUND // ole : no, status : play rec
760cdf0e10cSrcweir    [
761cdf0e10cSrcweir        ExecMethod = FuPermanent ;
762cdf0e10cSrcweir        StateMethod = GetMenuState ;
763cdf0e10cSrcweir    ]
764cdf0e10cSrcweir    SID_DRAW_RECT_ROUND_NOFILL // ole : no, status : play rec
765cdf0e10cSrcweir    [
766cdf0e10cSrcweir        ExecMethod = FuPermanent ;
767cdf0e10cSrcweir        StateMethod = GetMenuState ;
768cdf0e10cSrcweir    ]
769cdf0e10cSrcweir    SID_DRAW_SQUARE // ole : no, status : play rec
770cdf0e10cSrcweir    [
771cdf0e10cSrcweir        ExecMethod = FuPermanent ;
772cdf0e10cSrcweir        StateMethod = GetMenuState ;
773cdf0e10cSrcweir    ]
774cdf0e10cSrcweir    SID_DRAW_SQUARE_NOFILL // ole : no, status : play rec
775cdf0e10cSrcweir    [
776cdf0e10cSrcweir        ExecMethod = FuPermanent ;
777cdf0e10cSrcweir        StateMethod = GetMenuState ;
778cdf0e10cSrcweir    ]
779cdf0e10cSrcweir    SID_DRAW_SQUARE_ROUND // ole : no, status : play rec
780cdf0e10cSrcweir    [
781cdf0e10cSrcweir        ExecMethod = FuPermanent ;
782cdf0e10cSrcweir        StateMethod = GetMenuState ;
783cdf0e10cSrcweir    ]
784cdf0e10cSrcweir    SID_DRAW_SQUARE_ROUND_NOFILL // ole : no, status : play rec
785cdf0e10cSrcweir    [
786cdf0e10cSrcweir        ExecMethod = FuPermanent ;
787cdf0e10cSrcweir        StateMethod = GetMenuState ;
788cdf0e10cSrcweir    ]
789cdf0e10cSrcweir    SID_TOOL_CONNECTOR // ole : no, status : no
790cdf0e10cSrcweir    [
791cdf0e10cSrcweir        ExecMethod = FuPermanent ;
792cdf0e10cSrcweir        StateMethod = GetMenuState ;
793cdf0e10cSrcweir    ]
794cdf0e10cSrcweir    SID_CONNECTOR_ARROW_START // ole : no, status : no
795cdf0e10cSrcweir    [
796cdf0e10cSrcweir        ExecMethod = FuPermanent ;
797cdf0e10cSrcweir        StateMethod = GetMenuState ;
798cdf0e10cSrcweir    ]
799cdf0e10cSrcweir    SID_CONNECTOR_ARROW_END // ole : no, status : no
800cdf0e10cSrcweir    [
801cdf0e10cSrcweir        ExecMethod = FuPermanent ;
802cdf0e10cSrcweir        StateMethod = GetMenuState ;
803cdf0e10cSrcweir    ]
804cdf0e10cSrcweir    SID_CONNECTOR_ARROWS // ole : no, status : no
805cdf0e10cSrcweir    [
806cdf0e10cSrcweir        ExecMethod = FuPermanent ;
807cdf0e10cSrcweir        StateMethod = GetMenuState ;
808cdf0e10cSrcweir    ]
809cdf0e10cSrcweir    SID_CONNECTOR_CIRCLE_START // ole : no, status : no
810cdf0e10cSrcweir    [
811cdf0e10cSrcweir        ExecMethod = FuPermanent ;
812cdf0e10cSrcweir        StateMethod = GetMenuState ;
813cdf0e10cSrcweir    ]
814cdf0e10cSrcweir    SID_CONNECTOR_CIRCLE_END // ole : no, status : no
815cdf0e10cSrcweir    [
816cdf0e10cSrcweir        ExecMethod = FuPermanent ;
817cdf0e10cSrcweir        StateMethod = GetMenuState ;
818cdf0e10cSrcweir    ]
819cdf0e10cSrcweir    SID_CONNECTOR_CIRCLES // ole : no, status : no
820cdf0e10cSrcweir    [
821cdf0e10cSrcweir        ExecMethod = FuPermanent ;
822cdf0e10cSrcweir        StateMethod = GetMenuState ;
823cdf0e10cSrcweir    ]
824cdf0e10cSrcweir    SID_CONNECTOR_LINE // ole : no, status : no
825cdf0e10cSrcweir    [
826cdf0e10cSrcweir        ExecMethod = FuPermanent ;
827cdf0e10cSrcweir        StateMethod = GetMenuState ;
828cdf0e10cSrcweir    ]
829cdf0e10cSrcweir    SID_CONNECTOR_LINE_ARROW_START // ole : no, status : no
830cdf0e10cSrcweir    [
831cdf0e10cSrcweir        ExecMethod = FuPermanent ;
832cdf0e10cSrcweir        StateMethod = GetMenuState ;
833cdf0e10cSrcweir    ]
834cdf0e10cSrcweir    SID_CONNECTOR_LINE_ARROW_END // ole : no, status : no
835cdf0e10cSrcweir    [
836cdf0e10cSrcweir        ExecMethod = FuPermanent ;
837cdf0e10cSrcweir        StateMethod = GetMenuState ;
838cdf0e10cSrcweir    ]
839cdf0e10cSrcweir    SID_CONNECTOR_LINE_ARROWS // ole : no, status : no
840cdf0e10cSrcweir    [
841cdf0e10cSrcweir        ExecMethod = FuPermanent ;
842cdf0e10cSrcweir        StateMethod = GetMenuState ;
843cdf0e10cSrcweir    ]
844cdf0e10cSrcweir    SID_CONNECTOR_LINE_CIRCLE_START // ole : no, status : no
845cdf0e10cSrcweir    [
846cdf0e10cSrcweir        ExecMethod = FuPermanent ;
847cdf0e10cSrcweir        StateMethod = GetMenuState ;
848cdf0e10cSrcweir    ]
849cdf0e10cSrcweir    SID_CONNECTOR_LINE_CIRCLE_END // ole : no, status : no
850cdf0e10cSrcweir    [
851cdf0e10cSrcweir        ExecMethod = FuPermanent ;
852cdf0e10cSrcweir        StateMethod = GetMenuState ;
853cdf0e10cSrcweir    ]
854cdf0e10cSrcweir    SID_CONNECTOR_LINE_CIRCLES // ole : no, status : no
855cdf0e10cSrcweir    [
856cdf0e10cSrcweir        ExecMethod = FuPermanent ;
857cdf0e10cSrcweir        StateMethod = GetMenuState ;
858cdf0e10cSrcweir    ]
859cdf0e10cSrcweir    SID_CONNECTOR_CURVE // ole : no, status : no
860cdf0e10cSrcweir    [
861cdf0e10cSrcweir        ExecMethod = FuPermanent ;
862cdf0e10cSrcweir        StateMethod = GetMenuState ;
863cdf0e10cSrcweir    ]
864cdf0e10cSrcweir    SID_CONNECTOR_CURVE_ARROW_START // ole : no, status : no
865cdf0e10cSrcweir    [
866cdf0e10cSrcweir        ExecMethod = FuPermanent ;
867cdf0e10cSrcweir        StateMethod = GetMenuState ;
868cdf0e10cSrcweir    ]
869cdf0e10cSrcweir    SID_CONNECTOR_CURVE_ARROW_END // ole : no, status : no
870cdf0e10cSrcweir    [
871cdf0e10cSrcweir        ExecMethod = FuPermanent ;
872cdf0e10cSrcweir        StateMethod = GetMenuState ;
873cdf0e10cSrcweir    ]
874cdf0e10cSrcweir    SID_CONNECTOR_CURVE_ARROWS // ole : no, status : no
875cdf0e10cSrcweir    [
876cdf0e10cSrcweir        ExecMethod = FuPermanent ;
877cdf0e10cSrcweir        StateMethod = GetMenuState ;
878cdf0e10cSrcweir    ]
879cdf0e10cSrcweir    SID_CONNECTOR_CURVE_CIRCLE_START // ole : no, status : no
880cdf0e10cSrcweir    [
881cdf0e10cSrcweir        ExecMethod = FuPermanent ;
882cdf0e10cSrcweir        StateMethod = GetMenuState ;
883cdf0e10cSrcweir    ]
884cdf0e10cSrcweir    SID_CONNECTOR_CURVE_CIRCLE_END // ole : no, status : no
885cdf0e10cSrcweir    [
886cdf0e10cSrcweir        ExecMethod = FuPermanent ;
887cdf0e10cSrcweir        StateMethod = GetMenuState ;
888cdf0e10cSrcweir    ]
889cdf0e10cSrcweir    SID_CONNECTOR_CURVE_CIRCLES // ole : no, status : no
890cdf0e10cSrcweir    [
891cdf0e10cSrcweir        ExecMethod = FuPermanent ;
892cdf0e10cSrcweir        StateMethod = GetMenuState ;
893cdf0e10cSrcweir    ]
894cdf0e10cSrcweir    SID_CONNECTOR_LINES // ole : no, status : no
895cdf0e10cSrcweir    [
896cdf0e10cSrcweir        ExecMethod = FuPermanent ;
897cdf0e10cSrcweir        StateMethod = GetMenuState ;
898cdf0e10cSrcweir    ]
899cdf0e10cSrcweir    SID_CONNECTOR_LINES_ARROW_START // ole : no, status : no
900cdf0e10cSrcweir    [
901cdf0e10cSrcweir        ExecMethod = FuPermanent ;
902cdf0e10cSrcweir        StateMethod = GetMenuState ;
903cdf0e10cSrcweir    ]
904cdf0e10cSrcweir    SID_CONNECTOR_LINES_ARROW_END // ole : no, status : no
905cdf0e10cSrcweir    [
906cdf0e10cSrcweir        ExecMethod = FuPermanent ;
907cdf0e10cSrcweir        StateMethod = GetMenuState ;
908cdf0e10cSrcweir    ]
909cdf0e10cSrcweir    SID_CONNECTOR_LINES_ARROWS // ole : no, status : no
910cdf0e10cSrcweir    [
911cdf0e10cSrcweir        ExecMethod = FuPermanent ;
912cdf0e10cSrcweir        StateMethod = GetMenuState ;
913cdf0e10cSrcweir    ]
914cdf0e10cSrcweir    SID_CONNECTOR_LINES_CIRCLE_START // ole : no, status : no
915cdf0e10cSrcweir    [
916cdf0e10cSrcweir        ExecMethod = FuPermanent ;
917cdf0e10cSrcweir        StateMethod = GetMenuState ;
918cdf0e10cSrcweir    ]
919cdf0e10cSrcweir    SID_CONNECTOR_LINES_CIRCLE_END // ole : no, status : no
920cdf0e10cSrcweir    [
921cdf0e10cSrcweir        ExecMethod = FuPermanent ;
922cdf0e10cSrcweir        StateMethod = GetMenuState ;
923cdf0e10cSrcweir    ]
924cdf0e10cSrcweir    SID_CONNECTOR_LINES_CIRCLES // ole : no, status : no
925cdf0e10cSrcweir    [
926cdf0e10cSrcweir        ExecMethod = FuPermanent ;
927cdf0e10cSrcweir        StateMethod = GetMenuState ;
928cdf0e10cSrcweir    ]
929cdf0e10cSrcweir    SID_LINE_ARROW_START // ole : no, status : no
930cdf0e10cSrcweir    [
931cdf0e10cSrcweir        ExecMethod = FuPermanent ;
932cdf0e10cSrcweir        StateMethod = GetMenuState ;
933cdf0e10cSrcweir    ]
934cdf0e10cSrcweir    SID_LINE_ARROW_END // ole : no, status : no
935cdf0e10cSrcweir    [
936cdf0e10cSrcweir        ExecMethod = FuPermanent ;
937cdf0e10cSrcweir        StateMethod = GetMenuState ;
938cdf0e10cSrcweir    ]
939cdf0e10cSrcweir    SID_LINE_ARROWS // ole : no, status : no
940cdf0e10cSrcweir    [
941cdf0e10cSrcweir        ExecMethod = FuPermanent ;
942cdf0e10cSrcweir        StateMethod = GetMenuState ;
943cdf0e10cSrcweir    ]
944cdf0e10cSrcweir    SID_LINE_ARROW_CIRCLE // ole : no, status : no
945cdf0e10cSrcweir    [
946cdf0e10cSrcweir        ExecMethod = FuPermanent ;
947cdf0e10cSrcweir        StateMethod = GetMenuState ;
948cdf0e10cSrcweir    ]
949cdf0e10cSrcweir    SID_LINE_CIRCLE_ARROW // ole : no, status : no
950cdf0e10cSrcweir    [
951cdf0e10cSrcweir        ExecMethod = FuPermanent ;
952cdf0e10cSrcweir        StateMethod = GetMenuState ;
953cdf0e10cSrcweir    ]
954cdf0e10cSrcweir    SID_LINE_ARROW_SQUARE // ole : no, status : no
955cdf0e10cSrcweir    [
956cdf0e10cSrcweir        ExecMethod = FuPermanent ;
957cdf0e10cSrcweir        StateMethod = GetMenuState ;
958cdf0e10cSrcweir    ]
959cdf0e10cSrcweir    SID_LINE_SQUARE_ARROW // ole : no, status : no
960cdf0e10cSrcweir    [
961cdf0e10cSrcweir        ExecMethod = FuPermanent ;
962cdf0e10cSrcweir        StateMethod = GetMenuState ;
963cdf0e10cSrcweir    ]
964cdf0e10cSrcweir    SID_DRAW_CAPTION // ole : no, status : no
965cdf0e10cSrcweir    [
966cdf0e10cSrcweir        ExecMethod = FuPermanent ;
967cdf0e10cSrcweir        StateMethod = GetMenuState ;
968cdf0e10cSrcweir    ]
969cdf0e10cSrcweir    SID_DRAW_CAPTION_VERTICAL // ole : no, status : no
970cdf0e10cSrcweir    [
971cdf0e10cSrcweir        ExecMethod = FuPermanent ;
972cdf0e10cSrcweir        StateMethod = GetMenuState ;
973cdf0e10cSrcweir    ]
974cdf0e10cSrcweir    SID_DRAW_CIRCLE // ole : no, status : play rec
975cdf0e10cSrcweir    [
976cdf0e10cSrcweir        ExecMethod = FuPermanent ;
977cdf0e10cSrcweir        StateMethod = GetMenuState ;
978cdf0e10cSrcweir    ]
979cdf0e10cSrcweir    SID_DRAW_CIRCLE_NOFILL // ole : no, status : play rec
980cdf0e10cSrcweir    [
981cdf0e10cSrcweir        ExecMethod = FuPermanent ;
982cdf0e10cSrcweir        StateMethod = GetMenuState ;
983cdf0e10cSrcweir    ]
984cdf0e10cSrcweir    SID_DRAW_ELLIPSE // ole : no, status : play rec
985cdf0e10cSrcweir    [
986cdf0e10cSrcweir        ExecMethod = FuPermanent ;
987cdf0e10cSrcweir        StateMethod = GetMenuState ;
988cdf0e10cSrcweir    ]
989cdf0e10cSrcweir    SID_DRAW_ELLIPSE_NOFILL // ole : no, status : play rec
990cdf0e10cSrcweir    [
991cdf0e10cSrcweir        ExecMethod = FuPermanent ;
992cdf0e10cSrcweir        StateMethod = GetMenuState ;
993cdf0e10cSrcweir    ]
994cdf0e10cSrcweir    SID_DRAW_ARC // ole : no, status : play rec
995cdf0e10cSrcweir    [
996cdf0e10cSrcweir        ExecMethod = FuPermanent ;
997cdf0e10cSrcweir        StateMethod = GetMenuState ;
998cdf0e10cSrcweir    ]
999cdf0e10cSrcweir    SID_DRAW_CIRCLEARC // ole : no, status : play rec
1000cdf0e10cSrcweir    [
1001cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1002cdf0e10cSrcweir        StateMethod = GetMenuState ;
1003cdf0e10cSrcweir    ]
1004cdf0e10cSrcweir    SID_DRAW_PIE // ole : no, status : play rec
1005cdf0e10cSrcweir    [
1006cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1007cdf0e10cSrcweir        StateMethod = GetMenuState ;
1008cdf0e10cSrcweir    ]
1009cdf0e10cSrcweir    SID_DRAW_PIE_NOFILL // ole : no, status : play rec
1010cdf0e10cSrcweir    [
1011cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1012cdf0e10cSrcweir        StateMethod = GetMenuState ;
1013cdf0e10cSrcweir    ]
1014cdf0e10cSrcweir    SID_DRAW_CIRCLEPIE // ole : no, status : play rec
1015cdf0e10cSrcweir    [
1016cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1017cdf0e10cSrcweir        StateMethod = GetMenuState ;
1018cdf0e10cSrcweir    ]
1019cdf0e10cSrcweir    SID_DRAW_CIRCLEPIE_NOFILL // ole : no, status : play rec
1020cdf0e10cSrcweir    [
1021cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1022cdf0e10cSrcweir        StateMethod = GetMenuState ;
1023cdf0e10cSrcweir    ]
1024cdf0e10cSrcweir    SID_DRAW_CIRCLECUT // ole : no, status : play rec
1025cdf0e10cSrcweir    [
1026cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1027cdf0e10cSrcweir        StateMethod = GetMenuState ;
1028cdf0e10cSrcweir    ]
1029cdf0e10cSrcweir    SID_DRAW_CIRCLECUT_NOFILL // ole : no, status : play rec
1030cdf0e10cSrcweir    [
1031cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1032cdf0e10cSrcweir        StateMethod = GetMenuState ;
1033cdf0e10cSrcweir    ]
1034cdf0e10cSrcweir    SID_DRAW_ELLIPSECUT // ole : no, status : play rec
1035cdf0e10cSrcweir    [
1036cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1037cdf0e10cSrcweir        StateMethod = GetMenuState ;
1038cdf0e10cSrcweir    ]
1039cdf0e10cSrcweir    SID_DRAW_ELLIPSECUT_NOFILL // ole : no, status : play rec
1040cdf0e10cSrcweir    [
1041cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1042cdf0e10cSrcweir        StateMethod = GetMenuState ;
1043cdf0e10cSrcweir    ]
1044cdf0e10cSrcweir    SID_DRAW_LINE // ole : no, status : no
1045cdf0e10cSrcweir    [
1046cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1047cdf0e10cSrcweir        StateMethod = GetMenuState ;
1048cdf0e10cSrcweir    ]
1049cdf0e10cSrcweir    SID_DRAW_MEASURELINE // ole : no, status : no
1050cdf0e10cSrcweir    [
1051cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1052cdf0e10cSrcweir        StateMethod = GetMenuState ;
1053cdf0e10cSrcweir    ]
1054cdf0e10cSrcweir    SID_DRAW_XLINE // ole : no, status : no
1055cdf0e10cSrcweir    [
1056cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1057cdf0e10cSrcweir        StateMethod = GetMenuState ;
1058cdf0e10cSrcweir    ]
1059cdf0e10cSrcweir    SID_MOVETO // ole : no, status : play rec
1060cdf0e10cSrcweir    [
1061cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1062cdf0e10cSrcweir        StateMethod = GetMenuState ;
1063cdf0e10cSrcweir    ]
1064cdf0e10cSrcweir    SID_LINETO // ole : no, status : play rec
1065cdf0e10cSrcweir    [
1066cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1067cdf0e10cSrcweir        StateMethod = GetMenuState ;
1068cdf0e10cSrcweir    ]
1069cdf0e10cSrcweir    SID_BEZIERTO // ole : no, status : play rec
1070cdf0e10cSrcweir    [
1071cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1072cdf0e10cSrcweir        StateMethod = GetMenuState ;
1073cdf0e10cSrcweir    ]
1074cdf0e10cSrcweir    SID_DRAW_XPOLYGON // ole : no, status : no
1075cdf0e10cSrcweir    [
1076cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1077cdf0e10cSrcweir        StateMethod = GetMenuState ;
1078cdf0e10cSrcweir    ]
1079cdf0e10cSrcweir    SID_DRAW_XPOLYGON_NOFILL // ole : no, status : no
1080cdf0e10cSrcweir    [
1081cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1082cdf0e10cSrcweir        StateMethod = GetMenuState ;
1083cdf0e10cSrcweir    ]
1084cdf0e10cSrcweir    SID_DRAW_POLYGON // ole : no, status : no
1085cdf0e10cSrcweir    [
1086cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1087cdf0e10cSrcweir        StateMethod = GetMenuState ;
1088cdf0e10cSrcweir    ]
1089cdf0e10cSrcweir    SID_DRAW_POLYGON_NOFILL // ole : no, status : no
1090cdf0e10cSrcweir    [
1091cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1092cdf0e10cSrcweir        StateMethod = GetMenuState ;
1093cdf0e10cSrcweir    ]
1094cdf0e10cSrcweir    SID_DRAW_BEZIER_FILL // ole : no, status : ?
1095cdf0e10cSrcweir    [
1096cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1097cdf0e10cSrcweir        StateMethod = GetMenuState ;
1098cdf0e10cSrcweir    ]
1099cdf0e10cSrcweir    SID_DRAW_BEZIER_NOFILL // ole : no, status : ?
1100cdf0e10cSrcweir    [
1101cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1102cdf0e10cSrcweir        StateMethod = GetMenuState ;
1103cdf0e10cSrcweir    ]
1104cdf0e10cSrcweir    SID_DRAW_FREELINE // ole : no, status : ?
1105cdf0e10cSrcweir    [
1106cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1107cdf0e10cSrcweir        StateMethod = GetMenuState ;
1108cdf0e10cSrcweir    ]
1109cdf0e10cSrcweir    SID_DRAW_FREELINE_NOFILL // ole : no, status : ?
1110cdf0e10cSrcweir    [
1111cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1112cdf0e10cSrcweir        StateMethod = GetMenuState ;
1113cdf0e10cSrcweir    ]
1114cdf0e10cSrcweir    SID_3D_CUBE // ole : no, status : ?
1115cdf0e10cSrcweir    [
1116cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1117cdf0e10cSrcweir        StateMethod = GetMenuState ;
1118cdf0e10cSrcweir    ]
1119cdf0e10cSrcweir    SID_3D_SPHERE // ole : no, status : ?
1120cdf0e10cSrcweir    [
1121cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1122cdf0e10cSrcweir        StateMethod = GetMenuState ;
1123cdf0e10cSrcweir    ]
1124cdf0e10cSrcweir    SID_3D_CYLINDER // ole : no, status : ?
1125cdf0e10cSrcweir    [
1126cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1127cdf0e10cSrcweir        StateMethod = GetMenuState ;
1128cdf0e10cSrcweir    ]
1129cdf0e10cSrcweir    SID_3D_CONE // ole : no, status : ?
1130cdf0e10cSrcweir    [
1131cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1132cdf0e10cSrcweir        StateMethod = GetMenuState ;
1133cdf0e10cSrcweir    ]
1134cdf0e10cSrcweir    SID_3D_PYRAMID // ole : no, status : ?
1135cdf0e10cSrcweir    [
1136cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1137cdf0e10cSrcweir        StateMethod = GetMenuState ;
1138cdf0e10cSrcweir    ]
1139cdf0e10cSrcweir    SID_3D_SHELL // ole : no, status : ?
1140cdf0e10cSrcweir    [
1141cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1142cdf0e10cSrcweir        StateMethod = GetMenuState ;
1143cdf0e10cSrcweir    ]
1144cdf0e10cSrcweir    SID_3D_TORUS // ole : no, status : ?
1145cdf0e10cSrcweir    [
1146cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1147cdf0e10cSrcweir        StateMethod = GetMenuState ;
1148cdf0e10cSrcweir    ]
1149cdf0e10cSrcweir    SID_3D_HALF_SPHERE // ole : no, status : ?
1150cdf0e10cSrcweir    [
1151cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1152cdf0e10cSrcweir        StateMethod = GetMenuState ;
1153cdf0e10cSrcweir    ]
1154cdf0e10cSrcweir
1155cdf0e10cSrcweir    TbxImageItem ObjectAlign SID_OBJECT_ALIGN // ole : no, status : ?
1156cdf0e10cSrcweir    [
1157cdf0e10cSrcweir        ExecMethod = FuSupport ;
1158cdf0e10cSrcweir        StateMethod = GetMenuState ;
1159cdf0e10cSrcweir        GroupId = GID_DOCUMENT ;
1160cdf0e10cSrcweir        Cachable , Export ;
1161cdf0e10cSrcweir        PseudoSlots = FALSE ;
1162cdf0e10cSrcweir        ToolBoxConfig ;
1163cdf0e10cSrcweir		MenuConfig = TRUE;
1164cdf0e10cSrcweir    ]
1165cdf0e10cSrcweir
1166cdf0e10cSrcweir    SID_ZOOM_TOOLBOX // ole : no, status : ?
1167cdf0e10cSrcweir    [
1168cdf0e10cSrcweir        ExecMethod = FuSupport ;
1169cdf0e10cSrcweir        StateMethod = GetMenuState ;
1170cdf0e10cSrcweir    ]
1171cdf0e10cSrcweir    SID_OBJECT_CHOOSE_MODE // ole : no, status : ?
1172cdf0e10cSrcweir    [
1173cdf0e10cSrcweir        ExecMethod = FuSupport ;
1174cdf0e10cSrcweir        StateMethod = GetMenuState ;
1175cdf0e10cSrcweir    ]
1176cdf0e10cSrcweir    SID_POSITION // ole : no, status : ?
1177cdf0e10cSrcweir    [
1178cdf0e10cSrcweir        ExecMethod = FuSupport ;
1179cdf0e10cSrcweir        StateMethod = GetMenuState ;
1180cdf0e10cSrcweir    ]
1181cdf0e10cSrcweir    SID_DRAWTBX_TEXT // ole : no, status : ?
1182cdf0e10cSrcweir    [
1183cdf0e10cSrcweir        ExecMethod = FuSupport ;
1184cdf0e10cSrcweir        StateMethod = GetMenuState ;
1185cdf0e10cSrcweir    ]
1186cdf0e10cSrcweir    SID_DRAWTBX_CONNECTORS // ole : no, status : ?
1187cdf0e10cSrcweir    [
1188cdf0e10cSrcweir        ExecMethod = FuSupport ;
1189cdf0e10cSrcweir        StateMethod = GetMenuState ;
1190cdf0e10cSrcweir    ]
1191cdf0e10cSrcweir    SID_DRAWTBX_RECTANGLES // ole : no, status : ?
1192cdf0e10cSrcweir    [
1193cdf0e10cSrcweir        ExecMethod = FuSupport ;
1194cdf0e10cSrcweir        StateMethod = GetMenuState ;
1195cdf0e10cSrcweir    ]
1196cdf0e10cSrcweir    SID_DRAWTBX_ELLIPSES // ole : no, status : ?
1197cdf0e10cSrcweir    [
1198cdf0e10cSrcweir        ExecMethod = FuSupport ;
1199cdf0e10cSrcweir        StateMethod = GetMenuState ;
1200cdf0e10cSrcweir    ]
1201cdf0e10cSrcweir    SID_DRAWTBX_LINES // ole : no, status : ?
1202cdf0e10cSrcweir    [
1203cdf0e10cSrcweir        ExecMethod = FuSupport ;
1204cdf0e10cSrcweir        StateMethod = GetMenuState ;
1205cdf0e10cSrcweir    ]
1206cdf0e10cSrcweir    SID_DRAWTBX_ARROWS // ole : no, status : ?
1207cdf0e10cSrcweir    [
1208cdf0e10cSrcweir        ExecMethod = FuSupport ;
1209cdf0e10cSrcweir        StateMethod = GetMenuState ;
1210cdf0e10cSrcweir    ]
1211cdf0e10cSrcweir    SID_DRAWTBX_3D_OBJECTS // ole : no, status : ?
1212cdf0e10cSrcweir    [
1213cdf0e10cSrcweir        ExecMethod = FuSupport ;
1214cdf0e10cSrcweir        StateMethod = GetMenuState ;
1215cdf0e10cSrcweir    ]
1216cdf0e10cSrcweir    SID_DRAWTBX_INSERT // ole : no, status : ?
1217cdf0e10cSrcweir    [
1218cdf0e10cSrcweir        ExecMethod = FuSupport ;
1219cdf0e10cSrcweir        StateMethod = GetMenuState ;
1220cdf0e10cSrcweir    ]
1221cdf0e10cSrcweir    SID_OBJECT_SELECT // ole : no, status : ?
1222cdf0e10cSrcweir    [
1223cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1224cdf0e10cSrcweir        StateMethod = GetMenuState ;
1225cdf0e10cSrcweir        Export = FALSE ;
1226cdf0e10cSrcweir    ]
1227cdf0e10cSrcweir     //////////////////////////////////////////////////////////////////////
1228cdf0e10cSrcweir     // Beginn FormSlots
1229cdf0e10cSrcweir    SID_FM_CREATE_CONTROL
1230cdf0e10cSrcweir    [
1231cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1232cdf0e10cSrcweir    ]
1233cdf0e10cSrcweir	// #98721#
1234cdf0e10cSrcweir    SID_FM_CREATE_FIELDCONTROL
1235cdf0e10cSrcweir    [
1236cdf0e10cSrcweir	SlotType = SfxBoolItem ;
1237cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1238cdf0e10cSrcweir    ]
1239cdf0e10cSrcweir    SID_ATTR_YEAR2000
1240cdf0e10cSrcweir    [
1241cdf0e10cSrcweir        ExecMethod = ExecCtrl ;
1242cdf0e10cSrcweir        StateMethod = GetCtrlState ;
1243cdf0e10cSrcweir    ]
1244cdf0e10cSrcweir     // Ende FormSlots
1245cdf0e10cSrcweir     //////////////////////////////////////////////////////////////////////
1246cdf0e10cSrcweir    SID_ATTR_FILL_STYLE // ole : no, status : ?
1247cdf0e10cSrcweir    [
1248cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1249cdf0e10cSrcweir        StateMethod = GetAttrState ;
1250cdf0e10cSrcweir    ]
1251cdf0e10cSrcweir    SID_ATTR_FILL_COLOR // ole : no, status : ?
1252cdf0e10cSrcweir    [
1253cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1254cdf0e10cSrcweir        StateMethod = GetAttrState ;
1255cdf0e10cSrcweir    ]
1256cdf0e10cSrcweir    SID_ATTR_FILL_GRADIENT // ole : no, status : ?
1257cdf0e10cSrcweir    [
1258cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1259cdf0e10cSrcweir        StateMethod = GetAttrState ;
1260cdf0e10cSrcweir    ]
1261cdf0e10cSrcweir    SID_ATTR_FILL_HATCH // ole : no, status : ?
1262cdf0e10cSrcweir    [
1263cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1264cdf0e10cSrcweir        StateMethod = GetAttrState ;
1265cdf0e10cSrcweir    ]
1266cdf0e10cSrcweir    SID_ATTR_FILL_BITMAP // ole : no, status : ?
1267cdf0e10cSrcweir    [
1268cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1269cdf0e10cSrcweir        StateMethod = GetAttrState ;
1270cdf0e10cSrcweir    ]
1271cdf0e10cSrcweir    SID_ATTR_LINE_STYLE // ole : no, status : ?
1272cdf0e10cSrcweir    [
1273cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1274cdf0e10cSrcweir        StateMethod = GetAttrState ;
1275cdf0e10cSrcweir    ]
1276cdf0e10cSrcweir    SID_ATTR_LINE_DASH // ole : no, status : ?
1277cdf0e10cSrcweir    [
1278cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1279cdf0e10cSrcweir        StateMethod = GetAttrState ;
1280cdf0e10cSrcweir    ]
1281cdf0e10cSrcweir	SID_DASH_LIST
1282cdf0e10cSrcweir	[
1283cdf0e10cSrcweir	    StateMethod = GetAttrState ;
1284cdf0e10cSrcweir	]
1285cdf0e10cSrcweir    SID_LINEEND_LIST
1286cdf0e10cSrcweir    [
1287cdf0e10cSrcweir	    StateMethod = GetAttrState ;
1288cdf0e10cSrcweir    ]
1289cdf0e10cSrcweir	SID_COLOR_TABLE
1290cdf0e10cSrcweir	[
1291cdf0e10cSrcweir        StateMethod = GetAttrState;
1292cdf0e10cSrcweir	]
1293cdf0e10cSrcweir    SID_GRADIENT_LIST
1294cdf0e10cSrcweir    [
1295cdf0e10cSrcweir        StateMethod = GetAttrState ;
1296cdf0e10cSrcweir    ]
1297cdf0e10cSrcweir    SID_HATCH_LIST
1298cdf0e10cSrcweir    [
1299cdf0e10cSrcweir        StateMethod = GetAttrState ;
1300cdf0e10cSrcweir    ]
1301cdf0e10cSrcweir    SID_BITMAP_LIST
1302cdf0e10cSrcweir    [
1303cdf0e10cSrcweir        StateMethod = GetAttrState ;
1304cdf0e10cSrcweir    ]
1305cdf0e10cSrcweir    SID_ATTR_LINE_WIDTH // ole : no, status : ?
1306cdf0e10cSrcweir    [
1307cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1308cdf0e10cSrcweir        StateMethod = GetAttrState ;
1309cdf0e10cSrcweir    ]
1310cdf0e10cSrcweir    SID_ATTR_LINE_COLOR // ole : no, status : ?
1311cdf0e10cSrcweir    [
1312cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1313cdf0e10cSrcweir        StateMethod = GetAttrState ;
1314cdf0e10cSrcweir    ]
1315cdf0e10cSrcweir    SID_ATTR_LINEEND_STYLE // ole : no, status : play rec
1316cdf0e10cSrcweir    [
1317cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1318cdf0e10cSrcweir        StateMethod = GetAttrState ;
1319cdf0e10cSrcweir    ]
1320cdf0e10cSrcweir    SID_DELETE_PAGE // ole : no, status : play rec
1321cdf0e10cSrcweir    [
1322cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1323cdf0e10cSrcweir        StateMethod = GetMenuState ;
1324cdf0e10cSrcweir    ]
1325cdf0e10cSrcweir    SID_DELETE_LAYER // ole : no, status : play rec
1326cdf0e10cSrcweir    [
1327cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1328cdf0e10cSrcweir        StateMethod = GetMenuState ;
1329cdf0e10cSrcweir    ]
1330cdf0e10cSrcweir    SID_INSERTFILE // ole : no, status : todo
1331cdf0e10cSrcweir    [
1332cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1333cdf0e10cSrcweir        StateMethod = GetMenuState ;
1334cdf0e10cSrcweir    ]
1335cdf0e10cSrcweir    SID_STYLE_FAMILY2 // ole : no, status : ?
1336cdf0e10cSrcweir    [
1337cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1338cdf0e10cSrcweir        StateMethod = GetAttrState ;
1339cdf0e10cSrcweir        Export = FALSE ;
1340cdf0e10cSrcweir    ]
1341cdf0e10cSrcweir    SID_STYLE_FAMILY3 // ole : no, status : ?
1342cdf0e10cSrcweir    [
1343cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1344cdf0e10cSrcweir        StateMethod = GetAttrState ;
1345cdf0e10cSrcweir        Export = FALSE ;
1346cdf0e10cSrcweir    ]
1347cdf0e10cSrcweir    SID_STYLE_NEW // ole : no, status : ?
1348cdf0e10cSrcweir    [
1349cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1350cdf0e10cSrcweir        StateMethod = GetAttrState ;
1351cdf0e10cSrcweir        GroupId = GID_DOCUMENT ;
1352cdf0e10cSrcweir        Cachable ;
1353cdf0e10cSrcweir    ]
1354cdf0e10cSrcweir    SID_STYLE_DRAGHIERARCHIE // ole : no, status : ?
1355cdf0e10cSrcweir    [
1356cdf0e10cSrcweir        StateMethod = GetAttrState ;
1357cdf0e10cSrcweir    ]
1358cdf0e10cSrcweir    SID_STYLE_EDIT // ole : no, status : ?
1359cdf0e10cSrcweir    [
1360cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1361cdf0e10cSrcweir        StateMethod = GetAttrState ;
1362cdf0e10cSrcweir        GroupId = GID_DOCUMENT ;
1363cdf0e10cSrcweir        Cachable ;
1364cdf0e10cSrcweir    ]
1365cdf0e10cSrcweir    SID_STYLE_DELETE // ole : no, status : ?
1366cdf0e10cSrcweir    [
1367cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1368cdf0e10cSrcweir        StateMethod = GetAttrState ;
1369cdf0e10cSrcweir        GroupId = GID_DOCUMENT ;
1370cdf0e10cSrcweir        Cachable ;
1371cdf0e10cSrcweir    ]
1372cdf0e10cSrcweir    SID_STYLE_APPLY // ole : no, status : ?
1373cdf0e10cSrcweir    [
1374cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1375cdf0e10cSrcweir        StateMethod = GetAttrState ;
1376cdf0e10cSrcweir        GroupId = GID_DOCUMENT ;
1377cdf0e10cSrcweir        Cachable ;
1378cdf0e10cSrcweir    ]
1379cdf0e10cSrcweir    SID_STYLE_WATERCAN // ole : no, status : ?
1380cdf0e10cSrcweir    [
1381cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1382cdf0e10cSrcweir        StateMethod = GetAttrState ;
1383cdf0e10cSrcweir        GroupId = GID_DOCUMENT ;
1384cdf0e10cSrcweir        Cachable ;
1385cdf0e10cSrcweir    ]
1386cdf0e10cSrcweir    SID_STYLE_NEW_BY_EXAMPLE // ole : no, status : ?
1387cdf0e10cSrcweir    [
1388cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1389cdf0e10cSrcweir        StateMethod = GetAttrState ;
1390cdf0e10cSrcweir        GroupId = GID_DOCUMENT ;
1391cdf0e10cSrcweir        Cachable ;
1392cdf0e10cSrcweir    ]
1393cdf0e10cSrcweir    SID_STYLE_UPDATE_BY_EXAMPLE // ole : no, status : ?
1394cdf0e10cSrcweir    [
1395cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1396cdf0e10cSrcweir        StateMethod = GetAttrState ;
1397cdf0e10cSrcweir        GroupId = GID_DOCUMENT ;
1398cdf0e10cSrcweir        Cachable ;
1399cdf0e10cSrcweir    ]
1400cdf0e10cSrcweir    SID_SET_DEFAULT // ole : no, status : ?
1401cdf0e10cSrcweir    [
1402cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1403cdf0e10cSrcweir        StateMethod = GetAttrState ;
1404cdf0e10cSrcweir    ]
1405cdf0e10cSrcweir    SID_RULER_PAGE_POS // ole : no, status : ?
1406cdf0e10cSrcweir    [
1407cdf0e10cSrcweir        ExecMethod = ExecRuler ;
1408cdf0e10cSrcweir        StateMethod = GetRulerState ;
1409cdf0e10cSrcweir    ]
1410cdf0e10cSrcweir
1411cdf0e10cSrcweir    SID_RULER_OBJECT // ole : no, status : ?
1412cdf0e10cSrcweir    [
1413cdf0e10cSrcweir        ExecMethod = ExecRuler ;
1414cdf0e10cSrcweir        StateMethod = GetRulerState ;
1415cdf0e10cSrcweir    ]
1416cdf0e10cSrcweir
1417cdf0e10cSrcweir    SID_RULER_NULL_OFFSET // ole : no, status : ?
1418cdf0e10cSrcweir    [
1419cdf0e10cSrcweir        ExecMethod = ExecRuler ;
1420cdf0e10cSrcweir        StateMethod = GetRulerState ;
1421cdf0e10cSrcweir    ]
1422cdf0e10cSrcweir    SID_ATTR_LONG_LRSPACE // ole : no, status : ?
1423cdf0e10cSrcweir    [
1424cdf0e10cSrcweir        ExecMethod = ExecRuler ;
1425cdf0e10cSrcweir        StateMethod = GetRulerState ;
1426cdf0e10cSrcweir        Cachable ;
1427cdf0e10cSrcweir    ]
1428cdf0e10cSrcweir    SID_ATTR_LONG_ULSPACE // ole : no, status : ?
1429cdf0e10cSrcweir    [
1430cdf0e10cSrcweir        ExecMethod = ExecRuler ;
1431cdf0e10cSrcweir        StateMethod = GetRulerState ;
1432cdf0e10cSrcweir        Cachable ;
1433cdf0e10cSrcweir    ]
1434cdf0e10cSrcweir    SID_RULER_LR_MIN_MAX // ole : no, status : ?
1435cdf0e10cSrcweir    [
1436cdf0e10cSrcweir        ExecMethod = ExecRuler ;
1437cdf0e10cSrcweir        StateMethod = GetRulerState ;
1438cdf0e10cSrcweir    ]
1439cdf0e10cSrcweir
1440cdf0e10cSrcweir    SID_RULER_TEXT_RIGHT_TO_LEFT
1441cdf0e10cSrcweir    [
1442cdf0e10cSrcweir        ExecMethod = ExecRuler ;
1443cdf0e10cSrcweir        StateMethod = GetRulerState ;
1444cdf0e10cSrcweir	]
1445cdf0e10cSrcweir
1446cdf0e10cSrcweir    SID_ATTR_TABSTOP // ole : no, status : ?
1447cdf0e10cSrcweir    [
1448cdf0e10cSrcweir        ExecMethod = ExecRuler ;
1449cdf0e10cSrcweir        StateMethod = GetRulerState ;
1450cdf0e10cSrcweir    ]
1451cdf0e10cSrcweir
1452cdf0e10cSrcweir    SID_ATTR_PARA_LRSPACE // ole : no, status : ?
1453cdf0e10cSrcweir    [
1454cdf0e10cSrcweir        ExecMethod = ExecRuler ;
1455cdf0e10cSrcweir        StateMethod = GetRulerState ;
1456cdf0e10cSrcweir    ]
1457cdf0e10cSrcweir    SID_ATTR_POSITION // ole : no, status : ?
1458cdf0e10cSrcweir    [
1459cdf0e10cSrcweir        ExecMethod = ExecStatusBar ;
1460cdf0e10cSrcweir        StateMethod = GetStatusBarState ;
1461cdf0e10cSrcweir    ]
1462cdf0e10cSrcweir    SID_ATTR_SIZE // ole : no, status : ?
1463cdf0e10cSrcweir    [
1464cdf0e10cSrcweir        ExecMethod = ExecStatusBar ;
1465cdf0e10cSrcweir        StateMethod = GetStatusBarState ;
1466cdf0e10cSrcweir        Export ;
1467cdf0e10cSrcweir    ]
1468cdf0e10cSrcweir    SID_STATUS_PAGE // ole : no, status : ?
1469cdf0e10cSrcweir    [
1470cdf0e10cSrcweir        ExecMethod = ExecStatusBar ;
1471cdf0e10cSrcweir        StateMethod = GetStatusBarState ;
1472cdf0e10cSrcweir    ]
1473cdf0e10cSrcweir    SID_STATUS_LAYOUT // ole : no, status : ?
1474cdf0e10cSrcweir    [
1475cdf0e10cSrcweir        ExecMethod = ExecStatusBar ;
1476cdf0e10cSrcweir        StateMethod = GetStatusBarState ;
1477cdf0e10cSrcweir    ]
1478cdf0e10cSrcweir    SID_LINEEND_POLYGON // ole : no, status : ?
1479cdf0e10cSrcweir    [
1480cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1481cdf0e10cSrcweir        StateMethod = GetMenuState ;
1482cdf0e10cSrcweir    ]
1483cdf0e10cSrcweir    SID_GRAPHIC_EXPORT // ole : no, status : ?
1484cdf0e10cSrcweir    [
1485cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1486cdf0e10cSrcweir        StateMethod = GetMenuState ;
1487cdf0e10cSrcweir    ]
1488cdf0e10cSrcweir    SID_NAME_GROUP // ole : no, status : ?
1489cdf0e10cSrcweir    [
1490cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1491cdf0e10cSrcweir        StateMethod = GetMenuState ;
1492cdf0e10cSrcweir    ]
1493cdf0e10cSrcweir    SID_OBJECT_TITLE_DESCRIPTION // #i68101# ole : no, status : ?
1494cdf0e10cSrcweir    [
1495cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1496cdf0e10cSrcweir        StateMethod = GetMenuState ;
1497cdf0e10cSrcweir    ]
1498cdf0e10cSrcweir    SID_CONTEXT // ole : no, status : ?
1499cdf0e10cSrcweir    [
1500cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1501cdf0e10cSrcweir        StateMethod = GetMenuState ;
1502cdf0e10cSrcweir    ]
1503cdf0e10cSrcweir    SID_SET_SNAPITEM // ole : no, status : ?
1504cdf0e10cSrcweir    [
1505cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1506cdf0e10cSrcweir        StateMethod = GetSnapItemState ;
1507cdf0e10cSrcweir    ]
1508cdf0e10cSrcweir    SID_DELETE_SNAPITEM // ole : no, status : ?
1509cdf0e10cSrcweir    [
1510cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1511cdf0e10cSrcweir        StateMethod = GetSnapItemState ;
1512cdf0e10cSrcweir    ]
1513cdf0e10cSrcweir    SID_CAPTUREPOINT // ole : no, status : ?
1514cdf0e10cSrcweir    [
1515cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1516cdf0e10cSrcweir        GroupId = GID_DOCUMENT ;
1517cdf0e10cSrcweir    ]
1518cdf0e10cSrcweir    SID_SWITCH_POINTEDIT // ole : no, status : ?
1519cdf0e10cSrcweir    [
1520cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1521cdf0e10cSrcweir        StateMethod = GetMenuState ;
1522cdf0e10cSrcweir    ]
1523cdf0e10cSrcweir    SID_RULER // ole : no, status : play rec
1524cdf0e10cSrcweir    [
1525cdf0e10cSrcweir        ExecMethod = FuSupport ;
1526cdf0e10cSrcweir        StateMethod = GetMenuState ;
1527cdf0e10cSrcweir        GroupId = GID_DOCUMENT ;
1528cdf0e10cSrcweir        Cachable ;
1529cdf0e10cSrcweir	MenuConfig = TRUE ;
1530cdf0e10cSrcweir    ]
1531cdf0e10cSrcweir    SID_TEXTALIGNMENT // ole : no, status : ?
1532cdf0e10cSrcweir    [
1533cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1534cdf0e10cSrcweir        StateMethod = GetMenuState ;
1535cdf0e10cSrcweir    ]
1536cdf0e10cSrcweir    SID_COLOR_CONTROL // ole : no, status : ?
1537cdf0e10cSrcweir    [
1538cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1539cdf0e10cSrcweir        StateMethod = GetMenuState ;
1540cdf0e10cSrcweir    ]
1541cdf0e10cSrcweir    SID_FONTWORK // ole : no, status : ?
1542cdf0e10cSrcweir    [
1543cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1544cdf0e10cSrcweir        StateMethod = GetMenuState ;
1545cdf0e10cSrcweir    ]
1546cdf0e10cSrcweir    SID_FORMTEXT_STYLE // ole : no, status : ?
1547cdf0e10cSrcweir    [
1548cdf0e10cSrcweir        ExecMethod = ExecFormText ;
1549cdf0e10cSrcweir        StateMethod = GetFormTextState ;
1550cdf0e10cSrcweir    ]
1551cdf0e10cSrcweir    SID_FORMTEXT_ADJUST // ole : no, status : ?
1552cdf0e10cSrcweir    [
1553cdf0e10cSrcweir        ExecMethod = ExecFormText ;
1554cdf0e10cSrcweir        StateMethod = GetFormTextState ;
1555cdf0e10cSrcweir    ]
1556cdf0e10cSrcweir    SID_FORMTEXT_DISTANCE // ole : no, status : ?
1557cdf0e10cSrcweir    [
1558cdf0e10cSrcweir        ExecMethod = ExecFormText ;
1559cdf0e10cSrcweir        StateMethod = GetFormTextState ;
1560cdf0e10cSrcweir    ]
1561cdf0e10cSrcweir    SID_FORMTEXT_START // ole : no, status : ?
1562cdf0e10cSrcweir    [
1563cdf0e10cSrcweir        ExecMethod = ExecFormText ;
1564cdf0e10cSrcweir        StateMethod = GetFormTextState ;
1565cdf0e10cSrcweir    ]
1566cdf0e10cSrcweir    SID_FORMTEXT_MIRROR // ole : no, status : ?
1567cdf0e10cSrcweir    [
1568cdf0e10cSrcweir        ExecMethod = ExecFormText ;
1569cdf0e10cSrcweir        StateMethod = GetFormTextState ;
1570cdf0e10cSrcweir    ]
1571cdf0e10cSrcweir    SID_FORMTEXT_HIDEFORM // ole : no, status : ?
1572cdf0e10cSrcweir    [
1573cdf0e10cSrcweir        ExecMethod = ExecFormText ;
1574cdf0e10cSrcweir        StateMethod = GetFormTextState ;
1575cdf0e10cSrcweir    ]
1576cdf0e10cSrcweir    SID_FORMTEXT_OUTLINE // ole : no, status : ?
1577cdf0e10cSrcweir    [
1578cdf0e10cSrcweir        ExecMethod = ExecFormText ;
1579cdf0e10cSrcweir        StateMethod = GetFormTextState ;
1580cdf0e10cSrcweir    ]
1581cdf0e10cSrcweir    SID_FORMTEXT_SHADOW // ole : no, status : ?
1582cdf0e10cSrcweir    [
1583cdf0e10cSrcweir        ExecMethod = ExecFormText ;
1584cdf0e10cSrcweir        StateMethod = GetFormTextState ;
1585cdf0e10cSrcweir    ]
1586cdf0e10cSrcweir    SID_FORMTEXT_SHDWCOLOR // ole : no, status : ?
1587cdf0e10cSrcweir    [
1588cdf0e10cSrcweir        ExecMethod = ExecFormText ;
1589cdf0e10cSrcweir        StateMethod = GetFormTextState ;
1590cdf0e10cSrcweir    ]
1591cdf0e10cSrcweir    SID_FORMTEXT_SHDWXVAL // ole : no, status : ?
1592cdf0e10cSrcweir    [
1593cdf0e10cSrcweir        ExecMethod = ExecFormText ;
1594cdf0e10cSrcweir        StateMethod = GetFormTextState ;
1595cdf0e10cSrcweir    ]
1596cdf0e10cSrcweir    SID_FORMTEXT_SHDWYVAL // ole : no, status : ?
1597cdf0e10cSrcweir    [
1598cdf0e10cSrcweir        ExecMethod = ExecFormText ;
1599cdf0e10cSrcweir        StateMethod = GetFormTextState ;
1600cdf0e10cSrcweir    ]
1601cdf0e10cSrcweir    SID_FORMTEXT_STDFORM // ole : no, status : ?
1602cdf0e10cSrcweir    [
1603cdf0e10cSrcweir        ExecMethod = ExecFormText ;
1604cdf0e10cSrcweir        StateMethod = GetFormTextState ;
1605cdf0e10cSrcweir    ]
1606cdf0e10cSrcweir    SID_GALLERY // ole : yes, status : ?
1607cdf0e10cSrcweir    [
1608cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1609cdf0e10cSrcweir        StateMethod = GetMenuState ;
1610cdf0e10cSrcweir    ]
1611cdf0e10cSrcweir    SID_GALLERY_FORMATS // ole : no, status : ?
1612cdf0e10cSrcweir    [
1613cdf0e10cSrcweir        ExecMethod = ExecGallery ;
1614cdf0e10cSrcweir        StateMethod = GetGalleryState ;
1615cdf0e10cSrcweir        GroupId = GID_DOCUMENT ;
1616cdf0e10cSrcweir        Cachable ;
1617cdf0e10cSrcweir    ]
1618cdf0e10cSrcweir    SID_NAVIGATOR_INIT // ole : no, status : ?
1619cdf0e10cSrcweir    [
1620cdf0e10cSrcweir        ExecMethod = ExecNavigatorWin ;
1621cdf0e10cSrcweir        StateMethod = GetNavigatorWinState ;
1622cdf0e10cSrcweir    ]
1623cdf0e10cSrcweir    SID_NAVIGATOR_PAGE // ole : no, status : ?
1624cdf0e10cSrcweir    [
1625cdf0e10cSrcweir        ExecMethod = ExecNavigatorWin ;
1626cdf0e10cSrcweir        StateMethod = GetNavigatorWinState ;
1627cdf0e10cSrcweir    ]
1628cdf0e10cSrcweir    SID_NAVIGATOR_OBJECT // ole : no, status : ?
1629cdf0e10cSrcweir    [
1630cdf0e10cSrcweir        ExecMethod = ExecNavigatorWin ;
1631cdf0e10cSrcweir        StateMethod = GetNavigatorWinState ;
1632cdf0e10cSrcweir    ]
1633cdf0e10cSrcweir    SID_NAVIGATOR_STATE // ole : no, status : ?
1634cdf0e10cSrcweir    [
1635cdf0e10cSrcweir        ExecMethod = ExecNavigatorWin ;
1636cdf0e10cSrcweir        StateMethod = GetNavigatorWinState ;
1637cdf0e10cSrcweir    ]
1638cdf0e10cSrcweir    SID_NAVIGATOR_PAGENAME // ole : no, status : ?
1639cdf0e10cSrcweir    [
1640cdf0e10cSrcweir        ExecMethod = ExecNavigatorWin ;
1641cdf0e10cSrcweir        StateMethod = GetNavigatorWinState ;
1642cdf0e10cSrcweir    ]
1643cdf0e10cSrcweir    SID_HORIZONTAL // ole : no, status : ?
1644cdf0e10cSrcweir    [
1645cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1646cdf0e10cSrcweir        StateMethod = GetMenuState ;
1647cdf0e10cSrcweir    ]
1648cdf0e10cSrcweir    SID_VERTICAL // ole : no, status : ?
1649cdf0e10cSrcweir    [
1650cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1651cdf0e10cSrcweir        StateMethod = GetMenuState ;
1652cdf0e10cSrcweir    ]
1653cdf0e10cSrcweir    SID_ATTR_FILL_SHADOW // ole : no, status : ?
1654cdf0e10cSrcweir    [
1655cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1656cdf0e10cSrcweir        StateMethod = GetAttrState ;
1657cdf0e10cSrcweir    ]
1658cdf0e10cSrcweir    SID_ATTR_TEXT_FITTOSIZE // ole : no, status : ?
1659cdf0e10cSrcweir    [
1660cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1661cdf0e10cSrcweir        StateMethod = GetAttrState ;
1662cdf0e10cSrcweir    ]
1663cdf0e10cSrcweir    SID_OBJECT_CLOSE // ole : no, status : ?
1664cdf0e10cSrcweir    [
1665cdf0e10cSrcweir        ExecMethod = FuSupport ;
1666cdf0e10cSrcweir        StateMethod = GetMenuState ;
1667cdf0e10cSrcweir    ]
1668cdf0e10cSrcweir     // Problem mit SID_ATTR_FILL_STYLE:
1669cdf0e10cSrcweir     // frueher XFillStyle, jetzt Property FillStyle (Get/Set)
1670cdf0e10cSrcweir     // deswegen Export = FALSE !
1671cdf0e10cSrcweir    SID_SETFILLSTYLE // ole : no, status : play rec
1672cdf0e10cSrcweir    [
1673cdf0e10cSrcweir        ExecMethod = AttrExec ;
1674cdf0e10cSrcweir        StateMethod = AttrState ;
1675cdf0e10cSrcweir        Export = FALSE ;
1676cdf0e10cSrcweir    ]
1677cdf0e10cSrcweir    SID_GETFILLSTYLE // ole : no, status : play rec
1678cdf0e10cSrcweir    [
1679cdf0e10cSrcweir        ExecMethod = AttrExec ;
1680cdf0e10cSrcweir        StateMethod = AttrState ;
1681cdf0e10cSrcweir    ]
1682cdf0e10cSrcweir    SID_SETLINESTYLE // ole : no, status : play rec
1683cdf0e10cSrcweir    [
1684cdf0e10cSrcweir        ExecMethod = AttrExec ;
1685cdf0e10cSrcweir        StateMethod = AttrState ;
1686cdf0e10cSrcweir    ]
1687cdf0e10cSrcweir    SID_GETLINESTYLE // ole : no, status : play rec
1688cdf0e10cSrcweir    [
1689cdf0e10cSrcweir        ExecMethod = AttrExec ;
1690cdf0e10cSrcweir        StateMethod = AttrState ;
1691cdf0e10cSrcweir    ]
1692cdf0e10cSrcweir     // Problem mit SID_ATTR_LINE_WIDTH:
1693cdf0e10cSrcweir     // frueher XLineWidth, jetzt Property LineWidth (Get/Set)
1694cdf0e10cSrcweir     // deswegen Export = FALSE !
1695cdf0e10cSrcweir    SID_SETLINEWIDTH // ole : no, status : play rec
1696cdf0e10cSrcweir    [
1697cdf0e10cSrcweir        ExecMethod = AttrExec ;
1698cdf0e10cSrcweir        StateMethod = AttrState ;
1699cdf0e10cSrcweir        Export = FALSE ;
1700cdf0e10cSrcweir    ]
1701cdf0e10cSrcweir    SID_GETLINEWIDTH // ole : no, status : play rec
1702cdf0e10cSrcweir    [
1703cdf0e10cSrcweir        ExecMethod = AttrExec ;
1704cdf0e10cSrcweir        StateMethod = AttrState ;
1705cdf0e10cSrcweir    ]
1706cdf0e10cSrcweir     //DB: FillColor -> SetFillColor
1707cdf0e10cSrcweir     // Problem mit SID_ATTR_FILL_COLOR:
1708cdf0e10cSrcweir     // frueher XFillColor, jetzt Property FillColor (Get/Set)
1709cdf0e10cSrcweir     // deswegen Export = FALSE !
1710cdf0e10cSrcweir    SID_SETFILLCOLOR // ole : no, status : play rec
1711cdf0e10cSrcweir    [
1712cdf0e10cSrcweir        ExecMethod = AttrExec ;
1713cdf0e10cSrcweir        StateMethod = AttrState ;
1714cdf0e10cSrcweir        Export = FALSE ;
1715cdf0e10cSrcweir    ]
1716cdf0e10cSrcweir    SID_SETLINECOLOR // ole : no, status : play rec
1717cdf0e10cSrcweir    [
1718cdf0e10cSrcweir        ExecMethod = AttrExec ;
1719cdf0e10cSrcweir        StateMethod = AttrState ;
1720cdf0e10cSrcweir    ]
1721cdf0e10cSrcweir    SID_SETHATCHCOLOR // ole : no, status : play rec
1722cdf0e10cSrcweir    [
1723cdf0e10cSrcweir        ExecMethod = AttrExec ;
1724cdf0e10cSrcweir        StateMethod = AttrState ;
1725cdf0e10cSrcweir    ]
1726cdf0e10cSrcweir    SID_SETGRADSTARTCOLOR // ole : no, status : play rec
1727cdf0e10cSrcweir    [
1728cdf0e10cSrcweir        ExecMethod = AttrExec ;
1729cdf0e10cSrcweir        StateMethod = AttrState ;
1730cdf0e10cSrcweir    ]
1731cdf0e10cSrcweir    SID_SETGRADENDCOLOR // ole : no, status : play rec
1732cdf0e10cSrcweir    [
1733cdf0e10cSrcweir        ExecMethod = AttrExec ;
1734cdf0e10cSrcweir        StateMethod = AttrState ;
1735cdf0e10cSrcweir    ]
1736cdf0e10cSrcweir    SID_GETRED // ole : no, status : play rec
1737cdf0e10cSrcweir    [
1738cdf0e10cSrcweir        ExecMethod = AttrExec ;
1739cdf0e10cSrcweir        StateMethod = AttrState ;
1740cdf0e10cSrcweir    ]
1741cdf0e10cSrcweir    SID_GETBLUE // ole : no, status : play rec
1742cdf0e10cSrcweir    [
1743cdf0e10cSrcweir        ExecMethod = AttrExec ;
1744cdf0e10cSrcweir        StateMethod = AttrState ;
1745cdf0e10cSrcweir    ]
1746cdf0e10cSrcweir    SID_GETGREEN // ole : no, status : play rec
1747cdf0e10cSrcweir    [
1748cdf0e10cSrcweir        ExecMethod = AttrExec ;
1749cdf0e10cSrcweir        StateMethod = AttrState ;
1750cdf0e10cSrcweir    ]
1751cdf0e10cSrcweir    SID_DASH // ole : no, status : play rec
1752cdf0e10cSrcweir    [
1753cdf0e10cSrcweir        ExecMethod = AttrExec ;
1754cdf0e10cSrcweir        StateMethod = AttrState ;
1755cdf0e10cSrcweir    ]
1756cdf0e10cSrcweir    SID_HATCH // ole : no, status : play rec
1757cdf0e10cSrcweir    [
1758cdf0e10cSrcweir        ExecMethod = AttrExec ;
1759cdf0e10cSrcweir        StateMethod = AttrState ;
1760cdf0e10cSrcweir    ]
1761cdf0e10cSrcweir    SID_GRADIENT // ole : no, status : play rec
1762cdf0e10cSrcweir    [
1763cdf0e10cSrcweir        ExecMethod = AttrExec ;
1764cdf0e10cSrcweir        StateMethod = AttrState ;
1765cdf0e10cSrcweir    ]
1766cdf0e10cSrcweir    SID_SELECTGRADIENT // ole : no, status : play rec
1767cdf0e10cSrcweir    [
1768cdf0e10cSrcweir        ExecMethod = AttrExec ;
1769cdf0e10cSrcweir        StateMethod = AttrState ;
1770cdf0e10cSrcweir    ]
1771cdf0e10cSrcweir    SID_SELECTHATCH // ole : no, status : play rec
1772cdf0e10cSrcweir    [
1773cdf0e10cSrcweir        ExecMethod = AttrExec ;
1774cdf0e10cSrcweir        StateMethod = AttrState ;
1775cdf0e10cSrcweir    ]
1776cdf0e10cSrcweir    SID_UNSELECT // ole : no, status : play rec
1777cdf0e10cSrcweir    [
1778cdf0e10cSrcweir        ExecMethod = AttrExec ;
1779cdf0e10cSrcweir        StateMethod = AttrState ;
1780cdf0e10cSrcweir    ]
1781cdf0e10cSrcweir    SID_TEXTATTR_DLG // ole : no, status : play rec
1782cdf0e10cSrcweir    [
1783cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1784cdf0e10cSrcweir        StateMethod = GetMenuState ;
1785cdf0e10cSrcweir    ]
1786cdf0e10cSrcweir    SID_MEASURE_DLG // ole : no, status : play rec
1787cdf0e10cSrcweir    [
1788cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1789cdf0e10cSrcweir        StateMethod = GetMenuState ;
1790cdf0e10cSrcweir    ]
1791cdf0e10cSrcweir    SID_CONNECTION_DLG // ole : no, status : play rec
1792cdf0e10cSrcweir    [
1793cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1794cdf0e10cSrcweir        StateMethod = GetMenuState ;
1795cdf0e10cSrcweir    ]
1796cdf0e10cSrcweir    SID_CONNECTION_NEW_ROUTING // ole : no, status : play rec
1797cdf0e10cSrcweir    [
1798cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1799cdf0e10cSrcweir        StateMethod = GetMenuState ;
1800cdf0e10cSrcweir    ]
1801cdf0e10cSrcweir    SID_SCAN // ole : no, status : todo
1802cdf0e10cSrcweir    [
1803cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1804cdf0e10cSrcweir        StateMethod = GetMenuState ;
1805cdf0e10cSrcweir    ]
1806cdf0e10cSrcweir    SID_TWAIN_SELECT // ole : no, status : todo
1807cdf0e10cSrcweir    [
1808cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1809cdf0e10cSrcweir        StateMethod = GetMenuState ;
1810cdf0e10cSrcweir    ]
1811cdf0e10cSrcweir    SID_TWAIN_TRANSFER // ole : no, status : todo
1812cdf0e10cSrcweir    [
1813cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1814cdf0e10cSrcweir        StateMethod = GetMenuState ;
1815cdf0e10cSrcweir    ]
1816cdf0e10cSrcweir    SID_IMAP // ole : yes, status : ?
1817cdf0e10cSrcweir    [
1818cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1819cdf0e10cSrcweir        StateMethod = GetMenuState ;
1820cdf0e10cSrcweir    ]
1821cdf0e10cSrcweir    SID_IMAP_EXEC // ole : no, status : ?
1822cdf0e10cSrcweir    [
1823cdf0e10cSrcweir        ExecMethod = ExecIMap ;
1824cdf0e10cSrcweir        StateMethod = GetIMapState ;
1825cdf0e10cSrcweir    ]
1826cdf0e10cSrcweir    SID_GLUE_EDITMODE // ole : no, status : ?
1827cdf0e10cSrcweir    [
1828cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1829cdf0e10cSrcweir        StateMethod = GetMenuState ;
1830cdf0e10cSrcweir    ]
1831cdf0e10cSrcweir    SID_GLUE_INSERT_POINT // ole : no, status : ?
1832cdf0e10cSrcweir    [
1833cdf0e10cSrcweir        ExecMethod = FuSupport ;
1834cdf0e10cSrcweir        StateMethod = GetMenuState ;
1835cdf0e10cSrcweir    ]
1836cdf0e10cSrcweir    SID_GLUE_PERCENT // ole : no, status : ?
1837cdf0e10cSrcweir    [
1838cdf0e10cSrcweir        ExecMethod = FuSupport ;
1839cdf0e10cSrcweir        StateMethod = GetMenuState ;
1840cdf0e10cSrcweir    ]
1841cdf0e10cSrcweir    SID_GLUE_ESCDIR // ole : no, status : ?
1842cdf0e10cSrcweir    [
1843cdf0e10cSrcweir        ExecMethod = FuSupport ;
1844cdf0e10cSrcweir        StateMethod = GetMenuState ;
1845cdf0e10cSrcweir    ]
1846cdf0e10cSrcweir    SID_GLUE_ESCDIR_LEFT // ole : no, status : ?
1847cdf0e10cSrcweir    [
1848cdf0e10cSrcweir        ExecMethod = FuSupport ;
1849cdf0e10cSrcweir        StateMethod = GetMenuState ;
1850cdf0e10cSrcweir    ]
1851cdf0e10cSrcweir    SID_GLUE_ESCDIR_RIGHT // ole : no, status : ?
1852cdf0e10cSrcweir    [
1853cdf0e10cSrcweir        ExecMethod = FuSupport ;
1854cdf0e10cSrcweir        StateMethod = GetMenuState ;
1855cdf0e10cSrcweir    ]
1856cdf0e10cSrcweir    SID_GLUE_ESCDIR_TOP // ole : no, status : ?
1857cdf0e10cSrcweir    [
1858cdf0e10cSrcweir        ExecMethod = FuSupport ;
1859cdf0e10cSrcweir        StateMethod = GetMenuState ;
1860cdf0e10cSrcweir    ]
1861cdf0e10cSrcweir    SID_GLUE_ESCDIR_BOTTOM // ole : no, status : ?
1862cdf0e10cSrcweir    [
1863cdf0e10cSrcweir        ExecMethod = FuSupport ;
1864cdf0e10cSrcweir        StateMethod = GetMenuState ;
1865cdf0e10cSrcweir    ]
1866cdf0e10cSrcweir    SID_GLUE_HORZALIGN_CENTER // ole : no, status : ?
1867cdf0e10cSrcweir    [
1868cdf0e10cSrcweir        ExecMethod = FuSupport ;
1869cdf0e10cSrcweir        StateMethod = GetMenuState ;
1870cdf0e10cSrcweir    ]
1871cdf0e10cSrcweir    SID_GLUE_HORZALIGN_LEFT // ole : no, status : ?
1872cdf0e10cSrcweir    [
1873cdf0e10cSrcweir        ExecMethod = FuSupport ;
1874cdf0e10cSrcweir        StateMethod = GetMenuState ;
1875cdf0e10cSrcweir    ]
1876cdf0e10cSrcweir    SID_GLUE_HORZALIGN_RIGHT // ole : no, status : ?
1877cdf0e10cSrcweir    [
1878cdf0e10cSrcweir        ExecMethod = FuSupport ;
1879cdf0e10cSrcweir        StateMethod = GetMenuState ;
1880cdf0e10cSrcweir    ]
1881cdf0e10cSrcweir    SID_GLUE_VERTALIGN_CENTER // ole : no, status : ?
1882cdf0e10cSrcweir    [
1883cdf0e10cSrcweir        ExecMethod = FuSupport ;
1884cdf0e10cSrcweir        StateMethod = GetMenuState ;
1885cdf0e10cSrcweir    ]
1886cdf0e10cSrcweir    SID_GLUE_VERTALIGN_TOP // ole : no, status : ?
1887cdf0e10cSrcweir    [
1888cdf0e10cSrcweir        ExecMethod = FuSupport ;
1889cdf0e10cSrcweir        StateMethod = GetMenuState ;
1890cdf0e10cSrcweir    ]
1891cdf0e10cSrcweir    SID_GLUE_VERTALIGN_BOTTOM // ole : no, status : ?
1892cdf0e10cSrcweir    [
1893cdf0e10cSrcweir        ExecMethod = FuSupport ;
1894cdf0e10cSrcweir        StateMethod = GetMenuState ;
1895cdf0e10cSrcweir    ]
1896cdf0e10cSrcweir    SID_POLYGON_MORPHING // ole : no, status : no
1897cdf0e10cSrcweir    [
1898cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1899cdf0e10cSrcweir        StateMethod = GetMenuState ;
1900cdf0e10cSrcweir    ]
1901cdf0e10cSrcweir    SID_GRID_FRONT // ole : no, status : ?
1902cdf0e10cSrcweir    [
1903cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1904cdf0e10cSrcweir        StateMethod = GetMenuState ;
1905cdf0e10cSrcweir    ]
1906cdf0e10cSrcweir    SID_HELPLINES_FRONT // ole : no, status : ?
1907cdf0e10cSrcweir    [
1908cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1909cdf0e10cSrcweir        StateMethod = GetMenuState ;
1910cdf0e10cSrcweir    ]
1911cdf0e10cSrcweir    SID_SHOW_ITEMBROWSER // ole : no, status : play rec
1912cdf0e10cSrcweir    [
1913cdf0e10cSrcweir        ExecMethod = FuSupport ;
1914cdf0e10cSrcweir        StateMethod = GetMenuState ;
1915cdf0e10cSrcweir    ]
1916cdf0e10cSrcweir    SID_AUTOSPELL_CHECK // ole : no, status : play rec
1917cdf0e10cSrcweir    [
1918cdf0e10cSrcweir        ExecMethod = FuSupport ;
1919cdf0e10cSrcweir        StateMethod = GetMenuState ;
1920cdf0e10cSrcweir    ]
1921cdf0e10cSrcweir    SID_CONVERT_TO_3D_LATHE_FAST // ole : no, status : ?
1922cdf0e10cSrcweir    [
1923cdf0e10cSrcweir        ExecMethod = FuTemporary ;
1924cdf0e10cSrcweir        StateMethod = GetMenuState ;
1925cdf0e10cSrcweir    ]
1926cdf0e10cSrcweir     // Slots in der Optionsleiste
1927cdf0e10cSrcweir    SID_BEZIER_EDIT // ole : no, status : ?
1928cdf0e10cSrcweir    [
1929cdf0e10cSrcweir        ExecMethod = FuSupport ;
1930cdf0e10cSrcweir        StateMethod = GetMenuState ;
1931cdf0e10cSrcweir    ]
1932cdf0e10cSrcweir    SID_GLUE_EDITMODE // ole : no, status : ?
1933cdf0e10cSrcweir    [
1934cdf0e10cSrcweir        ExecMethod = FuPermanent ;
1935cdf0e10cSrcweir        StateMethod = GetMenuState ;
1936cdf0e10cSrcweir    ]
1937cdf0e10cSrcweir    SID_GRID_VISIBLE // ole : no, status : ?
1938cdf0e10cSrcweir    [
1939cdf0e10cSrcweir        ExecMethod = ExecOptionsBar ;
1940cdf0e10cSrcweir        StateMethod = GetOptionsBarState ;
1941cdf0e10cSrcweir         //ExecMethod = FuTemporary ;
1942cdf0e10cSrcweir         //StateMethod = GetMenuState ;
1943cdf0e10cSrcweir    ]
1944cdf0e10cSrcweir    SID_HELPLINES_VISIBLE // ole : no, status : ?
1945cdf0e10cSrcweir    [
1946cdf0e10cSrcweir        ExecMethod = ExecOptionsBar ;
1947cdf0e10cSrcweir        StateMethod = GetOptionsBarState ;
1948cdf0e10cSrcweir         //ExecMethod = FuTemporary ;
1949cdf0e10cSrcweir         //StateMethod = GetMenuState ;
1950cdf0e10cSrcweir    ]
1951cdf0e10cSrcweir     // Neue Slots fuer Optionsleiste
1952cdf0e10cSrcweir//#i80528#    SID_GRAPHIC_DRAFT // ole : ?, status : ?
1953cdf0e10cSrcweir//#i80528#    [
1954cdf0e10cSrcweir//#i80528#        ExecMethod = ExecOptionsBar ;
1955cdf0e10cSrcweir//#i80528#        StateMethod = GetOptionsBarState ;
1956cdf0e10cSrcweir//#i80528#    ]
1957cdf0e10cSrcweir//#i80528#    SID_FILL_DRAFT // ole : ?, status : ?
1958cdf0e10cSrcweir//#i80528#    [
1959cdf0e10cSrcweir//#i80528#        ExecMethod = ExecOptionsBar ;
1960cdf0e10cSrcweir//#i80528#        StateMethod = GetOptionsBarState ;
1961cdf0e10cSrcweir//#i80528#    ]
1962cdf0e10cSrcweir//#i80528#    SID_TEXT_DRAFT // ole : ?, status : ?
1963cdf0e10cSrcweir//#i80528#    [
1964cdf0e10cSrcweir//#i80528#        ExecMethod = ExecOptionsBar ;
1965cdf0e10cSrcweir//#i80528#        StateMethod = GetOptionsBarState ;
1966cdf0e10cSrcweir//#i80528#    ]
1967cdf0e10cSrcweir//#i80528#    SID_LINE_DRAFT // ole : ?, status : ?
1968cdf0e10cSrcweir//#i80528#    [
1969cdf0e10cSrcweir//#i80528#        ExecMethod = ExecOptionsBar ;
1970cdf0e10cSrcweir//#i80528#        StateMethod = GetOptionsBarState ;
1971cdf0e10cSrcweir//#i80528#    ]
1972cdf0e10cSrcweir    SID_HANDLES_DRAFT // ole : ?, status : ?
1973cdf0e10cSrcweir    [
1974cdf0e10cSrcweir        ExecMethod = ExecOptionsBar ;
1975cdf0e10cSrcweir        StateMethod = GetOptionsBarState ;
1976cdf0e10cSrcweir    ]
1977cdf0e10cSrcweir    SID_SOLID_CREATE // ole : ?, status : ?
1978cdf0e10cSrcweir    [
1979cdf0e10cSrcweir        ExecMethod = ExecOptionsBar ;
1980cdf0e10cSrcweir        StateMethod = GetOptionsBarState ;
1981cdf0e10cSrcweir    ]
1982cdf0e10cSrcweir    SID_HELPLINES_USE // ole : ?, status : ?
1983cdf0e10cSrcweir    [
1984cdf0e10cSrcweir        ExecMethod = ExecOptionsBar ;
1985cdf0e10cSrcweir        StateMethod = GetOptionsBarState ;
1986cdf0e10cSrcweir    ]
1987cdf0e10cSrcweir    SID_HELPLINES_MOVE // ole : ?, status : ?
1988cdf0e10cSrcweir    [
1989cdf0e10cSrcweir        ExecMethod = ExecOptionsBar ;
1990cdf0e10cSrcweir        StateMethod = GetOptionsBarState ;
1991cdf0e10cSrcweir    ]
1992cdf0e10cSrcweir    SID_GRID_USE // ole : ?, status : ?
1993cdf0e10cSrcweir    [
1994cdf0e10cSrcweir        ExecMethod = ExecOptionsBar ;
1995cdf0e10cSrcweir        StateMethod = GetOptionsBarState ;
1996cdf0e10cSrcweir    ]
1997cdf0e10cSrcweir    SID_SNAP_BORDER // ole : ?, status : ?
1998cdf0e10cSrcweir    [
1999cdf0e10cSrcweir        ExecMethod = ExecOptionsBar ;
2000cdf0e10cSrcweir        StateMethod = GetOptionsBarState ;
2001cdf0e10cSrcweir    ]
2002cdf0e10cSrcweir    SID_SNAP_FRAME // ole : ?, status : ?
2003cdf0e10cSrcweir    [
2004cdf0e10cSrcweir        ExecMethod = ExecOptionsBar ;
2005cdf0e10cSrcweir        StateMethod = GetOptionsBarState ;
2006cdf0e10cSrcweir    ]
2007cdf0e10cSrcweir    SID_SNAP_POINTS // ole : ?, status : ?
2008cdf0e10cSrcweir    [
2009cdf0e10cSrcweir        ExecMethod = ExecOptionsBar ;
2010cdf0e10cSrcweir        StateMethod = GetOptionsBarState ;
2011cdf0e10cSrcweir    ]
2012cdf0e10cSrcweir    SID_QUICKEDIT // ole : ?, status : ?
2013cdf0e10cSrcweir    [
2014cdf0e10cSrcweir        ExecMethod = ExecOptionsBar ;
2015cdf0e10cSrcweir        StateMethod = GetOptionsBarState ;
2016cdf0e10cSrcweir    ]
2017cdf0e10cSrcweir    SID_PICK_THROUGH // ole : ?, status : ?
2018cdf0e10cSrcweir    [
2019cdf0e10cSrcweir        ExecMethod = ExecOptionsBar ;
2020cdf0e10cSrcweir        StateMethod = GetOptionsBarState ;
2021cdf0e10cSrcweir    ]
2022cdf0e10cSrcweir    SID_BIG_HANDLES // ole : ?, status : ?
2023cdf0e10cSrcweir    [
2024cdf0e10cSrcweir        ExecMethod = ExecOptionsBar ;
2025cdf0e10cSrcweir        StateMethod = GetOptionsBarState ;
2026cdf0e10cSrcweir    ]
2027cdf0e10cSrcweir    SID_DOUBLECLICK_TEXTEDIT // ole : ?, status : ?
2028cdf0e10cSrcweir    [
2029cdf0e10cSrcweir        ExecMethod = ExecOptionsBar ;
2030cdf0e10cSrcweir        StateMethod = GetOptionsBarState ;
2031cdf0e10cSrcweir    ]
2032cdf0e10cSrcweir    SID_CLICK_CHANGE_ROTATION // ole : ?, status : ?
2033cdf0e10cSrcweir    [
2034cdf0e10cSrcweir        ExecMethod = ExecOptionsBar ;
2035cdf0e10cSrcweir        StateMethod = GetOptionsBarState ;
2036cdf0e10cSrcweir    ]
2037cdf0e10cSrcweir    SID_CONVERT_TO_1BIT_THRESHOLD // ole : no, status : ?
2038cdf0e10cSrcweir    [
2039cdf0e10cSrcweir        ExecMethod = FuSupport ;
2040cdf0e10cSrcweir        StateMethod = GetMenuState ;
2041cdf0e10cSrcweir    ]
2042cdf0e10cSrcweir    SID_CONVERT_TO_1BIT_MATRIX // ole : no, status : ?
2043cdf0e10cSrcweir    [
2044cdf0e10cSrcweir        ExecMethod = FuSupport ;
2045cdf0e10cSrcweir        StateMethod = GetMenuState ;
2046cdf0e10cSrcweir    ]
2047cdf0e10cSrcweir    SID_CONVERT_TO_4BIT_GRAYS // ole : no, status : ?
2048cdf0e10cSrcweir    [
2049cdf0e10cSrcweir        ExecMethod = FuSupport ;
2050cdf0e10cSrcweir        StateMethod = GetMenuState ;
2051cdf0e10cSrcweir    ]
2052cdf0e10cSrcweir    SID_CONVERT_TO_4BIT_COLORS // ole : no, status : ?
2053cdf0e10cSrcweir    [
2054cdf0e10cSrcweir        ExecMethod = FuSupport ;
2055cdf0e10cSrcweir        StateMethod = GetMenuState ;
2056cdf0e10cSrcweir    ]
2057cdf0e10cSrcweir    SID_CONVERT_TO_8BIT_GRAYS // ole : no, status : ?
2058cdf0e10cSrcweir    [
2059cdf0e10cSrcweir        ExecMethod = FuSupport ;
2060cdf0e10cSrcweir        StateMethod = GetMenuState ;
2061cdf0e10cSrcweir    ]
2062cdf0e10cSrcweir    SID_CONVERT_TO_8BIT_COLORS // ole : no, status : ?
2063cdf0e10cSrcweir    [
2064cdf0e10cSrcweir        ExecMethod = FuSupport ;
2065cdf0e10cSrcweir        StateMethod = GetMenuState ;
2066cdf0e10cSrcweir    ]
2067cdf0e10cSrcweir    SID_CONVERT_TO_24BIT // ole : no, status : ?
2068cdf0e10cSrcweir    [
2069cdf0e10cSrcweir        ExecMethod = FuSupport ;
2070cdf0e10cSrcweir        StateMethod = GetMenuState ;
2071cdf0e10cSrcweir    ]
2072cdf0e10cSrcweir    SID_HYPHENATION // ole : no, status : play rec
2073cdf0e10cSrcweir    [
2074cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2075cdf0e10cSrcweir        StateMethod = GetAttrState ;
2076cdf0e10cSrcweir    ]
2077cdf0e10cSrcweir    SID_DUPLICATE_PAGE // ole : no, status : play rec
2078cdf0e10cSrcweir    [
2079cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2080cdf0e10cSrcweir        StateMethod = GetMenuState ;
2081cdf0e10cSrcweir    ]
2082cdf0e10cSrcweir    SID_INSERT_FLD_DATE_FIX // ole : no, status : play rec
2083cdf0e10cSrcweir    [
2084cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2085cdf0e10cSrcweir        StateMethod = GetMenuState ;
2086cdf0e10cSrcweir    ]
2087cdf0e10cSrcweir    SID_INSERT_FLD_DATE_VAR // ole : no, status : play rec
2088cdf0e10cSrcweir    [
2089cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2090cdf0e10cSrcweir        StateMethod = GetMenuState ;
2091cdf0e10cSrcweir    ]
2092cdf0e10cSrcweir    SID_INSERT_FLD_TIME_FIX // ole : no, status : play rec
2093cdf0e10cSrcweir    [
2094cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2095cdf0e10cSrcweir        StateMethod = GetMenuState ;
2096cdf0e10cSrcweir    ]
2097cdf0e10cSrcweir    SID_INSERT_FLD_TIME_VAR // ole : no, status : play rec
2098cdf0e10cSrcweir    [
2099cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2100cdf0e10cSrcweir        StateMethod = GetMenuState ;
2101cdf0e10cSrcweir    ]
2102cdf0e10cSrcweir    SID_INSERT_FLD_PAGE // ole : no, status : play rec
2103cdf0e10cSrcweir    [
2104cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2105cdf0e10cSrcweir        StateMethod = GetMenuState ;
2106cdf0e10cSrcweir    ]
2107cdf0e10cSrcweir    SID_INSERT_FLD_PAGES // ole : no, status : play rec
2108cdf0e10cSrcweir    [
2109cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2110cdf0e10cSrcweir        StateMethod = GetMenuState ;
2111cdf0e10cSrcweir    ]
2112cdf0e10cSrcweir    SID_INSERT_FLD_FILE // ole : no, status : play rec
2113cdf0e10cSrcweir    [
2114cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2115cdf0e10cSrcweir        StateMethod = GetMenuState ;
2116cdf0e10cSrcweir    ]
2117cdf0e10cSrcweir    SID_INSERT_FLD_AUTHOR // ole : no, status : play rec
2118cdf0e10cSrcweir    [
2119cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2120cdf0e10cSrcweir        StateMethod = GetMenuState ;
2121cdf0e10cSrcweir    ]
2122cdf0e10cSrcweir    SID_MODIFY_FIELD // ole : no, status : play rec
2123cdf0e10cSrcweir    [
2124cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2125cdf0e10cSrcweir        StateMethod = GetMenuState ;
2126cdf0e10cSrcweir    ]
2127cdf0e10cSrcweir    SID_OUTPUT_QUALITY_COLOR // ole : no, status : play rec
2128cdf0e10cSrcweir    [
2129cdf0e10cSrcweir        ExecMethod = ExecCtrl ;
2130cdf0e10cSrcweir        StateMethod = GetCtrlState ;
2131cdf0e10cSrcweir    ]
2132cdf0e10cSrcweir    SID_OUTPUT_QUALITY_GRAYSCALE // ole : no, status : play rec
2133cdf0e10cSrcweir    [
2134cdf0e10cSrcweir        ExecMethod = ExecCtrl ;
2135cdf0e10cSrcweir        StateMethod = GetCtrlState ;
2136cdf0e10cSrcweir    ]
2137cdf0e10cSrcweir    SID_OUTPUT_QUALITY_BLACKWHITE // ole : no, status : play rec
2138cdf0e10cSrcweir    [
2139cdf0e10cSrcweir        ExecMethod = ExecCtrl ;
2140cdf0e10cSrcweir        StateMethod = GetCtrlState ;
2141cdf0e10cSrcweir    ]
2142cdf0e10cSrcweir    SID_OUTPUT_QUALITY_CONTRAST // ole : no, status : play rec
2143cdf0e10cSrcweir    [
2144cdf0e10cSrcweir        ExecMethod = ExecCtrl ;
2145cdf0e10cSrcweir        StateMethod = GetCtrlState ;
2146cdf0e10cSrcweir    ]
2147cdf0e10cSrcweir    SID_MAIL_SCROLLBODY_PAGEDOWN // ole : no, status : ?
2148cdf0e10cSrcweir    [
2149cdf0e10cSrcweir        ExecMethod = ExecCtrl ;
2150cdf0e10cSrcweir        StateMethod = GetCtrlState ;
2151cdf0e10cSrcweir    ]
2152cdf0e10cSrcweir    SID_EDIT_HYPERLINK // ole : no, status : ?
2153cdf0e10cSrcweir    [
2154cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2155cdf0e10cSrcweir        StateMethod = GetMenuState ;
2156cdf0e10cSrcweir    ]
2157cdf0e10cSrcweir    SID_OPEN_HYPERLINK // ole : no, status : ?
2158cdf0e10cSrcweir    [
2159cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2160cdf0e10cSrcweir        StateMethod = GetMenuState ;
2161cdf0e10cSrcweir    ]
2162cdf0e10cSrcweir    SID_TRANSLITERATE_UPPER // ole : no, status : ?
2163cdf0e10cSrcweir    [
2164cdf0e10cSrcweir        ExecMethod = FuSupport ;
2165cdf0e10cSrcweir        StateMethod = GetCtrlState ;
2166cdf0e10cSrcweir    ]
2167cdf0e10cSrcweir    SID_TRANSLITERATE_SENTENCE_CASE // ole : no, status : ?
2168cdf0e10cSrcweir    [
2169cdf0e10cSrcweir        ExecMethod = FuSupport ;
2170cdf0e10cSrcweir        StateMethod = GetCtrlState ;
2171cdf0e10cSrcweir    ]
2172cdf0e10cSrcweir    SID_TRANSLITERATE_TITLE_CASE // ole : no, status : ?
2173cdf0e10cSrcweir    [
2174cdf0e10cSrcweir        ExecMethod = FuSupport ;
2175cdf0e10cSrcweir        StateMethod = GetCtrlState ;
2176cdf0e10cSrcweir    ]
2177cdf0e10cSrcweir    SID_TRANSLITERATE_TOGGLE_CASE // ole : no, status : ?
2178cdf0e10cSrcweir    [
2179cdf0e10cSrcweir        ExecMethod = FuSupport ;
2180cdf0e10cSrcweir        StateMethod = GetCtrlState ;
2181cdf0e10cSrcweir    ]
2182cdf0e10cSrcweir    SID_TRANSLITERATE_LOWER // ole : no, status : ?
2183cdf0e10cSrcweir    [
2184cdf0e10cSrcweir        ExecMethod = FuSupport ;
2185cdf0e10cSrcweir        StateMethod = GetCtrlState ;
2186cdf0e10cSrcweir    ]
2187cdf0e10cSrcweir    SID_TRANSLITERATE_HALFWIDTH // ole : no, status : ?
2188cdf0e10cSrcweir    [
2189cdf0e10cSrcweir        ExecMethod = FuSupport ;
2190cdf0e10cSrcweir        StateMethod = GetCtrlState ;
2191cdf0e10cSrcweir    ]
2192cdf0e10cSrcweir    SID_TRANSLITERATE_FULLWIDTH // ole : no, status : ?
2193cdf0e10cSrcweir    [
2194cdf0e10cSrcweir        ExecMethod = FuSupport ;
2195cdf0e10cSrcweir        StateMethod = GetCtrlState ;
2196cdf0e10cSrcweir    ]
2197cdf0e10cSrcweir    SID_TRANSLITERATE_HIRAGANA // ole : no, status : ?
2198cdf0e10cSrcweir    [
2199cdf0e10cSrcweir        ExecMethod = FuSupport ;
2200cdf0e10cSrcweir        StateMethod = GetCtrlState ;
2201cdf0e10cSrcweir    ]
2202cdf0e10cSrcweir    SID_TRANSLITERATE_KATAGANA // ole : no, status : ?
2203cdf0e10cSrcweir    [
2204cdf0e10cSrcweir        ExecMethod = FuSupport ;
2205cdf0e10cSrcweir        StateMethod = GetCtrlState ;
2206cdf0e10cSrcweir    ]
2207cdf0e10cSrcweir
2208cdf0e10cSrcweir	// #UndoRedo#
2209cdf0e10cSrcweir	SID_GETUNDOSTRINGS // ole : no, status : ?
2210cdf0e10cSrcweir    [
2211cdf0e10cSrcweir        ExecMethod = FuSupport ;
2212cdf0e10cSrcweir        StateMethod = GetMenuState ;
2213cdf0e10cSrcweir    ]
2214cdf0e10cSrcweir	SID_UNDO // ole : no, status : ?
2215cdf0e10cSrcweir    [
2216cdf0e10cSrcweir        ExecMethod = FuSupport ;
2217cdf0e10cSrcweir        StateMethod = GetMenuState ;
2218cdf0e10cSrcweir    ]
2219cdf0e10cSrcweir	SID_GETREDOSTRINGS // ole : no, status : ?
2220cdf0e10cSrcweir    [
2221cdf0e10cSrcweir        ExecMethod = FuSupport ;
2222cdf0e10cSrcweir        StateMethod = GetMenuState ;
2223cdf0e10cSrcweir    ]
2224cdf0e10cSrcweir	SID_REDO // ole : no, status : ?
2225cdf0e10cSrcweir    [
2226cdf0e10cSrcweir        ExecMethod = FuSupport ;
2227cdf0e10cSrcweir        StateMethod = GetMenuState ;
2228cdf0e10cSrcweir    ]
2229cdf0e10cSrcweir
2230cdf0e10cSrcweir    SID_FORMATPAINTBRUSH //
2231cdf0e10cSrcweir    [
2232cdf0e10cSrcweir        ExecMethod = FuPermanent ;
2233cdf0e10cSrcweir        StateMethod = GetMenuState ;
2234cdf0e10cSrcweir    ]
2235cdf0e10cSrcweir
2236cdf0e10cSrcweir    SID_HEADER_AND_FOOTER // ole : no, status : ?
2237cdf0e10cSrcweir    [
2238cdf0e10cSrcweir        ExecMethod = ExecCtrl ;
2239cdf0e10cSrcweir        StateMethod = GetMenuState ;
2240cdf0e10cSrcweir	]
2241cdf0e10cSrcweir
2242cdf0e10cSrcweir    SID_INSERT_PAGE_NUMBER // ole : no, status : ?
2243cdf0e10cSrcweir    [
2244cdf0e10cSrcweir        ExecMethod = ExecCtrl ;
2245cdf0e10cSrcweir        StateMethod = GetMenuState ;
2246cdf0e10cSrcweir	]
2247cdf0e10cSrcweir
2248cdf0e10cSrcweir    SID_INSERT_DATE_TIME // ole : no, status : ?
2249cdf0e10cSrcweir    [
2250cdf0e10cSrcweir        ExecMethod = ExecCtrl ;
2251cdf0e10cSrcweir        StateMethod = GetMenuState ;
2252cdf0e10cSrcweir	]
2253cdf0e10cSrcweir
2254cdf0e10cSrcweir	SID_MASTER_LAYOUTS
2255cdf0e10cSrcweir	[
2256cdf0e10cSrcweir		ExecMethod = ExecCtrl ;
2257cdf0e10cSrcweir		StateMethod = GetMenuState ;
2258cdf0e10cSrcweir	]
2259cdf0e10cSrcweir
2260cdf0e10cSrcweir    SID_OPT_LOCALE_CHANGED // ole : no, status : ?
2261cdf0e10cSrcweir    [
2262cdf0e10cSrcweir        ExecMethod = ExecCtrl ;
2263cdf0e10cSrcweir        StateMethod = GetCtrlState ;
2264cdf0e10cSrcweir    ]
2265cdf0e10cSrcweir
2266cdf0e10cSrcweir    SID_OPEN_XML_FILTERSETTINGS // ole : no, status : ?
2267cdf0e10cSrcweir    [
2268cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2269cdf0e10cSrcweir        StateMethod = GetMenuState ;
2270cdf0e10cSrcweir    ]
2271cdf0e10cSrcweir    SID_SPELL_DIALOG // ole : no, status : ?
2272cdf0e10cSrcweir    [
2273cdf0e10cSrcweir        ExecMethod = Execute ;
2274cdf0e10cSrcweir        StateMethod = GetMenuState ;
2275cdf0e10cSrcweir    ]
2276cdf0e10cSrcweir    SID_EXTRUSION_TOOGLE
2277cdf0e10cSrcweir    [
2278cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2279cdf0e10cSrcweir        StateMethod = GetMenuState ;
2280cdf0e10cSrcweir    ]
2281cdf0e10cSrcweir    SID_EXTRUSION_TILT_DOWN
2282cdf0e10cSrcweir    [
2283cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2284cdf0e10cSrcweir        StateMethod = GetMenuState ;
2285cdf0e10cSrcweir    ]
2286cdf0e10cSrcweir    SID_EXTRUSION_TILT_UP
2287cdf0e10cSrcweir    [
2288cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2289cdf0e10cSrcweir        StateMethod = GetMenuState ;
2290cdf0e10cSrcweir    ]
2291cdf0e10cSrcweir    SID_EXTRUSION_TILT_LEFT
2292cdf0e10cSrcweir    [
2293cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2294cdf0e10cSrcweir        StateMethod = GetMenuState ;
2295cdf0e10cSrcweir    ]
2296cdf0e10cSrcweir    SID_EXTRUSION_TILT_RIGHT
2297cdf0e10cSrcweir    [
2298cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2299cdf0e10cSrcweir        StateMethod = GetMenuState ;
2300cdf0e10cSrcweir    ]
2301cdf0e10cSrcweir    SID_EXTRUSION_DEPTH_FLOATER
2302cdf0e10cSrcweir    [
2303cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2304cdf0e10cSrcweir        StateMethod = GetMenuState ;
2305cdf0e10cSrcweir    ]
2306cdf0e10cSrcweir    SID_EXTRUSION_DEPTH_DIALOG
2307cdf0e10cSrcweir    [
2308cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2309cdf0e10cSrcweir        StateMethod = GetMenuState ;
2310cdf0e10cSrcweir    ]
2311cdf0e10cSrcweir    SID_EXTRUSION_DIRECTION_FLOATER
2312cdf0e10cSrcweir    [
2313cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2314cdf0e10cSrcweir        StateMethod = GetMenuState ;
2315cdf0e10cSrcweir    ]
2316cdf0e10cSrcweir    SID_EXTRUSION_LIGHTING_FLOATER
2317cdf0e10cSrcweir    [
2318cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2319cdf0e10cSrcweir        StateMethod = GetMenuState ;
2320cdf0e10cSrcweir    ]
2321cdf0e10cSrcweir    SID_EXTRUSION_SURFACE_FLOATER
2322cdf0e10cSrcweir    [
2323cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2324cdf0e10cSrcweir        StateMethod = GetMenuState ;
2325cdf0e10cSrcweir    ]
2326cdf0e10cSrcweir    SID_EXTRUSION_3D_COLOR
2327cdf0e10cSrcweir    [
2328cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2329cdf0e10cSrcweir        StateMethod = GetMenuState ;
2330cdf0e10cSrcweir    ]
2331cdf0e10cSrcweir    SID_EXTRUSION_DEPTH
2332cdf0e10cSrcweir    [
2333cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2334cdf0e10cSrcweir        StateMethod = GetMenuState ;
2335cdf0e10cSrcweir    ]
2336cdf0e10cSrcweir    SID_EXTRUSION_DIRECTION
2337cdf0e10cSrcweir    [
2338cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2339cdf0e10cSrcweir        StateMethod = GetMenuState ;
2340cdf0e10cSrcweir    ]
2341cdf0e10cSrcweir    SID_EXTRUSION_PROJECTION
2342cdf0e10cSrcweir    [
2343cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2344cdf0e10cSrcweir        StateMethod = GetMenuState ;
2345cdf0e10cSrcweir    ]
2346cdf0e10cSrcweir    SID_EXTRUSION_LIGHTING_DIRECTION
2347cdf0e10cSrcweir    [
2348cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2349cdf0e10cSrcweir        StateMethod = GetMenuState ;
2350cdf0e10cSrcweir    ]
2351cdf0e10cSrcweir    SID_EXTRUSION_LIGHTING_INTENSITY
2352cdf0e10cSrcweir    [
2353cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2354cdf0e10cSrcweir        StateMethod = GetMenuState ;
2355cdf0e10cSrcweir    ]
2356cdf0e10cSrcweir    SID_EXTRUSION_SURFACE
2357cdf0e10cSrcweir    [
2358cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2359cdf0e10cSrcweir        StateMethod = GetMenuState ;
2360cdf0e10cSrcweir    ]
2361cdf0e10cSrcweir	SID_FONTWORK_SHAPE
2362cdf0e10cSrcweir    [
2363cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2364cdf0e10cSrcweir        StateMethod = GetMenuState ;
2365cdf0e10cSrcweir    ]
2366cdf0e10cSrcweir    SID_FONTWORK_GALLERY_FLOATER
2367cdf0e10cSrcweir    [
2368cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2369cdf0e10cSrcweir        StateMethod = GetMenuState ;
2370cdf0e10cSrcweir    ]
2371cdf0e10cSrcweir    SID_FONTWORK_SHAPE_TYPE
2372cdf0e10cSrcweir    [
2373cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2374cdf0e10cSrcweir        StateMethod = GetMenuState ;
2375cdf0e10cSrcweir    ]
2376cdf0e10cSrcweir    SID_FONTWORK_ALIGNMENT_FLOATER
2377cdf0e10cSrcweir    [
2378cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2379cdf0e10cSrcweir        StateMethod = GetMenuState ;
2380cdf0e10cSrcweir    ]
2381cdf0e10cSrcweir    SID_FONTWORK_CHARACTER_SPACING_FLOATER
2382cdf0e10cSrcweir    [
2383cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2384cdf0e10cSrcweir        StateMethod = GetMenuState ;
2385cdf0e10cSrcweir    ]
2386cdf0e10cSrcweir	SID_FONTWORK_ALIGNMENT
2387cdf0e10cSrcweir    [
2388cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2389cdf0e10cSrcweir        StateMethod = GetMenuState ;
2390cdf0e10cSrcweir    ]
2391cdf0e10cSrcweir	SID_FONTWORK_SAME_LETTER_HEIGHTS
2392cdf0e10cSrcweir	[
2393cdf0e10cSrcweir		ExecMethod = FuTemporary ;
2394cdf0e10cSrcweir		StateMethod = GetMenuState ;
2395cdf0e10cSrcweir	]
2396cdf0e10cSrcweir	SID_FONTWORK_CHARACTER_SPACING
2397cdf0e10cSrcweir    [
2398cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2399cdf0e10cSrcweir        StateMethod = GetMenuState ;
2400cdf0e10cSrcweir    ]
2401cdf0e10cSrcweir	SID_FONTWORK_KERN_CHARACTER_PAIRS
2402cdf0e10cSrcweir    [
2403cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2404cdf0e10cSrcweir        StateMethod = GetMenuState ;
2405cdf0e10cSrcweir    ]
2406cdf0e10cSrcweir    SID_FONTWORK_CHARACTER_SPACING_DIALOG
2407cdf0e10cSrcweir    [
2408cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2409cdf0e10cSrcweir        StateMethod = GetMenuState ;
2410cdf0e10cSrcweir    ]
2411cdf0e10cSrcweir    SID_DRAW_FONTWORK
2412cdf0e10cSrcweir    [
2413cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2414cdf0e10cSrcweir        StateMethod = GetMenuState ;
2415cdf0e10cSrcweir    ]
2416cdf0e10cSrcweir    SID_DRAW_FONTWORK_VERTICAL
2417cdf0e10cSrcweir    [
2418cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2419cdf0e10cSrcweir        StateMethod = GetMenuState ;
2420cdf0e10cSrcweir    ]
2421cdf0e10cSrcweir    SID_DRAWTBX_CS_BASIC
2422cdf0e10cSrcweir    [
2423cdf0e10cSrcweir        ExecMethod = FuPermanent ;
2424cdf0e10cSrcweir        StateMethod = GetMenuState ;
2425cdf0e10cSrcweir    ]
2426cdf0e10cSrcweir    SID_DRAWTBX_CS_SYMBOL
2427cdf0e10cSrcweir    [
2428cdf0e10cSrcweir        ExecMethod = FuPermanent ;
2429cdf0e10cSrcweir        StateMethod = GetMenuState ;
2430cdf0e10cSrcweir    ]
2431cdf0e10cSrcweir    SID_DRAWTBX_CS_ARROW
2432cdf0e10cSrcweir    [
2433cdf0e10cSrcweir        ExecMethod = FuPermanent ;
2434cdf0e10cSrcweir        StateMethod = GetMenuState ;
2435cdf0e10cSrcweir    ]
2436cdf0e10cSrcweir    SID_DRAWTBX_CS_FLOWCHART
2437cdf0e10cSrcweir    [
2438cdf0e10cSrcweir        ExecMethod = FuPermanent ;
2439cdf0e10cSrcweir        StateMethod = GetMenuState ;
2440cdf0e10cSrcweir    ]
2441cdf0e10cSrcweir    SID_DRAWTBX_CS_CALLOUT
2442cdf0e10cSrcweir    [
2443cdf0e10cSrcweir        ExecMethod = FuPermanent ;
2444cdf0e10cSrcweir        StateMethod = GetMenuState ;
2445cdf0e10cSrcweir    ]
2446cdf0e10cSrcweir    SID_DRAWTBX_CS_STAR
2447cdf0e10cSrcweir    [
2448cdf0e10cSrcweir        ExecMethod = FuPermanent ;
2449cdf0e10cSrcweir        StateMethod = GetMenuState ;
2450cdf0e10cSrcweir    ]
2451cdf0e10cSrcweir    SID_DRAW_CS_ID
2452cdf0e10cSrcweir    [
2453cdf0e10cSrcweir        ExecMethod = FuPermanent ;
2454cdf0e10cSrcweir        StateMethod = GetMenuState ;
2455cdf0e10cSrcweir    ]
2456cdf0e10cSrcweir    SID_AVMEDIA_PLAYER // ole : yes, status : ?
2457cdf0e10cSrcweir    [
2458cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2459cdf0e10cSrcweir        StateMethod = GetMenuState ;
2460cdf0e10cSrcweir    ]
2461cdf0e10cSrcweir    SID_INSERT_AVMEDIA // ole : yes, status : ?
2462cdf0e10cSrcweir    [
2463cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2464cdf0e10cSrcweir        StateMethod = GetMenuState ;
2465cdf0e10cSrcweir    ]
2466cdf0e10cSrcweir
2467cdf0e10cSrcweir    SID_INSERT_MASTER_PAGE
2468cdf0e10cSrcweir    [
2469cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2470cdf0e10cSrcweir        StateMethod = GetMenuState ;
2471cdf0e10cSrcweir    ]
2472cdf0e10cSrcweir    SID_DELETE_MASTER_PAGE
2473cdf0e10cSrcweir    [
2474cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2475cdf0e10cSrcweir        StateMethod = GetMenuState ;
2476cdf0e10cSrcweir    ]
2477cdf0e10cSrcweir    SID_RENAME_MASTER_PAGE
2478cdf0e10cSrcweir    [
2479cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2480cdf0e10cSrcweir        StateMethod = GetMenuState ;
2481cdf0e10cSrcweir    ]
2482cdf0e10cSrcweir    SID_CLOSE_MASTER_VIEW
2483cdf0e10cSrcweir    [
2484cdf0e10cSrcweir        ExecMethod = FuSupport ;
2485cdf0e10cSrcweir        StateMethod = GetMenuState ;
2486cdf0e10cSrcweir    ]
2487cdf0e10cSrcweir    SID_SELECT_BACKGROUND
2488cdf0e10cSrcweir    [
2489cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2490cdf0e10cSrcweir        StateMethod = GetMenuState ;
2491cdf0e10cSrcweir    ]
2492cdf0e10cSrcweir    SID_DISPLAY_MASTER_BACKGROUND
2493cdf0e10cSrcweir    [
2494cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2495cdf0e10cSrcweir        StateMethod = GetMenuState ;
2496cdf0e10cSrcweir    ]
2497cdf0e10cSrcweir    SID_DISPLAY_MASTER_OBJECTS
2498cdf0e10cSrcweir    [
2499cdf0e10cSrcweir        ExecMethod = FuTemporary ;
2500cdf0e10cSrcweir        StateMethod = GetMenuState ;
2501cdf0e10cSrcweir    ]
2502cdf0e10cSrcweir    SID_INSERT_TABLE
2503cdf0e10cSrcweir    [
2504cdf0e10cSrcweir        ExecMethod = FuTable ;
2505cdf0e10cSrcweir        StateMethod = GetTableMenuState ;
2506cdf0e10cSrcweir    ]
2507cdf0e10cSrcweir    SID_TABLEDESIGN
2508cdf0e10cSrcweir    [
2509cdf0e10cSrcweir        ExecMethod = FuTable ;
2510cdf0e10cSrcweir        StateMethod = GetTableMenuState ;
2511cdf0e10cSrcweir    ]
2512cdf0e10cSrcweir}
2513