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