MenuEditor.st
author Claus Gittinger <cg@exept.de>
Wed, 20 May 1998 02:29:34 +0200
changeset 838 0ac5a26498c1
parent 836 b44c0047291f
child 849 0001a9185d99
permissions -rw-r--r--
help texts & national strings
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
     1
"
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
     2
 COPYRIGHT (c) 1997 by eXept Software AG
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
     3
              All Rights Reserved
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
     4
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
     5
 This software is furnished under a license and may be used
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
     7
 inclusion of the above copyright notice. This software may not
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    10
 hereby transferred.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    11
"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    12
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    13
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    14
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
    15
ResourceSpecEditor subclass:#MenuEditor
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
    16
	instanceVariableNames:'specCanvas helpCanvas slices'
220
ca
parents: 218
diff changeset
    17
	classVariableNames:''
ca
parents: 218
diff changeset
    18
	poolDictionaries:''
ca
parents: 218
diff changeset
    19
	category:'Interface-UIPainter'
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    20
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    21
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    22
Object subclass:#Item
220
ca
parents: 218
diff changeset
    23
	instanceVariableNames:'activeHelpKey enabled label value nameKey indication shortcutKey
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
    24
		accessCharacterPos retriever icon iconAndLabel submenuChannel
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
    25
		startGroup argument translateLabel isButton isVisible'
220
ca
parents: 218
diff changeset
    26
	classVariableNames:''
ca
parents: 218
diff changeset
    27
	poolDictionaries:''
ca
parents: 218
diff changeset
    28
	privateIn:MenuEditor
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    29
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    30
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
    31
SelectionInTreeView subclass:#TreeView
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
    32
	instanceVariableNames:''
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
    33
	classVariableNames:''
220
ca
parents: 218
diff changeset
    34
	poolDictionaries:''
ca
parents: 218
diff changeset
    35
	privateIn:MenuEditor
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    36
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    37
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    38
!MenuEditor class methodsFor:'documentation'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    39
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    40
copyright
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    41
"
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
    42
 COPYRIGHT (c) 1997 by eXept Software AG
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    43
              All Rights Reserved
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    44
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    45
 This software is furnished under a license and may be used
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    46
 only in accordance with the terms of that license and with the
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
    47
 inclusion of the above copyright notice. This software may not
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    48
 be provided or otherwise made available to, or used by, any
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    49
 other person.  No title to or ownership of the software is
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    50
 hereby transferred.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    51
"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    52
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    53
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    54
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    55
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    56
documentation
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    57
"
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    58
    The MenuEditor allows you to create, modify or just inspect
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    59
    hierarchical menus of menu bars, popup menu, or tool bar menus.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    60
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    61
    [start with:]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    62
        MenuEditor open
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    63
        MenuEditor openOnClass:MenuEditor andSelector:#menu
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    64
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    65
    [see also:]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    66
        UIPainter
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    67
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    68
    [author:]
541
5dc124df04e2 author line in doc.
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
    69
        Claus Atzkern, eXept Software AG
5dc124df04e2 author line in doc.
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
    70
        Thomas Zwick, eXept Software AG
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    71
"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    72
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    73
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    74
508
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    75
!MenuEditor class methodsFor:'instance creation'!
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    76
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    77
openModalOnMenu: aMenu
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    78
    "Open a MenuEditor modal on aMenu"
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    79
    "self openModalOnMenu: (self perform: #menu) decodeAsLiteralArray"
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    80
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    81
    ^self new openModalOnMenu: aMenu
508
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    82
! !
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    83
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
    84
!MenuEditor class methodsFor:'accessing'!
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
    85
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    86
iconUnknown
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    87
    "returns an image used for picked items containing an image
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    88
    "
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    89
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    90
    <resource: #fileImage>
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    91
804
b66537045e04 reuse broken image bitmap
Claus Gittinger <cg@exept.de>
parents: 775
diff changeset
    92
    "/ ^ Image fromFile:'brokenImage.xpm'
b66537045e04 reuse broken image bitmap
Claus Gittinger <cg@exept.de>
parents: 775
diff changeset
    93
    ^ Icon constantNamed:'brokenImage.xpm'
b66537045e04 reuse broken image bitmap
Claus Gittinger <cg@exept.de>
parents: 775
diff changeset
    94
b66537045e04 reuse broken image bitmap
Claus Gittinger <cg@exept.de>
parents: 775
diff changeset
    95
    "Modified: / 22.4.1998 / 22:15:11 / ca"
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    96
!
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    97
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
    98
resourceType
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    99
    "get the type of resource of the method generated by the MenuEditor"
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   100
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   101
    ^#menu
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   102
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   103
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   104
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   105
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   106
! !
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   107
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   108
!MenuEditor class methodsFor:'aspects'!
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   109
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   110
aspects
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   111
    "get the aspects for the attributes of the menu components"
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   112
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   113
    ^#(
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   114
        label
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   115
        accessCharacterPos
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   116
        argument
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   117
        submenuChannel
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   118
        enabled
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   119
        value
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   120
        nameKey
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   121
        indication
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   122
        translateLabel
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   123
        isButton
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   124
        shortcutKey
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   125
        startGroup
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   126
        retriever
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   127
        iconAndLabel
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   128
        icon
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   129
        isVisible
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   130
     )
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   131
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   132
! !
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   133
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   134
!MenuEditor class methodsFor:'help specs'!
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   135
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   136
helpSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   137
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   138
     by the UIHelpTool of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   139
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   140
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   141
     the UIHelpTool may not be able to read the specification."
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   142
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   143
    "
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   144
     UIHelpTool openOnClass:MenuEditor    
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   145
    "
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   146
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   147
    <resource: #help>
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   148
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   149
    ^super helpSpec addPairsFrom:#(
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   150
548
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   151
#addMenuItem
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   152
'Adds a new menu item.'
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   153
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   154
#addMenuSeparator
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   155
'Adds a new menu separator.'
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   156
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   157
#addSubMenu
613
5bdf59b03e8e checkin from browser
tz
parents: 612
diff changeset
   158
'Adds a new sub menu.'
548
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   159
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   160
#addSubMenuLink
613
5bdf59b03e8e checkin from browser
tz
parents: 612
diff changeset
   161
'Adds a new linked sub menu.'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   162
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   163
#basicsAction
627
e28ca0319230 checkin from browser
tz
parents: 621
diff changeset
   164
'An action selector with 0, 1 (the argument field), or 2 (the selected item) arguments.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   165
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   166
#basicsArgument
613
5bdf59b03e8e checkin from browser
tz
parents: 612
diff changeset
   167
'An argument passed to above selector, if it is a 1 or a 2 argument selector.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   168
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   169
#basicsIndication
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   170
'A boolean value holder, a boolean evaluating block, or a boolean returning selector for specifying indication state.'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   171
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   172
#basicsIsButton
603
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
   173
'Turns on/off a button behavior.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   174
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   175
#basicsLabel
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   176
'Label of the item.'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   177
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   178
#basicsMenu
613
5bdf59b03e8e checkin from browser
tz
parents: 612
diff changeset
   179
'A value holder providing the sub menu to be opened if item is selected.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   180
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   181
#basicsMenuArgument
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   182
'An argument passes with menu selector.'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   183
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   184
#basicsNameKey
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   185
'Unique identifier of the item (optional).'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   186
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   187
#basicsSelector
613
5bdf59b03e8e checkin from browser
tz
parents: 612
diff changeset
   188
'Selector under which the generated menu spec is saved.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   189
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   190
#basicsSeparatorType
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   191
'List of valid separators.'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   192
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   193
#basicsTranslateLabel
603
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
   194
'Turns on/off translation behavior of the label via class resource file.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   195
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   196
#detailsAccelerator
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   197
'Key to be pressed to select the menu item from the keyboard (accelerator key).'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   198
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   199
#detailsAccessCharaterPosition
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   200
'Index of the access character position of the textual label (optional).'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   201
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   202
#detailsEnabled
613
5bdf59b03e8e checkin from browser
tz
parents: 612
diff changeset
   203
'A boolean value holder providing en- or disabling of the menu item.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   204
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   205
#detailsVisibility
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   206
'A boolean value holder providing visibility of the menu item.'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   207
548
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   208
#fileLoad
612
e0fd14c460ae *** empty log message ***
tz
parents: 606
diff changeset
   209
'Opens a dialog for selecting and loading a menu spec from a class.'
548
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   210
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   211
#fileNew
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   212
'Creates a new menu spec.'
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   213
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   214
#filePickAMenu
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
   215
'Select a menu from an open view and read its specification'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   216
548
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   217
#fileSave
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   218
'Saves current menu spec and if modified the help spec.'
455
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
   219
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   220
#fileSaveAs
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   221
'Opens a dialog to save current menu spec and if modified the help spec.'
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   222
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   223
#imageImageAndLabel
603
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
   224
'Turns on/off displaying both image and textual label.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   225
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   226
#imageImageEditor
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   227
'Opens an Image Editor on retriever and selector.'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   228
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   229
#imageRetriever
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   230
'Class implementing the image resource method. If no class is given, the current application class will be taken.'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   231
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   232
#imageSelector
613
5bdf59b03e8e checkin from browser
tz
parents: 612
diff changeset
   233
'Selector returning an image.'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   234
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   235
)
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
   236
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
   237
    "Modified: / 20.5.1998 / 00:42:49 / cg"
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   238
! !
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   239
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   240
!MenuEditor class methodsFor:'image specs'!
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   241
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   242
linkSubmenuImage
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   243
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   244
     by the ImageEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   245
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   246
    "Do not manually edit this!!!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   247
     the ImageEditor may not be able to read the specification."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   248
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   249
    "
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   250
     ImageEditor openOnClass:self andSelector:#linkSubmenuImage
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   251
    "
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   252
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   253
    <resource: #image>
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   254
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   255
    ^Icon
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   256
        constantNamed:#'MenuEditor linkSubmenuImage'
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   257
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@ADQDQDQDQDQDQH@D"H"H"H"H"H"K0@RH"H"H"H"H"H/@A????????????<@D@@@@@@@@@@@C0@PL3L0DQDQDQD_@A@3L3LBH"H"H"<@DCL3L3@"H"H"K0@PL3L3L0??????@A@@@@L3L@@@@@<@DQDQDCL3@PLAG0@RH"H"@3L0@3@/@AH"H"H L3L3L0<@G?????<CL3L3L@@P@@@@@@@3L3LO@ADQDQDQDP@CLA<@D"H"H"H"H LBK0@RH"H"H"H"@BH/@B????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]!
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   258
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   259
menuItemImage
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   260
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   261
     by the ImageEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   262
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   263
    "Do not manually edit this!!!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   264
     the ImageEditor may not be able to read the specification."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   265
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   266
    "
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   267
     ImageEditor openOnClass:self andSelector:#menuItemImage
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   268
    "
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   269
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   270
    <resource: #image>
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   271
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   272
    ^Icon
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   273
        constantNamed:#'MenuEditor menuItemImage'
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   274
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'UUUUUUUQUUUUUUUPUUUUUUU_UUUUUUUPUUUUUUUP@@@@@@@@EUUUUUVAF*****+HF:?+::;@F:.+*?;@F:.+::;@F:.+*:;@F:.+::;@F*****+DK??????A@@@@@@@@UUUUUUUPUUUUUUUXUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUX') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 127 127 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@???<???<???<???<???<???<???<???<???<???<???<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]!
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   275
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   276
menuSeparatorImage
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   277
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   278
     by the ImageEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   279
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   280
    "Do not manually edit this!!!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   281
     the ImageEditor may not be able to read the specification."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   282
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   283
    "
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   284
     ImageEditor openOnClass:self andSelector:#menuSeparatorImage
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   285
    "
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   286
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   287
    <resource: #image>
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   288
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   289
    ^Icon
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   290
        constantNamed:#'MenuEditor menuSeparatorImage'
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   291
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'UUUUUUURUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUP@@@@@@@@EUUUUUV@F*****+DF*****+CF?????+@F0@@@@[@F%UUUU[HF*****+@F*****+@K??????N@@@@@@@HUUUUUUUPUUUUUUUPUUUUUUUWUUUUUUUXUUUUUUUPUUUUUUUP') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 127 127 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@???<???<???<???<???<???<???<???<???<???<???<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]!
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   292
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   293
submenuImage
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   294
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   295
     by the ImageEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   296
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   297
    "Do not manually edit this!!!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   298
     the ImageEditor may not be able to read the specification."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   299
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   300
    "
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   301
     ImageEditor openOnClass:self andSelector:#submenuImage
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   302
    "
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   303
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   304
    <resource: #image>
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   305
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   306
    ^Icon
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   307
        constantNamed:#'MenuEditor submenuImage'
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   308
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@EUUUUUV@F*****+@F*****+@G??????GD@@@@@C@EUUUUUWLF*****+@F*****+@G??????HD@@@@@C@EUUUUUW@F*****+@F*****+OG??????@D@@@@@C@EUUUUUW@F*****+@F*****+@K??????@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 127 127 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]! !
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   309
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   310
!MenuEditor class methodsFor:'interface specs'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   311
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   312
basicsItemSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   313
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   314
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   315
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   316
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   317
     the UIPainter may not be able to read the specification."
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   318
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   319
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   320
     UIPainter new openOnClass:MenuEditor andSelector:#basicsItemSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   321
     MenuEditor new openInterface:#basicsItemSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   322
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   323
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   324
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   325
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   326
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   327
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   328
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   329
          #window: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   330
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   331
              #name: 'Basics Item'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   332
              #layout: #(#LayoutFrame 473 0 301 0 739 0 619 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   333
              #label: 'Basics Item'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   334
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   335
              #max: #(#Point 1160 870)
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   336
              #bounds: #(#Rectangle 473 301 740 620)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   337
              #usePreferredExtent: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   338
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   339
          #component: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   340
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   341
              #collection: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   342
               #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   343
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   344
                    #name: 'nameKeyLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   345
                    #layout: #(#AlignmentOrigin 107 0 26 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   346
                    #label: 'Name Key:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   347
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   348
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   349
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   350
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   351
                    #name: 'nameKeyField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   352
                    #layout: #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   353
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   354
                    #model: #nameKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   355
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   356
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   357
                    #acceptOnTab: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   358
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   359
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   360
                    #name: 'labelLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   361
                    #layout: #(#AlignmentOrigin 107 0 51 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   362
                    #label: 'Label:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   363
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   364
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   365
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   366
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   367
                    #name: 'labelField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   368
                    #layout: #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   369
                    #activeHelpKey: #basicsLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   370
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   371
                    #model: #label
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   372
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   373
                    #acceptOnTab: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   374
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   375
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   376
                    #name: 'valueLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   377
                    #layout: #(#AlignmentOrigin 107 0 90 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   378
                    #label: 'Action:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   379
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   380
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   381
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   382
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   383
                    #name: 'valueField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   384
                    #layout: #(#LayoutFrame 110 0 79 0 -5 1.0 101 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   385
                    #activeHelpKey: #basicsAction
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   386
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   387
                    #model: #value
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   388
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   389
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   390
                    #acceptOnTab: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   391
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   392
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   393
                    #name: 'argumentLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   394
                    #layout: #(#AlignmentOrigin 107 0 115 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   395
                    #label: 'Argument:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   396
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   397
                    #resizeForLabel: true
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   398
                )
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   399
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   400
                    #name: 'argumentField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   401
                    #layout: #(#LayoutFrame 110 0 104 0 -5 1.0 126 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   402
                    #activeHelpKey: #basicsArgument
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   403
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   404
                    #model: #argument
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   405
                    #type: #string
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   406
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   407
                    #acceptOnTab: false
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   408
                )
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   409
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   410
                    #name: 'indicationLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   411
                    #layout: #(#AlignmentOrigin 107 0 155 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   412
                    #label: 'Indication:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   413
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   414
                    #resizeForLabel: true
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   415
                )
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   416
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   417
                    #name: 'indicationField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   418
                    #layout: #(#LayoutFrame 110 0 144 0 -5 1.0 166 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   419
                    #activeHelpKey: #basicsIndication
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   420
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   421
                    #model: #indication
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   422
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   423
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   424
                    #acceptOnTab: false
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   425
                )
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   426
                 #(#CheckBoxSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   427
                    #name: 'translateLabelCheckBox'
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   428
                    #layout: #(#Point 20 190)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   429
                    #activeHelpKey: #basicsTranslateLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   430
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   431
                    #model: #translateLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   432
                    #label: 'Translate Label'
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   433
                )
155310ec83aa revised version
tz
parents: 382
diff changeset
   434
                 #(#CheckBoxSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   435
                    #name: 'isButtonCheckBox'
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   436
                    #layout: #(#Point 20 219)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   437
                    #activeHelpKey: #basicsIsButton
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   438
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   439
                    #model: #isButton
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   440
                    #label: 'Is Button'
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   441
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   442
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   443
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   444
      )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   445
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   446
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   447
basicsLinkSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   448
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   449
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   450
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   451
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   452
     the UIPainter may not be able to read the specification."
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   453
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   454
    "
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   455
     UIPainter new openOnClass:MenuEditor andSelector:#basicsLinkSpec
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   456
     MenuEditor new openInterface:#basicsLinkSpec
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   457
    "
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   458
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   459
    <resource: #canvas>
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   460
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   461
    ^
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   462
     
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   463
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   464
          #window: 
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   465
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   466
              #name: 'Basics Link'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   467
              #layout: #(#LayoutFrame 473 0 301 0 739 0 619 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   468
              #label: 'Basics Link'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   469
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   470
              #max: #(#Point 1280 1024)
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   471
              #bounds: #(#Rectangle 473 301 740 620)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   472
              #usePreferredExtent: false
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   473
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   474
          #component: 
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   475
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   476
              #collection: 
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   477
               #(
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   478
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   479
                    #name: 'nameKeyLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   480
                    #layout: #(#AlignmentOrigin 107 0 26 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   481
                    #activeHelpKey: #nameKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   482
                    #label: 'Name Key:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   483
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   484
                    #resizeForLabel: true
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   485
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   486
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   487
                    #name: 'nameKeyField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   488
                    #layout: #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   489
                    #activeHelpKey: #basicsNameKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   490
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   491
                    #model: #nameKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   492
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   493
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   494
                    #acceptOnTab: false
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   495
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   496
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   497
                    #name: 'labelLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   498
                    #layout: #(#AlignmentOrigin 107 0 51 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   499
                    #label: 'Label:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   500
                    #resizeForLabel: true
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   501
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   502
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   503
                    #name: 'labelField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   504
                    #layout: #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   505
                    #activeHelpKey: #basicsLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   506
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   507
                    #model: #label
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   508
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   509
                    #acceptOnTab: false
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   510
                )
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   511
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   512
                    #name: 'menuLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   513
                    #layout: #(#AlignmentOrigin 107 0 76 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   514
                    #label: 'Menu:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   515
                    #resizeForLabel: true
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   516
                )
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   517
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   518
                    #name: 'menuField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   519
                    #layout: #(#LayoutFrame 110 0 65 0 -5 1.0 87 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   520
                    #activeHelpKey: #basicsMenu
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   521
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   522
                    #model: #submenuChannel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   523
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   524
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   525
                    #acceptOnTab: false
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   526
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   527
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   528
                    #name: 'ArgumentLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   529
                    #layout: #(#AlignmentOrigin 107 0 100 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   530
                    #label: 'Argument:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   531
                    #resizeForLabel: true
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   532
                )
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   533
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   534
                    #name: 'argumentField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   535
                    #layout: #(#LayoutFrame 110 0 90 0 -5 1.0 112 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   536
                    #activeHelpKey: #basicsMenuArgument
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   537
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   538
                    #model: #argument
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   539
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   540
                    #acceptOnTab: false
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   541
                )
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   542
                 #(#CheckBoxSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   543
                    #name: 'translateLabelCheckBox'
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   544
                    #layout: #(#Point 20 190)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   545
                    #activeHelpKey: #basicsTranslateLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   546
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   547
                    #model: #translateLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   548
                    #label: 'Translate Label'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   549
                )
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   550
              )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   551
          )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   552
      )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   553
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   554
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   555
basicsMenuSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   556
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   557
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   558
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   559
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   560
     the UIPainter may not be able to read the specification."
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   561
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   562
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   563
     UIPainter new openOnClass:MenuEditor andSelector:#basicsMenuSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   564
     MenuEditor new openInterface:#basicsMenuSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   565
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   566
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   567
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   568
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   569
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   570
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   571
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   572
          #window: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   573
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   574
              #name: 'Basics Menu'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   575
              #layout: #(#LayoutFrame 473 0 301 0 739 0 619 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   576
              #label: 'Basics Menu'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   577
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   578
              #max: #(#Point 1280 1024)
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   579
              #bounds: #(#Rectangle 473 301 740 620)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   580
              #usePreferredExtent: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   581
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   582
          #component: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   583
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   584
              #collection: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   585
               #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   586
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   587
                    #name: 'nameKeyLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   588
                    #layout: #(#AlignmentOrigin 107 0 26 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   589
                    #label: 'Name Key:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   590
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   591
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   592
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   593
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   594
                    #name: 'nameKeyField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   595
                    #layout: #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   596
                    #activeHelpKey: #basicsNameKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   597
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   598
                    #model: #nameKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   599
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   600
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   601
                    #acceptOnTab: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   602
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   603
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   604
                    #name: 'labelLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   605
                    #layout: #(#AlignmentOrigin 107 0 51 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   606
                    #label: 'Label:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   607
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   608
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   609
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   610
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   611
                    #name: 'labelField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   612
                    #layout: #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   613
                    #activeHelpKey: #basicsLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   614
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   615
                    #model: #label
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   616
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   617
                    #acceptOnTab: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   618
                )
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   619
                 #(#CheckBoxSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   620
                    #name: 'translateLabelCheckBox'
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   621
                    #layout: #(#Point 20 190)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   622
                    #activeHelpKey: #basicsTranslateLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   623
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   624
                    #model: #translateLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   625
                    #label: 'Translate Label'
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   626
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   627
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   628
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   629
      )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   630
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   631
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   632
basicsRootSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   633
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   634
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   635
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   636
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   637
     the UIPainter may not be able to read the specification."
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   638
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   639
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   640
     UIPainter new openOnClass:MenuEditor andSelector:#basicsRootSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   641
     MenuEditor new openInterface:#basicsRootSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   642
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   643
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   644
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   645
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   646
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   647
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   648
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   649
          #window: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   650
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   651
              #name: 'Basics Root'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   652
              #layout: #(#LayoutFrame 473 0 301 0 739 0 619 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   653
              #label: 'Basics Root'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   654
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   655
              #max: #(#Point 1280 1024)
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   656
              #bounds: #(#Rectangle 473 301 740 620)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   657
              #usePreferredExtent: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   658
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   659
          #component: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   660
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   661
              #collection: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   662
               #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   663
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   664
                    #name: 'selectorLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   665
                    #layout: #(#AlignmentOrigin 107 0 26 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   666
                    #label: 'Selector:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   667
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   668
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   669
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   670
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   671
                    #name: 'selectorField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   672
                    #layout: #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   673
                    #activeHelpKey: #basicsSelector
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   674
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   675
                    #model: #label
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   676
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   677
                    #acceptOnTab: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   678
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   679
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   680
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   681
      )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   682
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   683
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   684
basicsSeparatorSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   685
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   686
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   687
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   688
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   689
     the UIPainter may not be able to read the specification."
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   690
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   691
    "
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   692
     UIPainter new openOnClass:MenuEditor andSelector:#basicsSeparatorSpec
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   693
     MenuEditor new openInterface:#basicsSeparatorSpec
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   694
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   695
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   696
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   697
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   698
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   699
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   700
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   701
          #window: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   702
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   703
              #name: 'Basics Separator'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   704
              #layout: #(#LayoutFrame 473 0 301 0 739 0 619 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   705
              #label: 'Basics Separator'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   706
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   707
              #max: #(#Point 1160 870)
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   708
              #bounds: #(#Rectangle 473 301 740 620)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   709
              #usePreferredExtent: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   710
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   711
          #component: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   712
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   713
              #collection: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   714
               #(
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   715
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   716
                    #name: 'separatorLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   717
                    #layout: #(#AlignmentOrigin 127 0 26 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   718
                    #label: 'Separator Type:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   719
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   720
                    #resizeForLabel: true
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   721
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   722
                 #(#ComboListSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   723
                    #name: 'seperatorList'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   724
                    #layout: #(#LayoutFrame 132 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   725
                    #activeHelpKey: #basicsSeparatorType
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   726
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   727
                    #model: #seperatorSelection
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   728
                    #useIndex: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   729
                )
606
ca
parents: 603
diff changeset
   730
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   731
                    #name: 'visibilityLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   732
                    #layout: #(#AlignmentOrigin 127 0 76 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   733
                    #label: 'Visibility:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   734
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   735
                    #resizeForLabel: true
606
ca
parents: 603
diff changeset
   736
                )
ca
parents: 603
diff changeset
   737
                 #(#InputFieldSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   738
                    #name: 'visibilityInputField'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   739
                    #layout: #(#LayoutFrame 132 0 65 0 -5 1.0 87 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   740
                    #activeHelpKey: #detailsVisibility
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   741
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   742
                    #model: #isVisible
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   743
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   744
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   745
                    #acceptOnTab: false
606
ca
parents: 603
diff changeset
   746
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   747
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   748
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   749
      )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   750
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   751
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   752
detailsEditSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   753
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   754
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   755
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   756
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   757
     the UIPainter may not be able to read the specification."
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   758
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   759
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   760
     UIPainter new openOnClass:MenuEditor andSelector:#detailsEditSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   761
     MenuEditor new openInterface:#detailsEditSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   762
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   763
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   764
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   765
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   766
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   767
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   768
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   769
          #window: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   770
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   771
              #name: 'Details Edit'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   772
              #layout: #(#LayoutFrame 332 0 374 0 590 0 661 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   773
              #label: 'Details Edit'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   774
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   775
              #max: #(#Point 1280 1024)
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   776
              #bounds: #(#Rectangle 332 374 591 662)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   777
              #usePreferredExtent: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   778
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   779
          #component: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   780
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   781
              #collection: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   782
               #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   783
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   784
                    #name: 'shortcutKeyLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   785
                    #layout: #(#AlignmentOrigin 107 0 26 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   786
                    #label: 'Accelerator:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   787
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   788
                    #resizeForLabel: true
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   789
                )
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   790
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   791
                    #name: 'shortcutKeyField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   792
                    #layout: #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   793
                    #activeHelpKey: #detailsAccelerator
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   794
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   795
                    #model: #shortcutKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   796
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   797
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   798
                    #acceptOnTab: false
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   799
                )
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   800
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   801
                    #name: 'enabledLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   802
                    #layout: #(#AlignmentOrigin 107 0 51 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   803
                    #label: 'Enabled:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   804
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   805
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   806
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   807
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   808
                    #name: 'enabledField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   809
                    #layout: #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   810
                    #activeHelpKey: #detailsEnabled
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   811
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   812
                    #model: #enabled
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   813
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   814
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   815
                    #acceptOnTab: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   816
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   817
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   818
                    #name: 'visibilityLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   819
                    #layout: #(#AlignmentOrigin 107 0 76 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   820
                    #label: 'Visibility:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   821
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   822
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   823
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   824
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   825
                    #name: 'isVisibleInputField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   826
                    #layout: #(#LayoutFrame 110 0 65 0 -5 1.0 87 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   827
                    #activeHelpKey: #detailsVisibility
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   828
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   829
                    #model: #isVisible
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   830
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   831
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   832
                    #acceptOnTab: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   833
                )
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
   834
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   835
                    #name: 'StartGroupLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   836
                    #layout: #(#AlignmentOrigin 107 0 111 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   837
                    #label: 'Start Group:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   838
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   839
                    #resizeForLabel: true
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
   840
                )
de091386bbae add new feature:
ca
parents: 525
diff changeset
   841
                 #(#PopUpListSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   842
                    #name: 'StartGroupPopUp'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   843
                    #layout: #(#LayoutFrame 110 0 100 0 -5 1.0 122 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   844
                    #label: 'PopUpList'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   845
                    #tabable: true
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   846
                    #model: #startGroup
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   847
                    #menu: 
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
   848
                     #(nil
de091386bbae add new feature:
ca
parents: 525
diff changeset
   849
                        #right
de091386bbae add new feature:
ca
parents: 525
diff changeset
   850
                    )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   851
                    #useIndex: false
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
   852
                )
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   853
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   854
                    #name: 'accessCharLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   855
                    #layout: #(#AlignmentOrigin 217 0 142 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   856
                    #label: 'Access Character Position:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   857
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   858
                    #resizeForLabel: true
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   859
                )
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   860
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   861
                    #name: 'accessCharField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   862
                    #layout: #(#LayoutFrame 220 0 131 0 -5 1.0 153 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   863
                    #activeHelpKey: #detailsAccessCharaterPosition
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   864
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   865
                    #model: #accessCharacterPos
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   866
                    #type: #numberOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   867
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   868
                    #acceptOnTab: false
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   869
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   870
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   871
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   872
      )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   873
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   874
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   875
imageEditSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   876
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   877
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   878
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   879
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   880
     the UIPainter may not be able to read the specification."
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   881
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   882
    "
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   883
     UIPainter new openOnClass:MenuEditor andSelector:#imageEditSpec
155310ec83aa revised version
tz
parents: 382
diff changeset
   884
     MenuEditor new openInterface:#imageEditSpec
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   885
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   886
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   887
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   888
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   889
    ^
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   890
     
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   891
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   892
          #window: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   893
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   894
              #name: 'Image Item'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   895
              #layout: #(#LayoutFrame 473 0 301 0 717 0 442 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   896
              #label: 'Image Item'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   897
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   898
              #max: #(#Point 1280 1024)
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   899
              #bounds: #(#Rectangle 473 301 718 443)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   900
              #usePreferredExtent: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   901
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   902
          #component: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   903
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   904
              #collection: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   905
               #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   906
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   907
                    #name: 'retrieverLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   908
                    #layout: #(#AlignmentOrigin 107 0 26 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   909
                    #label: 'Retriever:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   910
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   911
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   912
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   913
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   914
                    #name: 'retrieverField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   915
                    #layout: #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   916
                    #activeHelpKey: #imageRetriever
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   917
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   918
                    #model: #retriever
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   919
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   920
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   921
                    #acceptOnTab: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   922
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   923
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   924
                    #name: 'iconLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   925
                    #layout: #(#AlignmentOrigin 107 0 51 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   926
                    #label: 'Selector:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   927
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   928
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   929
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   930
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   931
                    #name: 'iconField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   932
                    #layout: #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   933
                    #activeHelpKey: #imageSelector
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   934
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   935
                    #model: #icon
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   936
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   937
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   938
                    #acceptOnTab: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   939
                )
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   940
                 #(#ActionButtonSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   941
                    #name: 'imageEditorButton'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   942
                    #layout: #(#LayoutFrame 110 0 66 0 -5 1 90 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   943
                    #activeHelpKey: #imageImageEditor
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   944
                    #label: 'Image Editor'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   945
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   946
                    #model: #doEditImage
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   947
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   948
                 #(#CheckBoxSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   949
                    #name: 'iconAndLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   950
                    #layout: #(#LayoutOrigin 20 0 104 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   951
                    #activeHelpKey: #imageImageAndLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   952
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   953
                    #model: #iconAndLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   954
                    #label: 'Image & Label'
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   955
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   956
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   957
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   958
      )
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   959
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   960
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   961
windowSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   962
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   963
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   964
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   965
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   966
     the UIPainter may not be able to read the specification."
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   967
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   968
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   969
     UIPainter new openOnClass:MenuEditor andSelector:#windowSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   970
     MenuEditor new openInterface:#windowSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   971
     MenuEditor open
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   972
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   973
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   974
    <resource: #canvas>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   975
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   976
    ^
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   977
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   978
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   979
          #window: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   980
           #(#WindowSpec
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   981
              #name: 'Menu Editor'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
   982
              #layout: #(#LayoutFrame 189 0 552 0 872 0 931 0)
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   983
              #label: 'Menu Editor'
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
   984
              #min: #(#Point 510 390)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   985
              #max: #(#Point 1152 900)
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
   986
              #bounds: #(#Rectangle 189 552 873 932)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   987
              #menu: #menu
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   988
              #usePreferredExtent: false
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   989
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   990
          #component: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   991
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   992
              #collection: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   993
               #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   994
                 #(#MenuPanelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   995
                    #name: 'menuToolbarView'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   996
                    #layout: #(#LayoutFrame 0 0.0 0 0 0 1.0 32 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   997
                    #menu: #menuToolbar
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   998
                    #showSeparatingLines: true
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   999
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1000
                 #(#VariableHorizontalPanelSpec
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1001
                    #name: 'VariableHorizontalPanel'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1002
                    #layout: #(#LayoutFrame 0 0.0 34 0.0 0 1.0 -26 1.0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1003
                    #component: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1004
                     #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1005
                        #collection: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1006
                         #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1007
                           #(#ArbitraryComponentSpec
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1008
                              #name: 'TreeView'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1009
                              #menu: #menuEdit
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1010
                              #hasHorizontalScrollBar: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1011
                              #hasVerticalScrollBar: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1012
                              #component: #treeView
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1013
                              #hasBorder: false
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1014
                          )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1015
                           #(#ViewSpec
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1016
                              #name: 'Box'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1017
                              #component: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1018
                               #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1019
                                  #collection: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1020
                                   #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1021
                                     #(#NoteBookViewSpec
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1022
                                        #name: 'NoteBook'
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1023
                                        #layout: #(#LayoutFrame 1 0.0 0 0.0 1 1.0 -30 1.0)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1024
                                        #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1025
                                        #model: #tabModel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1026
                                        #menu: #tabList
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1027
                                        #useIndex: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1028
                                        #canvas: #noteBookView
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1029
                                    )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1030
                                     #(#UISubSpecification
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1031
                                        #name: 'SubSpecification'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1032
                                        #layout: #(#LayoutFrame 2 0.0 -26 1 -2 1.0 -2 1.0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1033
                                        #majorKey: #ToolApplicationModel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1034
                                        #minorKey: #windowSpecForCommit
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1035
                                    )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1036
                                  )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1037
                              )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1038
                              #level: -1
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1039
                          )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1040
                        )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1041
                    )
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1042
                    #handles: #(#Any 0.30117 1.0)
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1043
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1044
                 #(#UISubSpecification
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1045
                    #name: 'InfoBarSubSpec'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1046
                    #layout: #(#LayoutFrame 0 0.0 -24 1 0 1.0 0 1.0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1047
                    #majorKey: #ToolApplicationModel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1048
                    #minorKey: #windowSpecForInfoBar
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1049
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1050
              )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1051
          )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1052
      )
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1053
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1054
    "Modified: / 20.5.1998 / 01:18:39 / cg"
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1055
! !
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1056
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1057
!MenuEditor class methodsFor:'menu specs'!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1058
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1059
menu
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1060
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1061
     by the MenuEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1062
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1063
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1064
     the MenuEditor may not be able to read the specification."
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1065
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1066
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1067
     MenuEditor new openOnClass:MenuEditor andSelector:#menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1068
     (Menu new fromLiteralArrayEncoding:(MenuEditor menu)) startUp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1069
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1070
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1071
    <resource: #menu>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1072
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1073
    ^
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1074
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1075
       #(#Menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1076
          
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1077
           #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1078
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1079
                #label: 'About'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1080
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1081
                #accessCharacterPosition: 1
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1082
                #labelImage: #(#ResourceRetriever nil #menuIcon)
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1083
                #submenuChannel: #menuAbout
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1084
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1085
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1086
                #label: 'File'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1087
                #activeHelpKey: #file
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1088
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1089
                #submenu: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1090
                 #(#Menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1091
                    
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1092
                     #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1093
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1094
                          #label: 'New'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1095
                          #value: #doNew
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1096
                          #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1097
                          #activeHelpKey: #fileNew
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1098
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1099
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1100
                          #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1101
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1102
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1103
                          #label: 'Load...'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1104
                          #translateLabel: true
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1105
                          #value: #doLoad
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1106
                          #activeHelpKey: #fileLoad
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1107
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1108
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1109
                          #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1110
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1111
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1112
                          #label: 'Save'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1113
                          #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1114
                          #value: #doSave
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1115
                          #activeHelpKey: #fileSave
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1116
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1117
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1118
                          #label: 'Save As...'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1119
                          #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1120
                          #value: #doSaveAs
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1121
                          #activeHelpKey: #fileSaveAs
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  1122
                      )
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  1123
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1124
                          #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1125
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1126
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1127
                          #label: 'Pick A Menu...'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1128
                          #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1129
                          #value: #doPickAMenu
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1130
                          #activeHelpKey: #filePickAMenu
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1131
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1132
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1133
                          #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1134
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1135
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1136
                          #label: 'Browse Class'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1137
                          #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1138
                          #value: #doBrowseClass
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1139
                          #activeHelpKey: #fileBrowseClass
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1140
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1141
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1142
                          #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1143
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1144
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1145
                          #label: 'Exit'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1146
                          #translateLabel: true
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1147
                          #value: #closeRequest
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1148
                          #activeHelpKey: #fileExit
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1149
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1150
                    ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1151
                    nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1152
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1153
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1154
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1155
                #label: 'Edit'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1156
                #activeHelpKey: #edit
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1157
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1158
                #submenuChannel: #menuEdit
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1159
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1160
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1161
                #label: 'Add'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1162
                #activeHelpKey: #add
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1163
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1164
                #submenuChannel: #menuAdd
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1165
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1166
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1167
                #label: 'Test'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1168
                #activeHelpKey: #test
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1169
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1170
                #submenuChannel: #submenuTest
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1171
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1172
             #(#MenuItem
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1173
                #label: 'Settings'
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1174
                #submenu: 
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1175
                 #(#Menu
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1176
                    
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1177
                     #(
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1178
                       #(#MenuItem
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1179
                          #label: 'Fonts'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1180
                          #translateLabel: true
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1181
                          #submenuChannel: #menuFont
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1182
                      )
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1183
                    ) nil
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1184
                    nil
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1185
                )
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1186
            )
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1187
             #(#MenuItem
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1188
                #label: 'History'
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1189
                #activeHelpKey: #history
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1190
                #translateLabel: true
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1191
                #submenuChannel: #menuHistory
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1192
            )
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1193
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1194
                #label: 'Help'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1195
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1196
                #startGroup: #right
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1197
                #submenu: 
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1198
                 #(#Menu
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1199
                    
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1200
                     #(
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1201
                       #(#MenuItem
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1202
                          #label: 'Documentation'
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1203
                          #value: #openHTMLDocument:
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1204
                          #translateLabel: true
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1205
                          #activeHelpKey: #helpTutorial
764
5722b94330ef docu call
tz
parents: 748
diff changeset
  1206
                          #argument: 'tools/uipainter/MenuEditor.html'
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1207
                      )
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1208
                       #(#MenuItem
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1209
                          #label: '-'
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1210
                      )
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1211
                       #(#MenuItem
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1212
                          #label: 'Help Tool'
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1213
                          #value: #openHTMLDocument:
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1214
                          #translateLabel: true
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1215
                          #activeHelpKey: #helpHelpTool
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1216
                          #argument: 'tools/uipainter/HelpTool.html'
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1217
                      )
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1218
                       #(#MenuItem
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1219
                          #label: '-'
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1220
                      )
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1221
                       #(#MenuItem
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1222
                          #label: 'Show Help Texts'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1223
                          #translateLabel: true
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1224
                          #activeHelpKey: #helpShowHelp
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1225
                          #indication: #showHelp:
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1226
                      )
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1227
                    ) nil
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1228
                    nil
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1229
                )
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1230
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1231
          ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1232
          nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1233
      )
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1234
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1235
    "Modified: / 20.5.1998 / 00:36:34 / cg"
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1236
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1237
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1238
menuAdd
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1239
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1240
     by the MenuEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1241
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1242
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1243
     the MenuEditor may not be able to read the specification."
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1244
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1245
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1246
     MenuEditor new openOnClass:MenuEditor andSelector:#menuAdd
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1247
     (Menu new fromLiteralArrayEncoding:(MenuEditor menuAdd)) startUp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1248
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1249
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1250
    <resource: #menu>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1251
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1252
    ^
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1253
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1254
       #(#Menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1255
          
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1256
           #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1257
             #(#MenuItem
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1258
                #label: 'Menu Item'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1259
                #translateLabel: true
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1260
                #value: #doCreateItem
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1261
                #activeHelpKey: #addMenuItem
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1262
                #labelImage: #(#ResourceRetriever #MenuEditor #menuItemImage 'Menu Item')
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1263
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1264
             #(#MenuItem
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1265
                #label: 'Menu Separator'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1266
                #translateLabel: true
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1267
                #value: #doCreateSep
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1268
                #activeHelpKey: #addMenuSeparator
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1269
                #labelImage: #(#ResourceRetriever #MenuEditor #menuSeparatorImage 'Menu Separator')
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1270
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1271
             #(#MenuItem
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1272
                #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1273
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1274
             #(#MenuItem
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1275
                #label: 'Submenu'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1276
                #translateLabel: true
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1277
                #value: #doCreateMenu
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1278
                #activeHelpKey: #addSubMenu
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1279
                #labelImage: #(#ResourceRetriever #MenuEditor #submenuImage 'Submenu')
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1280
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1281
             #(#MenuItem
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1282
                #label: 'Submenu Link'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1283
                #translateLabel: true
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1284
                #value: #doCreateLink
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1285
                #activeHelpKey: #addSubMenuLink
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1286
                #labelImage: #(#ResourceRetriever #MenuEditor #linkSubmenuImage 'Submenu Link')
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1287
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1288
          ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1289
          nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1290
      )
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1291
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1292
    "Modified: / 20.5.1998 / 00:40:39 / cg"
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1293
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1294
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1295
menuDefaultLink
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1296
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1297
     by the MenuEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1298
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1299
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1300
     the MenuEditor may not be able to read the specification."
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1301
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1302
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1303
     MenuEditor new openOnClass:MenuEditor andSelector:#menuDefaultLink
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1304
     (Menu new fromLiteralArrayEncoding:(MenuEditor menuDefaultLink)) startUp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1305
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1306
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1307
    <resource: #menu>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1308
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1309
    ^
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1310
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1311
       #(#Menu
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1312
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1313
           #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1314
             #(#MenuItem
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1315
                #'label:' '!!!! derives from application !!!!'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1316
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1317
          ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1318
          nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1319
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1320
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1321
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1322
menuEdit
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1323
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1324
     by the MenuEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1325
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1326
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1327
     the MenuEditor may not be able to read the specification."
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1328
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1329
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1330
     MenuEditor new openOnClass:MenuEditor andSelector:#menuEdit
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1331
     (Menu new fromLiteralArrayEncoding:(MenuEditor menuEdit)) startUp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1332
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1333
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1334
    <resource: #menu>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1335
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1336
    ^
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1337
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1338
       #(#Menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1339
          
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1340
           #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1341
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1342
                #label: 'Cut'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1343
                #value: #doCut
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1344
                #translateLabel: true
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1345
                #activeHelpKey: #editCut
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1346
                #enabled: #hasValidSelection
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1347
                #shortcutKeyCharacter: #Cut
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1348
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1349
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1350
                #label: 'Copy'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1351
                #value: #doCopy
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1352
                #translateLabel: true
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1353
                #activeHelpKey: #editCopy
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1354
                #enabled: #hasValidSelection
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1355
                #shortcutKeyCharacter: #Copy
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1356
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1357
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1358
                #label: 'Paste'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1359
                #value: #doPaste
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1360
                #translateLabel: true
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1361
                #activeHelpKey: #editPaste
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1362
                #enabled: #valueOfCanPaste
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1363
                #shortcutKeyCharacter: #Paste
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1364
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1365
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1366
                #label: 'Delete'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1367
                #value: #doDelete
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1368
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1369
                #activeHelpKey: #editDelete
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1370
                #enabled: #hasValidSelection
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1371
                #shortcutKeyCharacter: #Delete
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1372
            )
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1373
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1374
                #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1375
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1376
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1377
                #label: 'Move Up'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1378
                #value: #doStepUp
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1379
                #translateLabel: true
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1380
                #activeHelpKey: #editMoveUp
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1381
                #enabled: #valueOfEnableMovingUpOrDown
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1382
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1383
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1384
                #label: 'Move Down'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1385
                #value: #doStepDown
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1386
                #translateLabel: true
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1387
                #activeHelpKey: #editMoveDown
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1388
                #enabled: #valueOfEnableMovingUpOrDown
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1389
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1390
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1391
                #label: 'Move In'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1392
                #value: #doStepIn
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1393
                #translateLabel: true
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1394
                #activeHelpKey: #editMoveIn
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1395
                #enabled: #valueOfEnableMovingIn
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1396
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1397
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1398
                #label: 'Move Out'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1399
                #value: #doStepOut
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1400
                #translateLabel: true
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1401
                #activeHelpKey: #editMoveOut
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1402
                #enabled: #valueOfEnableMovingOut
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1403
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1404
          ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1405
          nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1406
      )
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1407
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1408
    "Modified: / 20.5.1998 / 00:37:16 / cg"
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1409
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1410
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1411
menuToolbar
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1412
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1413
     by the MenuEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1414
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1415
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1416
     the MenuEditor may not be able to read the specification."
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1417
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1418
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1419
     MenuEditor new openOnClass:MenuEditor andSelector:#menuToolbar
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1420
     (Menu new fromLiteralArrayEncoding:(MenuEditor menuToolbar)) startUp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1421
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1422
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1423
    <resource: #menu>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1424
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1425
    ^
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1426
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1427
       #(#Menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1428
          
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1429
           #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1430
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1431
                #label: 'New'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1432
                #isButton: true
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1433
                #value: #doNew
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1434
                #activeHelpKey: #fileNew
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1435
                #labelImage: #(#ResourceRetriever nil #newIcon)
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1436
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1437
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1438
                #label: 'Load'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1439
                #isButton: true
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1440
                #value: #doLoad
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1441
                #activeHelpKey: #fileLoad
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff