MenuEditor.st
author Claus Gittinger <cg@exept.de>
Sun, 01 Feb 1998 15:23:40 +0100
changeset 540 cf67668c680c
parent 539 1116829f5525
child 541 5dc124df04e2
permissions -rw-r--r--
help texts
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
     1
"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
     2
 COPYRIGHT (c) 1997 by eXept Software AG / Claus Gittinger
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
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
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
398
155310ec83aa revised version
tz
parents: 382
diff changeset
    15
ToolApplicationModel subclass:#MenuEditor
356
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
    16
	instanceVariableNames:'isModified specClass specCanvas helpCanvas tabSelection aspects
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
    17
		slices didInstall'
220
ca
parents: 218
diff changeset
    18
	classVariableNames:''
ca
parents: 218
diff changeset
    19
	poolDictionaries:''
ca
parents: 218
diff changeset
    20
	category:'Interface-UIPainter'
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    21
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    22
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    23
Object subclass:#Item
220
ca
parents: 218
diff changeset
    24
	instanceVariableNames:'activeHelpKey enabled label value nameKey indication shortcutKey
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
    25
		accessCharacterPos retriever icon iconAndLabel submenuChannel
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
    26
		startGroup argument translateLabel isButton isVisible'
220
ca
parents: 218
diff changeset
    27
	classVariableNames:''
ca
parents: 218
diff changeset
    28
	poolDictionaries:''
ca
parents: 218
diff changeset
    29
	privateIn:MenuEditor
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    30
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    31
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
    32
SelectionInTreeView subclass:#TreeView
275
cdecb5b5d356 set fontHeight dependent on max. image height
ca
parents: 270
diff changeset
    33
	instanceVariableNames:'images'
cdecb5b5d356 set fontHeight dependent on max. image height
ca
parents: 270
diff changeset
    34
	classVariableNames:'CopyBuffer Images'
220
ca
parents: 218
diff changeset
    35
	poolDictionaries:''
ca
parents: 218
diff changeset
    36
	privateIn:MenuEditor
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    37
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    38
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    39
!MenuEditor class methodsFor:'documentation'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    40
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    41
copyright
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    42
"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    43
 COPYRIGHT (c) 1997 by eXept Software AG / Claus Gittinger
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    44
              All Rights Reserved
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    45
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    46
 This software is furnished under a license and may be used
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    47
 only in accordance with the terms of that license and with the
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    48
 inclusion of the above copyright notice.   This software may not
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    49
 be provided or otherwise made available to, or used by, any
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    50
 other person.  No title to or ownership of the software is
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    51
 hereby transferred.
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
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    57
documentation
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    58
"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    59
    create and modify or inspect popup and pullDown menus of the
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    60
    new style( derives from Menu).
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    61
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    62
    [start with:]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    63
        MenuEditor open
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    64
        MenuEditor new openOnClass:MenuEditor andSelector:#menuPullDown
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    65
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    66
    [see also:]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    67
        UIPainter
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    68
        UIHelpTool
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    69
        UISpecificationTool
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    70
        SelectionInTreeView
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    71
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    72
    [author:]
398
155310ec83aa revised version
tz
parents: 382
diff changeset
    73
        Claus Atzkern, Thomas Zwick
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    74
"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    75
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    76
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    77
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
    78
!MenuEditor class methodsFor:'initialization'!
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
    79
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
    80
initialize
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
    81
432
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
    82
    super initialize.
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
    83
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
    84
    TreeView initialize
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
    85
! !
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
    86
508
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    87
!MenuEditor class methodsFor:'instance creation'!
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    88
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    89
openModalOnClass:aClass andSelector:aSelector
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    90
    ^ self new openModalOnClass:aClass andSelector:aSelector
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    91
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    92
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    93
!
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    94
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    95
openOnClass:aClass andSelector:aSelector
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    96
    ^ self new openOnClass:aClass andSelector:aSelector
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    97
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    98
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    99
! !
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
   100
318
31a94b71ae1b reuse of generate code for instance method #menu
ca
parents: 304
diff changeset
   101
!MenuEditor class methodsFor:'code generation'!
31a94b71ae1b reuse of generate code for instance method #menu
ca
parents: 304
diff changeset
   102
31a94b71ae1b reuse of generate code for instance method #menu
ca
parents: 304
diff changeset
   103
sourceCategory
432
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
   104
    "returns the category where to install the menu
318
31a94b71ae1b reuse of generate code for instance method #menu
ca
parents: 304
diff changeset
   105
    "
31a94b71ae1b reuse of generate code for instance method #menu
ca
parents: 304
diff changeset
   106
    ^ 'accessing menu'
31a94b71ae1b reuse of generate code for instance method #menu
ca
parents: 304
diff changeset
   107
! !
31a94b71ae1b reuse of generate code for instance method #menu
ca
parents: 304
diff changeset
   108
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   109
!MenuEditor class methodsFor:'help specs'!
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   110
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   111
helpSpec
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   112
    "return a dictionary filled with helpKey -> helptext associations.
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   113
     These are used by the activeHelp tool."
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   114
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   115
    "
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   116
    UIHelpTool openOnClass:MenuEditor    
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   117
    "
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   118
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   119
  ^ super helpSpec addPairsFrom:#(
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   120
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   121
#accessCharaterPos
455
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
   122
'The index of the access character position into the textual label (optional).'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   123
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   124
#argument
455
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
   125
'An argument passed to the value method, if the value  selector is a one- or two-arg selector (i.e. ends with '':''). The argument is passed as a string.'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   126
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   127
#enbled
455
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
   128
'This enabled field specifies the name of the aspect (-method or binding) in your application, which returns a value holder holding a boolean, a block which evaluates to either true or false, a selector which returns either true or false or simply true or false. The value, true or false, specifies whether  the respective field can be selected, a value of true, or not, a value of false.'
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
   129
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   130
#icon
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   131
'Selector which returns an image to be displayed.'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   132
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   133
#iconAndLabel
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   134
'Boolean flag to specify that both image and textual label shall be shown.'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   135
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   136
#indication
455
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
   137
'This indication field specifies the name of the aspect (-method or binding) in your application, a value holder holding a boolean, a block which evaluates to either true or false, a selector which returns either true or false or simply true or false. The value, true or false, specifies whether the shown indicator is switched on or off.'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   138
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   139
#isVisible
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   140
''
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   141
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   142
#label
455
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
   143
'The label of the item. If the ''retriever/selector'' is set,  and returns an image, the image is used as the displayed label.  Dependent on the state of the ''Image & Label'' flag, both the image and the label are shown.'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   144
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   145
#menuSelector
455
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
   146
'The name of the selector under which the generated  menu should be installed and is accessable.'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   147
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   148
#nameKey
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   149
'An unique identifier of the item (optional)'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   150
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   151
#retriever
455
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
   152
'The name of the class, which implements the image selector.  This selector is specified by ''selector''. If no class is given,  the current application should implement the specified image selector.'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   153
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   154
#seperatorList
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   155
'The list of valid separators'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   156
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   157
#shortcutKey
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   158
'The key to be pressed, to select the menu item from the keyboard (accelerator key).'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   159
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   160
#submenuChannel
455
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
   161
'A value holder, which provides the submenu (Menu) to be opened if the item is selected. Useful if the items submenu is to be  changed dynamically.'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   162
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   163
#value
455
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
   164
'An action which can be either a block or a selector. Depending on the number of arguments to the action, the action will be called with the respective arguments. There can either zero, one or two arguments. The first argument to the action is the argument derived from the argument field and the second argument the selected item.'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   165
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   166
)
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   167
! !
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   168
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   169
!MenuEditor class methodsFor:'interface specs'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   170
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   171
basicsItemSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   172
    "this window spec was automatically generated by the ST/X UIPainter"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   173
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   174
    "do not manually edit this - the painter/builder may not be able to
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   175
     handle the specification if its corrupted."
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   176
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   177
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   178
     UIPainter new openOnClass:MenuEditor andSelector:#basicsItemSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   179
     MenuEditor new openInterface:#basicsItemSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   180
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   181
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   182
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   183
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   184
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   185
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   186
       #(#FullSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   187
          #'window:' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   188
           #(#WindowSpec
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   189
              #'name:' 'unnamed canvas'
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   190
              #'layout:' #(#LayoutFrame 219 0 193 0 485 0 511 0)
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   191
              #'label:' 'unnamed canvas'
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   192
              #'min:' #(#Point 10 10)
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   193
              #'max:' #(#Point 1160 870)
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   194
              #'bounds:' #(#Rectangle 219 193 486 512)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   195
              #'usePreferredExtent:' false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   196
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   197
          #'component:' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   198
           #(#SpecCollection
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   199
              #'collection:' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   200
               #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   201
                 #(#LabelSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   202
                    #'name:' 'nameKeyLabel'
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
   203
                    #'layout:' #(#AlignmentOrigin 107 0 26 0 1 0.5)
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   204
                    #'label:' 'NameKey:'
263
25f080e1217f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   205
                    #'adjust:' #right
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   206
                    #'resizeForLabel:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   207
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   208
                 #(#InputFieldSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   209
                    #'name:' 'nameKeyField'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   210
                    #'layout:' #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   211
                    #'activeHelpKey:' #nameKey
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   212
                    #'tabable:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   213
                    #'model:' #nameKey
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   214
                    #'type:' #symbolOrNil
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   215
                    #'acceptOnReturn:' false
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   216
                    #'acceptOnTab:' false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   217
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   218
                 #(#LabelSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   219
                    #'name:' 'labelLabel'
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
   220
                    #'layout:' #(#AlignmentOrigin 107 0 51 0 1 0.5)
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   221
                    #'label:' 'Label:'
263
25f080e1217f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   222
                    #'adjust:' #right
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   223
                    #'resizeForLabel:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   224
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   225
                 #(#InputFieldSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   226
                    #'name:' 'labelField'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   227
                    #'layout:' #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   228
                    #'activeHelpKey:' #label
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   229
                    #'tabable:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   230
                    #'model:' #label
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   231
                    #'acceptOnReturn:' false
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   232
                    #'acceptOnTab:' false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   233
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   234
                 #(#LabelSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   235
                    #'name:' 'valueLabel'
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
   236
                    #'layout:' #(#AlignmentOrigin 107 0 90 0 1 0.5)
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   237
                    #'label:' 'Value:'
263
25f080e1217f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   238
                    #'adjust:' #right
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   239
                    #'resizeForLabel:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   240
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   241
                 #(#InputFieldSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   242
                    #'name:' 'valueField'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   243
                    #'layout:' #(#LayoutFrame 110 0 79 0 -5 1.0 101 0)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   244
                    #'activeHelpKey:' #value
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   245
                    #'tabable:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   246
                    #'model:' #value
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   247
                    #'type:' #symbolOrNil
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   248
                    #'acceptOnReturn:' false
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   249
                    #'acceptOnTab:' false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   250
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   251
                 #(#LabelSpec
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   252
                    #'name:' 'argumentLabel'
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
   253
                    #'layout:' #(#AlignmentOrigin 107 0 115 0 1 0.5)
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   254
                    #'label:' 'Argument:'
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   255
                    #'adjust:' #right
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   256
                    #'resizeForLabel:' true
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   257
                )
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   258
                 #(#InputFieldSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   259
                    #'name:' 'argumentField'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   260
                    #'layout:' #(#LayoutFrame 110 0 104 0 -5 1.0 126 0)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   261
                    #'activeHelpKey:' #argument
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   262
                    #'tabable:' true
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   263
                    #'model:' #argument
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   264
                    #'type:' #string
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   265
                    #'acceptOnReturn:' false
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   266
                    #'acceptOnTab:' false
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   267
                )
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   268
                 #(#LabelSpec
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   269
                    #'name:' 'indicationLabel'
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
   270
                    #'layout:' #(#AlignmentOrigin 107 0 155 0 1 0.5)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   271
                    #'label:' 'Indication:'
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   272
                    #'adjust:' #right
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   273
                    #'resizeForLabel:' true
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   274
                )
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   275
                 #(#InputFieldSpec
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   276
                    #'name:' 'indicationField'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   277
                    #'layout:' #(#LayoutFrame 110 0 144 0 -5 1.0 166 0)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   278
                    #'activeHelpKey:' #indication
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   279
                    #'tabable:' true
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   280
                    #'model:' #indication
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   281
                    #'type:' #symbolOrNil
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   282
                    #'acceptOnReturn:' false
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   283
                    #'acceptOnTab:' false
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   284
                )
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   285
                 #(#CheckBoxSpec
155310ec83aa revised version
tz
parents: 382
diff changeset
   286
                    #'name:' 'translateLabelCheckBox'
155310ec83aa revised version
tz
parents: 382
diff changeset
   287
                    #'layout:' #(#Point 20 192)
155310ec83aa revised version
tz
parents: 382
diff changeset
   288
                    #'activeHelpKey:' #translateLabel
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   289
                    #'tabable:' true
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   290
                    #'model:' #translateLabel
155310ec83aa revised version
tz
parents: 382
diff changeset
   291
                    #'label:' 'Translate Label'
155310ec83aa revised version
tz
parents: 382
diff changeset
   292
                )
155310ec83aa revised version
tz
parents: 382
diff changeset
   293
                 #(#CheckBoxSpec
155310ec83aa revised version
tz
parents: 382
diff changeset
   294
                    #'name:' 'isButtonCheckBox'
155310ec83aa revised version
tz
parents: 382
diff changeset
   295
                    #'layout:' #(#Point 20 221)
155310ec83aa revised version
tz
parents: 382
diff changeset
   296
                    #'activeHelpKey:' #translateLabel
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   297
                    #'tabable:' true
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   298
                    #'model:' #isButton
155310ec83aa revised version
tz
parents: 382
diff changeset
   299
                    #'label:' 'Is Button'
155310ec83aa revised version
tz
parents: 382
diff changeset
   300
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   301
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   302
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   303
      )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   304
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   305
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   306
basicsLinkSpec
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   307
    "this window spec was automatically generated by the ST/X UIPainter"
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   308
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   309
    "do not manually edit this - the painter/builder may not be able to
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   310
     handle the specification if its corrupted."
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   311
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   312
    "
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   313
     UIPainter new openOnClass:MenuEditor andSelector:#basicsLinkSpec
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   314
     MenuEditor new openInterface:#basicsLinkSpec
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   315
    "
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   316
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   317
    <resource: #canvas>
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   318
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   319
    ^
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   320
     
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   321
       #(#FullSpec
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   322
          #'window:' 
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   323
           #(#WindowSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   324
              #'name:' 'unnamed canvas'
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   325
              #'layout:' #(#LayoutFrame 374 0 432 0 640 0 750 0)
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   326
              #'label:' 'unnamed canvas'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   327
              #'min:' #(#Point 10 10)
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   328
              #'max:' #(#Point 1280 1024)
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   329
              #'bounds:' #(#Rectangle 374 432 641 751)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   330
              #'usePreferredExtent:' false
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   331
          )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   332
          #'component:' 
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   333
           #(#SpecCollection
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   334
              #'collection:' 
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   335
               #(
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   336
                 #(#LabelSpec
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   337
                    #'name:' 'nameKeyLabel'
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
   338
                    #'layout:' #(#AlignmentOrigin 107 0 26 0 1 0.5)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   339
                    #'activeHelpKey:' #nameKey
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   340
                    #'label:' 'NameKey:'
263
25f080e1217f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   341
                    #'adjust:' #right
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   342
                    #'resizeForLabel:' true
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   343
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   344
                 #(#InputFieldSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   345
                    #'name:' 'nameKeyField'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   346
                    #'layout:' #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   347
                    #'activeHelpKey:' #nameKey
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   348
                    #'tabable:' true
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   349
                    #'model:' #nameKey
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   350
                    #'type:' #symbolOrNil
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   351
                    #'acceptOnReturn:' false
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   352
                    #'acceptOnTab:' false
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   353
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   354
                 #(#LabelSpec
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   355
                    #'name:' 'labelLabel'
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
   356
                    #'layout:' #(#AlignmentOrigin 107 0 51 0 1 0.5)
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   357
                    #'label:' 'Label:'
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   358
                    #'resizeForLabel:' true
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   359
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   360
                 #(#InputFieldSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   361
                    #'name:' 'labelField'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   362
                    #'layout:' #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   363
                    #'activeHelpKey:' #label
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   364
                    #'tabable:' true
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   365
                    #'model:' #label
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   366
                    #'acceptOnReturn:' false
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   367
                    #'acceptOnTab:' false
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   368
                )
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   369
                 #(#LabelSpec
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   370
                    #'name:' 'menuLabel'
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   371
                    #'layout:' #(#AlignmentOrigin 107 0 76 0 1 0.5)
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   372
                    #'label:' 'Menu:'
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   373
                    #'resizeForLabel:' true
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   374
                )
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   375
                 #(#InputFieldSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   376
                    #'name:' 'menuField'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   377
                    #'layout:' #(#LayoutFrame 110 0 65 0 -5 1.0 87 0)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   378
                    #'activeHelpKey:' #submenuChannel
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   379
                    #'tabable:' true
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   380
                    #'model:' #submenuChannel
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   381
                    #'type:' #symbolOrNil
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   382
                    #'acceptOnReturn:' false
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   383
                    #'acceptOnTab:' false
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   384
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   385
                 #(#LabelSpec
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   386
                    #'name:' 'ArgumentLabel'
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   387
                    #'layout:' #(#AlignmentOrigin 107 0 100 0 1 0.5)
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   388
                    #'label:' 'Argument:'
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   389
                    #'resizeForLabel:' true
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   390
                )
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   391
                 #(#InputFieldSpec
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   392
                    #'name:' 'argumentField'
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   393
                    #'layout:' #(#LayoutFrame 110 0 90 0 -5 1.0 112 0)
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   394
                    #'activeHelpKey:' #submenuChannel
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   395
                    #'tabable:' true
537
c39e2ceeaaea support argument for linked menus
tz
parents: 535
diff changeset
   396
                    #'model:' #argument
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   397
                    #'acceptOnReturn:' false
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   398
                    #'acceptOnTab:' false
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   399
                )
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   400
                 #(#CheckBoxSpec
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   401
                    #'name:' 'translateLabelCheckBox'
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   402
                    #'layout:' #(#Point 20 128)
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   403
                    #'activeHelpKey:' #translateLabel
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   404
                    #'tabable:' true
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   405
                    #'model:' #translateLabel
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   406
                    #'label:' 'Translate Label'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   407
                )
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   408
              )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   409
          )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   410
      )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   411
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   412
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   413
basicsMenuSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   414
    "this window spec was automatically generated by the ST/X UIPainter"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   415
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   416
    "do not manually edit this - the painter/builder may not be able to
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   417
     handle the specification if its corrupted."
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   418
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   419
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   420
     UIPainter new openOnClass:MenuEditor andSelector:#basicsMenuSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   421
     MenuEditor new openInterface:#basicsMenuSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   422
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   423
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   424
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   425
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   426
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   427
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   428
       #(#FullSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   429
          #'window:' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   430
           #(#WindowSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   431
              #'name:' 'unnamed canvas'
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   432
              #'layout:' #(#LayoutFrame 456 0 430 0 722 0 748 0)
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   433
              #'label:' 'unnamed canvas'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   434
              #'min:' #(#Point 10 10)
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   435
              #'max:' #(#Point 1280 1024)
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   436
              #'bounds:' #(#Rectangle 456 430 723 749)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   437
              #'usePreferredExtent:' false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   438
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   439
          #'component:' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   440
           #(#SpecCollection
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   441
              #'collection:' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   442
               #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   443
                 #(#LabelSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   444
                    #'name:' 'nameKeyLabel'
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
   445
                    #'layout:' #(#AlignmentOrigin 107 0 26 0 1 0.5)
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   446
                    #'label:' 'NameKey:'
263
25f080e1217f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   447
                    #'adjust:' #right
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   448
                    #'resizeForLabel:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   449
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   450
                 #(#InputFieldSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   451
                    #'name:' 'nameKeyField'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   452
                    #'layout:' #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   453
                    #'activeHelpKey:' #nameKey
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   454
                    #'tabable:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   455
                    #'model:' #nameKey
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   456
                    #'type:' #symbolOrNil
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   457
                    #'acceptOnReturn:' false
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   458
                    #'acceptOnTab:' false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   459
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   460
                 #(#LabelSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   461
                    #'name:' 'labelLabel'
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
   462
                    #'layout:' #(#AlignmentOrigin 107 0 51 0 1 0.5)
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   463
                    #'label:' 'Label:'
263
25f080e1217f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   464
                    #'adjust:' #right
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   465
                    #'resizeForLabel:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   466
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   467
                 #(#InputFieldSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   468
                    #'name:' 'labelField'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   469
                    #'layout:' #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   470
                    #'activeHelpKey:' #label
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   471
                    #'tabable:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   472
                    #'model:' #label
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   473
                    #'acceptOnReturn:' false
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   474
                    #'acceptOnTab:' false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   475
                )
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   476
                 #(#CheckBoxSpec
155310ec83aa revised version
tz
parents: 382
diff changeset
   477
                    #'name:' 'translateLabelCheckBox'
155310ec83aa revised version
tz
parents: 382
diff changeset
   478
                    #'layout:' #(#Point 20 100)
155310ec83aa revised version
tz
parents: 382
diff changeset
   479
                    #'activeHelpKey:' #translateLabel
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   480
                    #'tabable:' true
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   481
                    #'model:' #translateLabel
155310ec83aa revised version
tz
parents: 382
diff changeset
   482
                    #'label:' 'Translate Label'
155310ec83aa revised version
tz
parents: 382
diff changeset
   483
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   484
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   485
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   486
      )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   487
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   488
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   489
basicsRootSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   490
    "this window spec was automatically generated by the ST/X UIPainter"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   491
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   492
    "do not manually edit this - the painter/builder may not be able to
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   493
     handle the specification if its corrupted."
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   494
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   495
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   496
     UIPainter new openOnClass:MenuEditor andSelector:#basicsRootSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   497
     MenuEditor new openInterface:#basicsRootSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   498
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   499
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   500
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   501
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   502
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   503
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   504
       #(#FullSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   505
          #'window:' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   506
           #(#WindowSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   507
              #'name:' 'unnamed canvas'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   508
              #'layout:' #(#LayoutFrame 230 0 231 0 496 0 549 0)
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   509
              #'label:' 'unnamed canvas'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   510
              #'min:' #(#Point 10 10)
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   511
              #'max:' #(#Point 1280 1024)
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   512
              #'bounds:' #(#Rectangle 230 231 497 550)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   513
              #'usePreferredExtent:' false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   514
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   515
          #'component:' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   516
           #(#SpecCollection
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   517
              #'collection:' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   518
               #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   519
                 #(#LabelSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   520
                    #'name:' 'selectorLabel'
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
   521
                    #'layout:' #(#AlignmentOrigin 107 0 26 0 1 0.5)
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   522
                    #'label:' 'Selector:'
263
25f080e1217f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   523
                    #'adjust:' #right
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   524
                    #'resizeForLabel:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   525
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   526
                 #(#InputFieldSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   527
                    #'name:' 'selectorField'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   528
                    #'layout:' #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   529
                    #'activeHelpKey:' #menuSelector
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   530
                    #'tabable:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   531
                    #'model:' #label
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   532
                    #'acceptOnReturn:' false
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   533
                    #'acceptOnTab:' false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   534
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   535
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   536
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   537
      )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   538
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   539
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   540
basicsSeparatorSpec
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   541
    "this window spec was automatically generated by the ST/X UIPainter"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   542
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   543
    "do not manually edit this - the painter/builder may not be able to
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   544
     handle the specification if its corrupted."
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   545
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   546
    "
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   547
     UIPainter new openOnClass:MenuEditor andSelector:#basicsSeparatorSpec
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   548
     MenuEditor new openInterface:#basicsSeparatorSpec
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   549
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   550
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   551
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   552
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   553
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   554
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   555
       #(#FullSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   556
          #'window:' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   557
           #(#WindowSpec
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   558
              #'name:' 'unnamed canvas'
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   559
              #'layout:' #(#LayoutFrame 359 0 319 0 625 0 637 0)
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   560
              #'label:' 'unnamed canvas'
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   561
              #'min:' #(#Point 10 10)
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   562
              #'max:' #(#Point 1160 870)
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   563
              #'bounds:' #(#Rectangle 359 319 626 638)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   564
              #'usePreferredExtent:' false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   565
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   566
          #'component:' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   567
           #(#SpecCollection
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   568
              #'collection:' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   569
               #(
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   570
                 #(#LabelSpec
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   571
                    #'name:' 'separatorLabel'
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   572
                    #'layout:' #(#AlignmentOrigin 127 0 26 0 1 0.5)
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   573
                    #'label:' 'Separator Type:'
263
25f080e1217f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   574
                    #'adjust:' #right
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   575
                    #'resizeForLabel:' true
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   576
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   577
                 #(#ComboListSpec
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   578
                    #'name:' 'seperatorList'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   579
                    #'layout:' #(#LayoutFrame 132 0 15 0 -5 1.0 37 0)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   580
                    #'activeHelpKey:' #seperatorList
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   581
                    #'tabable:' true
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   582
                    #'model:' #seperatorSelection
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   583
                    #'useIndex:' true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   584
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   585
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   586
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   587
      )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   588
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   589
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   590
classDefineSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   591
    "this window spec was automatically generated by the ST/X UIPainter"
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   592
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   593
    "do not manually edit this - the painter/builder may not be able to
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   594
     handle the specification if its corrupted."
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   595
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   596
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   597
     UIPainter new openOnClass:MenuEditor andSelector:#classDefineSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   598
     MenuEditor new openInterface:#classDefineSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   599
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   600
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   601
    <resource: #canvas>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   602
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   603
    ^
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   604
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   605
       #(#FullSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   606
          #'window:' 
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   607
           #(#WindowSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   608
              #'name:' 'Menu Editor'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   609
              #'layout:' #(#LayoutFrame 262 0 426 0 508 0 519 0)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   610
              #'label:' 'Menu Editor'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   611
              #'min:' #(#Point 10 10)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   612
              #'max:' #(#Point 1152 900)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   613
              #'bounds:' #(#Rectangle 262 426 509 520)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   614
              #'usePreferredExtent:' false
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   615
          )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   616
          #'component:' 
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   617
           #(#SpecCollection
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   618
              #'collection:' 
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   619
               #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   620
                 #(#LabelSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   621
                    #'name:' 'boxLabel'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   622
                    #'layout:' #(#LayoutFrame 2 0.0 4 0 -2 1.0 24 0)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   623
                    #'label:' 'Class for code:'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   624
                    #'adjust:' #left
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   625
                    #'resizeForLabel:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   626
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   627
                 #(#InputFieldSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   628
                    #'name:' 'classNameField'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   629
                    #'layout:' #(#LayoutFrame 2 0.0 27 0 -2 1.0 49 0)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   630
                    #'tabable:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   631
                    #'model:' #classNameChannel
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   632
                    #'acceptOnReturn:' false
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   633
                    #'acceptOnTab:' false
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   634
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   635
                 #(#UISubSpecification
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   636
                    #'name:' 'SubSpecification'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   637
                    #'layout:' #(#LayoutFrame 0 0 -29 1 0 1 -5 1)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   638
                    #'majorKey:' #ToolApplicationModel
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   639
                    #'minorKey:' #windowSpecForCommitWithoutChannels
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   640
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   641
              )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   642
          )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   643
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   644
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   645
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   646
detailsEditSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   647
    "this window spec was automatically generated by the ST/X UIPainter"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   648
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   649
    "do not manually edit this - the painter/builder may not be able to
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   650
     handle the specification if its corrupted."
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   651
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   652
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   653
     UIPainter new openOnClass:MenuEditor andSelector:#detailsEditSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   654
     MenuEditor new openInterface:#detailsEditSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   655
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   656
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   657
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   658
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   659
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   660
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   661
       #(#FullSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   662
          #'window:' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   663
           #(#WindowSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   664
              #'name:' 'unnamed canvas'
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
   665
              #'layout:' #(#LayoutFrame 219 0 193 0 477 0 480 0)
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   666
              #'label:' 'unnamed canvas'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   667
              #'min:' #(#Point 10 10)
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   668
              #'max:' #(#Point 1280 1024)
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
   669
              #'bounds:' #(#Rectangle 219 193 478 481)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   670
              #'usePreferredExtent:' false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   671
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   672
          #'component:' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   673
           #(#SpecCollection
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   674
              #'collection:' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   675
               #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   676
                 #(#LabelSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   677
                    #'name:' 'shortcutKeyLabel'
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
   678
                    #'layout:' #(#AlignmentOrigin 107 0 26 0 1 0.5)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   679
                    #'label:' 'Accelerator:'
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   680
                    #'adjust:' #right
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   681
                    #'resizeForLabel:' true
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   682
                )
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   683
                 #(#InputFieldSpec
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   684
                    #'name:' 'shortcutKeyField'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   685
                    #'layout:' #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   686
                    #'activeHelpKey:' #shortcutKey
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   687
                    #'tabable:' true
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   688
                    #'model:' #shortcutKey
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   689
                    #'type:' #symbolOrNil
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   690
                    #'acceptOnReturn:' false
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   691
                    #'acceptOnTab:' false
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   692
                )
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   693
                 #(#LabelSpec
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   694
                    #'name:' 'enabledLabel'
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
   695
                    #'layout:' #(#AlignmentOrigin 107 0 51 0 1 0.5)
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   696
                    #'label:' 'Enabled:'
263
25f080e1217f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   697
                    #'adjust:' #right
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   698
                    #'resizeForLabel:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   699
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   700
                 #(#InputFieldSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   701
                    #'name:' 'enabledField'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   702
                    #'layout:' #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   703
                    #'activeHelpKey:' #enbled
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   704
                    #'tabable:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   705
                    #'model:' #enabled
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   706
                    #'type:' #symbolOrNil
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   707
                    #'acceptOnReturn:' false
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   708
                    #'acceptOnTab:' false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   709
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   710
                 #(#LabelSpec
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   711
                    #'name:' 'visibilityLabel'
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   712
                    #'layout:' #(#AlignmentOrigin 107 0 76 0 1 0.5)
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   713
                    #'label:' 'Visibility:'
263
25f080e1217f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   714
                    #'adjust:' #right
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   715
                    #'resizeForLabel:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   716
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   717
                 #(#InputFieldSpec
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   718
                    #'name:' 'isVisibleInputField'
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   719
                    #'layout:' #(#LayoutFrame 110 0 65 0 -5 1.0 87 0)
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   720
                    #'activeHelpKey:' #isVisible
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   721
                    #'tabable:' true
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   722
                    #'model:' #isVisible
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   723
                    #'type:' #symbolOrNil
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   724
                    #'acceptOnReturn:' false
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   725
                    #'acceptOnTab:' false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   726
                )
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
   727
                 #(#LabelSpec
de091386bbae add new feature:
ca
parents: 525
diff changeset
   728
                    #'name:' 'StartGroupLabel'
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   729
                    #'layout:' #(#AlignmentOrigin 107 0 111 0 1 0.5)
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
   730
                    #'label:' 'Start Group:'
de091386bbae add new feature:
ca
parents: 525
diff changeset
   731
                    #'adjust:' #right
de091386bbae add new feature:
ca
parents: 525
diff changeset
   732
                    #'resizeForLabel:' true
de091386bbae add new feature:
ca
parents: 525
diff changeset
   733
                )
de091386bbae add new feature:
ca
parents: 525
diff changeset
   734
                 #(#PopUpListSpec
de091386bbae add new feature:
ca
parents: 525
diff changeset
   735
                    #'name:' 'StartGroupPopUp'
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   736
                    #'layout:' #(#LayoutFrame 110 0 100 0 -5 1.0 122 0)
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
   737
                    #'label:' 'PopUpList'
de091386bbae add new feature:
ca
parents: 525
diff changeset
   738
                    #'model:' #startGroup
de091386bbae add new feature:
ca
parents: 525
diff changeset
   739
                    #'menu:' 
de091386bbae add new feature:
ca
parents: 525
diff changeset
   740
                     #(nil
de091386bbae add new feature:
ca
parents: 525
diff changeset
   741
                        #right
de091386bbae add new feature:
ca
parents: 525
diff changeset
   742
                    )
de091386bbae add new feature:
ca
parents: 525
diff changeset
   743
                    #'useIndex:' false
de091386bbae add new feature:
ca
parents: 525
diff changeset
   744
                )
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   745
                 #(#LabelSpec
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   746
                    #'name:' 'accessCharLabel'
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   747
                    #'layout:' #(#AlignmentOrigin 217 0 142 0 1 0.5)
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   748
                    #'label:' 'Access Character Position:'
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   749
                    #'adjust:' #right
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   750
                    #'resizeForLabel:' true
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   751
                )
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   752
                 #(#InputFieldSpec
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   753
                    #'name:' 'accessCharField'
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   754
                    #'layout:' #(#LayoutFrame 220 0 131 0 -5 1.0 153 0)
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   755
                    #'activeHelpKey:' #accessCharaterPos
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   756
                    #'tabable:' true
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   757
                    #'model:' #accessCharacterPos
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   758
                    #'type:' #numberOrNil
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   759
                    #'acceptOnReturn:' false
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   760
                    #'acceptOnTab:' false
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   761
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   762
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   763
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   764
      )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   765
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   766
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   767
imageEditSpec
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   768
    "this window spec was automatically generated by the ST/X UIPainter"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   769
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   770
    "do not manually edit this - the painter/builder may not be able to
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   771
     handle the specification if its corrupted."
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   772
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   773
    "
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   774
     UIPainter new openOnClass:MenuEditor andSelector:#imageEditSpec
155310ec83aa revised version
tz
parents: 382
diff changeset
   775
     MenuEditor new openInterface:#imageEditSpec
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   776
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   777
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   778
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   779
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   780
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   781
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   782
       #(#FullSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   783
          #'window:' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   784
           #(#WindowSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   785
              #'name:' 'unnamed canvas'
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   786
              #'layout:' #(#LayoutFrame 104 0 316 0 348 0 457 0)
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   787
              #'label:' 'unnamed canvas'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   788
              #'min:' #(#Point 10 10)
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   789
              #'max:' #(#Point 1280 1024)
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   790
              #'bounds:' #(#Rectangle 104 316 349 458)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   791
              #'usePreferredExtent:' false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   792
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   793
          #'component:' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   794
           #(#SpecCollection
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   795
              #'collection:' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   796
               #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   797
                 #(#LabelSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   798
                    #'name:' 'retrieverLabel'
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
   799
                    #'layout:' #(#AlignmentOrigin 107 0 26 0 1 0.5)
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   800
                    #'label:' 'Retriever:'
263
25f080e1217f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   801
                    #'adjust:' #right
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   802
                    #'resizeForLabel:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   803
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   804
                 #(#InputFieldSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   805
                    #'name:' 'retrieverField'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   806
                    #'layout:' #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   807
                    #'activeHelpKey:' #retriever
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   808
                    #'tabable:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   809
                    #'model:' #retriever
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   810
                    #'type:' #symbolOrNil
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   811
                    #'acceptOnReturn:' false
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   812
                    #'acceptOnTab:' false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   813
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   814
                 #(#LabelSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   815
                    #'name:' 'iconLabel'
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
   816
                    #'layout:' #(#AlignmentOrigin 107 0 51 0 1 0.5)
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   817
                    #'label:' 'Selector:'
263
25f080e1217f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 258
diff changeset
   818
                    #'adjust:' #right
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   819
                    #'resizeForLabel:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   820
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   821
                 #(#InputFieldSpec
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   822
                    #'name:' 'iconField'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   823
                    #'layout:' #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   824
                    #'activeHelpKey:' #icon
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   825
                    #'tabable:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   826
                    #'model:' #icon
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   827
                    #'type:' #symbolOrNil
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   828
                    #'acceptOnReturn:' false
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
   829
                    #'acceptOnTab:' false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   830
                )
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   831
                 #(#ActionButtonSpec
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   832
                    #'name:' 'imageEditorButton'
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   833
                    #'layout:' #(#LayoutFrame 110 0 66 0 -5 1 90 0)
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   834
                    #'label:' 'Image Editor'
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   835
                    #'tabable:' true
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   836
                    #'model:' #doEditImage
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   837
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   838
                 #(#CheckBoxSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   839
                    #'name:' 'iconAndLabel'
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   840
                    #'layout:' #(#LayoutOrigin 20 0 104 0)
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   841
                    #'activeHelpKey:' #iconAndLabel
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   842
                    #'tabable:' true
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   843
                    #'model:' #iconAndLabel
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   844
                    #'label:' 'Image & Label'
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   845
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   846
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   847
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   848
      )
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   849
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   850
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   851
windowSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   852
    "this window spec was automatically generated by the ST/X UIPainter"
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   853
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   854
    "do not manually edit this - the painter/builder may not be able to
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   855
     handle the specification if its corrupted."
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   856
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   857
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   858
     UIPainter new openOnClass:MenuEditor andSelector:#windowSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   859
     MenuEditor new openInterface:#windowSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   860
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   861
    "MenuEditor open"
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   862
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   863
    <resource: #canvas>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   864
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   865
    ^
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   866
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   867
       #(#FullSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   868
          #'window:' 
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   869
           #(#WindowSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   870
              #'name:' 'Menu Builder'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   871
              #'layout:' #(#LayoutFrame 221 0 394 0 800 0 777 0)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   872
              #'label:' 'Menu Builder'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   873
              #'min:' #(#Point 10 10)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   874
              #'max:' #(#Point 1152 900)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   875
              #'bounds:' #(#Rectangle 221 394 801 778)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   876
              #'menu:' #menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   877
              #'usePreferredExtent:' false
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   878
          )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   879
          #'component:' 
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   880
           #(#SpecCollection
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   881
              #'collection:' 
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   882
               #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   883
                 #(#MenuPanelSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   884
                    #'name:' 'menuToolbarView'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   885
                    #'layout:' #(#LayoutFrame 0 0.0 0 0 0 1.0 32 0)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   886
                    #'menu:' #menuToolbar
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   887
                    #'showSeparatingLines:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   888
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   889
                 #(#VariableHorizontalPanelSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   890
                    #'name:' 'variableHorizontalPanel1'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   891
                    #'layout:' #(#LayoutFrame 0 0.0 34 0.0 0 1.0 -22 1.0)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   892
                    #'component:' 
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   893
                     #(#SpecCollection
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   894
                        #'collection:' 
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   895
                         #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   896
                           #(#ArbitraryComponentSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   897
                              #'name:' 'painterView'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   898
                              #'menu:' #menuEdit
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   899
                              #'hasHorizontalScrollBar:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   900
                              #'hasVerticalScrollBar:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   901
                              #'component:' #treeView
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   902
                              #'hasBorder:' false
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   903
                          )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   904
                           #(#ViewSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   905
                              #'name:' 'view1'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   906
                              #'component:' 
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   907
                               #(#SpecCollection
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   908
                                  #'collection:' 
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   909
                                   #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   910
                                     #(#NoteBookViewSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   911
                                        #'name:' 'specificationView'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   912
                                        #'layout:' #(#LayoutFrame 1 0.0 0 0.0 1 1.0 -26 1.0)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   913
                                        #'tabable:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   914
                                        #'model:' #tabModel
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   915
                                        #'menu:' #tabList
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   916
                                        #'useIndex:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   917
                                        #'canvas:' #noteBookView
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   918
                                    )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   919
                                     #(#UISubSpecification
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   920
                                        #'name:' 'SubSpecification'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   921
                                        #'layout:' #(#LayoutFrame 2 0.0 -26 1 -2 1.0 -2 1.0)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   922
                                        #'majorKey:' #ToolApplicationModel
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   923
                                        #'minorKey:' #windowSpecForCommit
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   924
                                    )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   925
                                  )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   926
                              )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   927
                              #'level:' -1
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   928
                          )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   929
                        )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   930
                    )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   931
                    #'level:' 1
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   932
                    #'handles:' #(#Any 0.384483 1.0)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   933
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   934
                 #(#UISubSpecification
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   935
                    #'name:' 'infoBarSubSpec'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   936
                    #'layout:' #(#LayoutFrame 0 0.0 -22 1 0 1.0 0 1.0)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   937
                    #'majorKey:' #ToolApplicationModel
535
1caf545614c5 info bar subspec changed
tz
parents: 532
diff changeset
   938
                    #'minorKey:' #windowSpecForInfoBarWithClock
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   939
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   940
              )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   941
          )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   942
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   943
! !
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   944
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   945
!MenuEditor class methodsFor:'menu specs'!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   946
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   947
menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   948
    "this window spec was automatically generated by the ST/X MenuEditor"
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   949
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   950
    "do not manually edit this - the builder may not be able to
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   951
     handle the specification if its corrupted."
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   952
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   953
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   954
     MenuEditor new openOnClass:MenuEditor andSelector:#menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   955
     (Menu new fromLiteralArrayEncoding:(MenuEditor menu)) startUp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   956
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   957
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   958
    <resource: #menu>
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
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   962
       #(#Menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   963
          
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   964
           #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   965
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   966
                #'label:' 'About'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   967
                #'accessCharacterPosition:' 1
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   968
                #'labelImage:' #(#ResourceRetriever nil #icon)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   969
                #'submenuChannel:' #menuAbout
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   970
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   971
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   972
                #'label:' 'File'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   973
                #'translateLabel:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   974
                #'value:' #file
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   975
                #'submenu:' 
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   976
                 #(#Menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   977
                    
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   978
                     #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   979
                       #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   980
                          #'label:' 'New'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   981
                          #'value:' #doNew
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   982
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   983
                       #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   984
                          #'label:' '-'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   985
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   986
                       #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   987
                          #'label:' 'Load...'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   988
                          #'translateLabel:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   989
                          #'value:' #doFromClass
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   990
                          #'enabled:' #isStandAlone
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   991
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   992
                       #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   993
                          #'label:' '-'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   994
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   995
                       #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   996
                          #'label:' 'Save'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   997
                          #'value:' #doInstallSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   998
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
   999
                       #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1000
                          #'label:' '-'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1001
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1002
                       #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1003
                          #'label:' 'Pick A Menu'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1004
                          #'value:' #doPickAMenu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1005
                          #'enabled:' #isStandAlone
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1006
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1007
                       #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1008
                          #'label:' 'Define Menu Class...'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1009
                          #'value:' #doDefineClass
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1010
                          #'enabled:' #isStandAlone
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1011
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1012
                       #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1013
                          #'label:' 'Browse Menu Class'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1014
                          #'value:' #doBrowseAppClass
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1015
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1016
                       #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1017
                          #'label:' '-'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1018
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1019
                       #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1020
                          #'label:' 'Exit'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1021
                          #'translateLabel:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1022
                          #'value:' #closeRequest
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1023
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1024
                    ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1025
                    nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1026
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1027
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1028
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1029
                #'label:' 'Edit'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1030
                #'submenuChannel:' #menuEdit
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1031
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1032
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1033
                #'label:' 'Add'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1034
                #'submenuChannel:' #menuAdd
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1035
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1036
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1037
                #'label:' 'Test'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1038
                #'submenuChannel:' #submenuTest
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1039
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1040
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1041
                #'label:' 'History'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1042
                #'submenuChannel:' #menuHistory
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1043
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1044
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1045
                #'label:' 'Help'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1046
                #'submenuChannel:' #menuHelp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1047
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1048
          ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1049
          nil
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
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1053
menuAdd
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1054
    "this window spec was automatically generated by the ST/X MenuEditor"
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1055
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1056
    "do not manually edit this - the builder may not be able to
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1057
     handle the specification if its corrupted."
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1058
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1059
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1060
     MenuEditor new openOnClass:MenuEditor andSelector:#menuAdd
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1061
     (Menu new fromLiteralArrayEncoding:(MenuEditor menuAdd)) startUp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1062
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1063
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1064
    <resource: #menu>
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
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1068
       #(#Menu
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
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1072
                #'label:' 'Item'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1073
                #'value:' #doCreateItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1074
                #'labelImage:' #(#ResourceRetriever #MenuEditor #menuItemImage 'Item')
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1075
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1076
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1077
                #'label:' 'Separator'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1078
                #'value:' #doCreateSep
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1079
                #'labelImage:' #(#ResourceRetriever #MenuEditor #menuSeparatorImage 'Separator')
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1080
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1081
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1082
                #'label:' '-'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1083
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1084
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1085
                #'label:' 'Submenu'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1086
                #'value:' #doCreateMenu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1087
                #'labelImage:' #(#ResourceRetriever #MenuEditor #submenuImage 'Submenu')
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1088
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1089
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1090
                #'label:' 'Submenu Link'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1091
                #'value:' #doCreateLink
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1092
                #'labelImage:' #(#ResourceRetriever #MenuEditor #linkSubmenuImage 'Submenu Link')
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1093
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1094
          ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1095
          nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1096
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1097
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1098
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1099
menuDefaultLink
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1100
    "this window spec was automatically generated by the ST/X MenuEditor"
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1101
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1102
    "do not manually edit this - the builder may not be able to
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1103
     handle the specification if its corrupted."
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1104
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1105
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1106
     MenuEditor new openOnClass:MenuEditor andSelector:#menuDefaultLink
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1107
     (Menu new fromLiteralArrayEncoding:(MenuEditor menuDefaultLink)) startUp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1108
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1109
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1110
    <resource: #menu>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1111
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1112
    ^
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1113
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1114
       #(#Menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1115
          
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
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1118
                #'label:' '!! derives from application !!'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1119
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1120
          ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1121
          nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1122
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1123
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1124
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1125
menuEdit
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1126
    "this window spec was automatically generated by the ST/X MenuEditor"
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1127
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1128
    "do not manually edit this - the builder may not be able to
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1129
     handle the specification if its corrupted."
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1130
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1131
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1132
     MenuEditor new openOnClass:MenuEditor andSelector:#menuEdit
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1133
     (Menu new fromLiteralArrayEncoding:(MenuEditor menuEdit)) startUp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1134
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1135
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1136
    <resource: #menu>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1137
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1138
    ^
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1139
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1140
       #(#Menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1141
          
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1142
           #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1143
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1144
                #'label:' 'Cut'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1145
                #'value:' #doCut
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1146
                #'enabled:' #hasValidSelection
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1147
                #'shortcutKeyCharacter:' #Cut
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1148
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1149
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1150
                #'label:' 'Copy'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1151
                #'value:' #doCopy
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1152
                #'enabled:' #hasValidSelection
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1153
                #'shortcutKeyCharacter:' #Copy
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1154
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1155
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1156
                #'label:' 'Paste'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1157
                #'value:' #doPaste
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1158
                #'enabled:' #hasAnySingleSelection
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1159
                #'shortcutKeyCharacter:' #Paste
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1160
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1161
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1162
                #'label:' '-'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1163
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1164
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1165
                #'label:' 'Move Up'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1166
                #'value:' #doStepUp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1167
                #'enabled:' #enabledStepOver
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1168
                #'labelImage:' #(#ResourceRetriever #MenuEditor #upIcon 'Move Up')
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1169
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1170
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1171
                #'label:' 'Move Down'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1172
                #'value:' #doStepDown
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1173
                #'enabled:' #enabledStepOver
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1174
                #'labelImage:' #(#ResourceRetriever #MenuEditor #downIcon 'Move Down')
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1175
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1176
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1177
                #'label:' 'Move In'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1178
                #'value:' #doStepIn
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1179
                #'enabled:' #enabledStepIn
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1180
                #'labelImage:' #(#ResourceRetriever #MenuEditor #downRightIcon 'Move In')
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1181
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1182
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1183
                #'label:' 'Move Out'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1184
                #'value:' #doStepOut
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1185
                #'enabled:' #enabledStepOut
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1186
                #'labelImage:' #(#ResourceRetriever #MenuEditor #leftDownIcon 'Move Out')
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1187
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1188
          ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1189
          nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1190
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1191
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1192
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1193
menuToolbar
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1194
    "this window spec was automatically generated by the ST/X MenuEditor"
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1195
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1196
    "do not manually edit this - the builder may not be able to
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1197
     handle the specification if its corrupted."
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1198
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1199
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1200
     MenuEditor new openOnClass:MenuEditor andSelector:#menuToolbar
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1201
     (Menu new fromLiteralArrayEncoding:(MenuEditor menuToolbar)) startUp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1202
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1203
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1204
    <resource: #menu>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1205
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1206
    ^
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1207
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1208
       #(#Menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1209
          
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1210
           #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1211
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1212
                #'label:' 'New'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1213
                #'isButton:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1214
                #'value:' #doNew
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1215
                #'labelImage:' #(#ResourceRetriever nil #newIcon)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1216
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1217
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1218
                #'label:' 'Load'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1219
                #'isButton:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1220
                #'value:' #doFromClass
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1221
                #'labelImage:' #(#ResourceRetriever nil #loadIcon)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1222
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1223
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1224
                #'label:' 'Save'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1225
                #'isButton:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1226
                #'value:' #doInstallSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1227
                #'labelImage:' #(#ResourceRetriever nil #saveIcon)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1228
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1229
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1230
                #'label:' ''
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1231
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1232
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1233
                #'label:' 'Create Item'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1234
                #'isButton:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1235
                #'value:' #doCreateItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1236
                #'enabled:' #hasAnySingleSelection
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1237
                #'labelImage:' #(#ResourceRetriever nil #menuItemImage)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1238
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1239
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1240
                #'label:' 'Create Separator'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1241
                #'isButton:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1242
                #'value:' #doCreateSep
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1243
                #'enabled:' #hasAnySingleSelection
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1244
                #'labelImage:' #(#ResourceRetriever nil #menuSeparatorImage)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1245
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1246
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1247
                #'label:' ''
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1248
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1249
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1250
                #'label:' 'Create Menu'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1251
                #'isButton:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1252
                #'value:' #doCreateMenu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1253
                #'enabled:' #hasAnySingleSelection
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1254
                #'labelImage:' #(#ResourceRetriever nil #submenuImage)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1255
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1256
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1257
                #'label:' 'Create Link'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1258
                #'isButton:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1259
                #'value:' #doCreateLink
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1260
                #'enabled:' #hasAnySingleSelection
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1261
                #'labelImage:' #(#ResourceRetriever nil #linkSubmenuImage)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1262
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1263
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1264
                #'label:' ''
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1265
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1266
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1267
                #'label:' 'Move Up'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1268
                #'isButton:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1269
                #'value:' #doStepUp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1270
                #'enabled:' #enabledStepOver
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1271
                #'labelImage:' #(#ResourceRetriever nil #upIcon)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1272
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1273
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1274
                #'label:' 'Move Down'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1275
                #'isButton:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1276
                #'value:' #doStepDown
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1277
                #'enabled:' #enabledStepOver
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1278
                #'labelImage:' #(#ResourceRetriever nil #downIcon)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1279
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1280
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1281
                #'label:' 'Move In'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1282
                #'isButton:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1283
                #'value:' #doStepIn
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1284
                #'enabled:' #enabledStepIn
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1285
                #'labelImage:' #(#ResourceRetriever nil #downRightIcon)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1286
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1287
             #(#MenuItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1288
                #'label:' 'Move Out'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1289
                #'isButton:' true
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1290
                #'value:' #doStepOut
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1291
                #'enabled:' #enabledStepOut
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1292
                #'labelImage:' #(#ResourceRetriever nil #leftDownIcon)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1293
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1294
          ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1295
          nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1296
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1297
! !
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1298
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1299
!MenuEditor class methodsFor:'resources'!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1300
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1301
linkSubmenuImage
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1302
    "Generated by the Image Editor"
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1303
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1304
    ImageEditor openOnClass:self andSelector:#linkSubmenuImage
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: #image>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1308
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1309
    ^Icon
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1310
        constantNamed:#'MenuEditor linkSubmenuImage'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1311
        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'); colorMap:((OrderedCollection new add:(Color black); add:(Color white); add:(Color grey:66.9978); add:(Color red:100.0 green:0.0 blue:0.0); add:(Color red:0.0 green:100.0 blue:0.0); add:(Color red:0.0 green:0.0 blue:100.0); add:(Color red:0.0 green:100.0 blue:100.0); add:(Color red:100.0 green:100.0 blue:0.0); add:(Color red:100.0 green:0.0 blue:100.0); add:(Color red:49.9962 green:0.0 blue:0.0); add:(Color red:0.0 green:49.9962 blue:0.0); add:(Color red:0.0 green:0.0 blue:49.9962); add:(Color red:0.0 green:49.9962 blue:49.9962); add:(Color red:49.9962 green:49.9962 blue:0.0); add:(Color red:49.9962 green:0.0 blue:49.9962); add:(Color grey:49.9962); yourself)); mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a'); yourself); yourself]!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1312
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1313
menuItemImage
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1314
    "Generated by the Image Editor"
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1315
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1316
    ImageEditor openOnClass:self andSelector:#menuItemImage
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1317
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1318
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1319
    <resource: #image>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1320
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1321
    ^Icon
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1322
        constantNamed:#'MenuEditor menuItemImage'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1323
        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'); colorMap:(((Array new:4) at:1 put:((Color black)); at:2 put:((Color white)); at:3 put:((Color grey:66.9978)); at:4 put:((Color grey:49.9962)); yourself)); mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@???<???<???<???<???<???<???<???<???<???<???<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a'); yourself); yourself]!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1324
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1325
menuSeparatorImage
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1326
    "Generated by the Image Editor"
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1327
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1328
    ImageEditor openOnClass:self andSelector:#menuSeparatorImage
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1329
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1330
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1331
    <resource: #image>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1332
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1333
    ^Icon
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1334
        constantNamed:#'MenuEditor menuSeparatorImage'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1335
        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'); colorMap:(((Array new:4) at:1 put:((Color black)); at:2 put:((Color white)); at:3 put:((Color grey:66.9978)); at:4 put:((Color grey:49.9962)); yourself)); mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@???<???<???<???<???<???<???<???<???<???<???<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a'); yourself); yourself]!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1336
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1337
submenuImage
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1338
    "Generated by the Image Editor"
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1339
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1340
    ImageEditor openOnClass:self andSelector:#submenuImage
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1341
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1342
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1343
    <resource: #image>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1344
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1345
    ^Icon
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1346
        constantNamed:#'MenuEditor submenuImage'
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1347
        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??????@@@@@@@@@@@@@@@@@'); colorMap:(((Array new:4) at:1 put:((Color black)); at:2 put:((Color white)); at:3 put:((Color grey:66.9978)); at:4 put:((Color grey:49.9962)); yourself)); mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a'); yourself); yourself]! !
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1348
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1349
!MenuEditor class methodsFor:'slices'!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1350
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1351
slicesItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1352
    ^#(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1353
            (Basics     basicsItemSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1354
            (Details    detailsEditSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1355
            (Image      imageEditSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1356
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1357
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1358
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1359
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1360
slicesLink
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1361
    ^#(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1362
            (Basics     basicsLinkSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1363
            (Details    detailsEditSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1364
            (Image      imageEditSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1365
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1366
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1367
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1368
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1369
slicesMenu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1370
    ^#(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1371
            (Basics     basicsMenuSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1372
            (Details    detailsEditSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1373
            (Image      imageEditSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1374
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1375
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1376
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1377
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1378
slicesRootMenu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1379
    ^#(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1380
            (Basics   basicsRootSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1381
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1382
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1383
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1384
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1385
slicesSeparatorMenu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1386
    ^#(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1387
            (Basics   basicsSeparatorSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1388
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1389
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1390
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1391
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1392
!MenuEditor methodsFor:'accessing'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1393
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  1394
isModified: aBoolean         
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1395
    "sets menu tree modifications; invoked by the painter."
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  1396
155310ec83aa revised version
tz
parents: 382
diff changeset
  1397
    isModified := aBoolean
155310ec83aa revised version
tz
parents: 382
diff changeset
  1398
!
155310ec83aa revised version
tz
parents: 382
diff changeset
  1399
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1400
specClass
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1401
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1402
    ^specClass
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1403
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1404
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1405
specClass:aClass
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1406
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1407
    aClass isBehavior ifTrue:[specClass := aClass name]
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1408
                     ifFalse:[specClass := aClass]
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1409
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1410
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1411
submenuTest
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1412
    "returns submenu assigned to item test"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1413
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1414
    |menu|
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1415
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1416
    (menu := self treeView asMenu) allItemsDo:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1417
    [:anItem|
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1418
        anItem value:nil.
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1419
        anItem enabled:true.
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1420
    ].
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1421
    ^menu
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1422
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1423
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1424
useHelpDictionary:aDictionary
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1425
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1426
    self noteBookView.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1427
    self helpTool dictionary:aDictionary
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1428
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1429
455
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
  1430
!MenuEditor methodsFor:'active help'!
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
  1431
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
  1432
defaultInfoLabel
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
  1433
507
1586e7da66bc updates default info label after making new
tz
parents: 499
diff changeset
  1434
    specClass isNil ifTrue: [^'No menu class defined'].
1586e7da66bc updates default info label after making new
tz
parents: 499
diff changeset
  1435
    ^specClass printString, ' >> ', self treeView selectorName
492
b169fdb23f5f with spaces looks better
tz
parents: 489
diff changeset
  1436
  
455
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
  1437
! !
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
  1438
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1439
!MenuEditor methodsFor:'aspects'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1440
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1441
aspectFor:aKey
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1442
    "returns aspect for a key or nil"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1443
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1444
    ^aspects at: aKey ifAbsent: [super aspectFor:aKey]
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1445
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1446
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1447
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1448
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1449
enabledStepIn
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1450
    "returns whether user can put selected item in next submenu"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1451
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1452
    ^builder booleanValueAspectFor: #enabledStepIn
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1453
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1454
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1455
enabledStepOut
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1456
    "returns whether user can put selected item out of current parent submenu"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1457
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1458
    ^builder booleanValueAspectFor: #enabledStepOut
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1459
                         
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1460
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1461
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1462
enabledStepOver
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1463
    "returns whether user can shift selected item up or down"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1464
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1465
    ^builder booleanValueAspectFor:#enabledStepOver
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1466
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1467
220
ca
parents: 218
diff changeset
  1468
hasAnySingleSelection
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1469
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1470
    ^builder booleanValueAspectFor: #hasAnySingleSelection
220
ca
parents: 218
diff changeset
  1471
!
ca
parents: 218
diff changeset
  1472
ca
parents: 218
diff changeset
  1473
hasValidSelection
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1474
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1475
    ^builder booleanValueAspectFor: #hasValidSelection
220
ca
parents: 218
diff changeset
  1476
!
ca
parents: 218
diff changeset
  1477
ca
parents: 218
diff changeset
  1478
hasValidSingleSelection
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1479
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1480
    ^builder booleanValueAspectFor: #hasValidSingleSelection
220
ca
parents: 218
diff changeset
  1481
!
ca
parents: 218
diff changeset
  1482
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1483
noteBookView
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1484
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1485
    |noteBook helpTool|
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1486
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1487
    (noteBook := builder bindingAt:#noteBookView) isNil ifTrue:[
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1488
        noteBook := View new.
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1489
        helpTool := UIHelpTool new.
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1490
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1491
        helpTool masterApplication:self.
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1492
        helpCanvas := SubCanvas origin:0.0@0.0 corner:1.0@1.0 in:noteBook.
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1493
        specCanvas := SubCanvas origin:0.0@0.0 corner:1.0@1.0 in:noteBook.
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1494
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1495
        helpCanvas client:helpTool.
432
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
  1496
        helpTool masterApplication:self.      
422
f85de4fc2a2c commit buttons moved as subSpec to ToolApplicationModel
tz
parents: 418
diff changeset
  1497
        helpTool modifiedHolder: self valueOfEnablingCommitButtons.
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1498
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1499
        builder aspectAt:#noteBookView put:noteBook.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1500
    ].
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1501
    ^ noteBook
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1502
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1503
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1504
tabList
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1505
298
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  1506
    |holder|
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  1507
    (holder := builder bindingAt:#tabList) isNil ifTrue:[
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  1508
        builder aspectAt:#tabList put:(holder := #('Properties') asValue).
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  1509
    ].
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  1510
    ^ holder
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  1511
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  1512
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1513
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1514
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1515
tabModel
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1516
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1517
    |holder|
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1518
    (holder := builder bindingAt:#tabModel) isNil ifTrue:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1519
        holder := AspectAdaptor new subject:self; forAspect:#tabSelection.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1520
        builder aspectAt:#tabModel put:holder.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1521
    ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1522
    ^ holder
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1523
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1524
!
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1525
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1526
treeView
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1527
    "returns the tree view representing hierarchically all the menu items"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1528
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1529
    |treeView|
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1530
    (treeView := builder bindingAt:#treeView) isNil ifTrue:[
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1531
        treeView := TreeView new.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1532
        treeView action:[:dummy|self menuChanged].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1533
        builder aspectAt: #treeView put: treeView
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1534
    ].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1535
    ^treeView
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1536
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1537
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1538
!MenuEditor methodsFor:'change & update'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1539
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1540
update:something with:aParameter from:changedObject
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1541
    "one of my value holders has changed its value, so let me set the editing menu as modified"            
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1542
422
f85de4fc2a2c commit buttons moved as subSpec to ToolApplicationModel
tz
parents: 418
diff changeset
  1543
    self valueOfEnablingCommitButtons value: true
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1544
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1545
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1546
updateEnabledChannels
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1547
    "update enabled channels"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1548
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1549
    |node parent next state|
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1550
412
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1551
    state := false.   
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1552
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1553
    (node  := self treeView selectedNode) notNil
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1554
    ifTrue:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1555
    [
220
ca
parents: 218
diff changeset
  1556
        self hasAnySingleSelection value:true.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1557
        (parent := node parent) notNil
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1558
        ifTrue:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1559
        [
220
ca
parents: 218
diff changeset
  1560
            next := parent childAt:((parent indexOfChild:node) + 1).
ca
parents: 218
diff changeset
  1561
            self enabledStepIn           value:(next notNil and:[next hasChildren]).
ca
parents: 218
diff changeset
  1562
            self enabledStepOver         value:(parent children size > 1).
ca
parents: 218
diff changeset
  1563
            self enabledStepOut          value:(parent parent notNil).
ca
parents: 218
diff changeset
  1564
            self hasValidSingleSelection value:true.
ca
parents: 218
diff changeset
  1565
            self hasValidSelection       value:true.
ca
parents: 218
diff changeset
  1566
          ^ self
ca
parents: 218
diff changeset
  1567
        ]
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1568
    ]
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1569
    ifFalse:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1570
    [
220
ca
parents: 218
diff changeset
  1571
        self hasAnySingleSelection value:false.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1572
        self treeView numberOfSelections ~~ 0 ifTrue:[
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1573
            state := (self treeView isInSelection:1) not
220
ca
parents: 218
diff changeset
  1574
        ]
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1575
    ].          
220
ca
parents: 218
diff changeset
  1576
    self enabledStepOver         value:false.
ca
parents: 218
diff changeset
  1577
    self enabledStepIn           value:false.
ca
parents: 218
diff changeset
  1578
    self enabledStepOut          value:false.
ca
parents: 218
diff changeset
  1579
    self hasValidSingleSelection value:false.
ca
parents: 218
diff changeset
  1580
    self hasValidSelection       value:state.
ca
parents: 218
diff changeset
  1581
! !
ca
parents: 218
diff changeset
  1582
ca
parents: 218
diff changeset
  1583
!MenuEditor methodsFor:'event handling'!
ca
parents: 218
diff changeset
  1584
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1585
doesNotUnderstand: aMessage
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1586
    "detour incoming messages to the tree view"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1587
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1588
    (self treeView respondsTo: aMessage selector)
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1589
    ifTrue:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1590
    [
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1591
        ^aMessage sendTo: self treeView
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1592
    ].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1593
    super doesNotUnderstand:aMessage
220
ca
parents: 218
diff changeset
  1594
ca
parents: 218
diff changeset
  1595
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1596
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1597
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1598
!MenuEditor methodsFor:'private'!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1599
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1600
checkMenuItemModified
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1601
    "check menu item modification"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1602
422
f85de4fc2a2c commit buttons moved as subSpec to ToolApplicationModel
tz
parents: 418
diff changeset
  1603
    self valueOfEnablingCommitButtons value
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1604
    ifTrue:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1605
    [
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1606
        ((YesNoBox title:'Menu item was modified!!\Save it?\' withCRs)        
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1607
            noText:'No';
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1608
            yesText:'Yes';
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1609
            showAtPointer;
414
116cf2acebe3 before loading of a new menu do fire correct sequence of save requests
tz
parents: 412
diff changeset
  1610
            accepted) 
116cf2acebe3 before loading of a new menu do fire correct sequence of save requests
tz
parents: 412
diff changeset
  1611
        ifFalse: 
116cf2acebe3 before loading of a new menu do fire correct sequence of save requests
tz
parents: 412
diff changeset
  1612
        [
422
f85de4fc2a2c commit buttons moved as subSpec to ToolApplicationModel
tz
parents: 418
diff changeset
  1613
            self valueOfEnablingCommitButtons value: false. 
414
116cf2acebe3 before loading of a new menu do fire correct sequence of save requests
tz
parents: 412
diff changeset
  1614
            isModified := false.
116cf2acebe3 before loading of a new menu do fire correct sequence of save requests
tz
parents: 412
diff changeset
  1615
            ^true
116cf2acebe3 before loading of a new menu do fire correct sequence of save requests
tz
parents: 412
diff changeset
  1616
        ].
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1617
        self accept
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1618
    ].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1619
    ^true
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1620
!
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1621
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1622
helpKey
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1623
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1624
    |node|
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1625
    (node := self treeView selectedNode) notNil ifTrue:[
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1626
        ^ node contents activeHelpKey
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1627
    ].
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1628
    ^ nil
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1629
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1630
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1631
helpTool
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1632
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1633
    ^helpCanvas application
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1634
! !
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1635
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1636
!MenuEditor methodsFor:'queries'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1637
270
1a68f7479932 provide access to the menus selector;
Claus Gittinger <cg@exept.de>
parents: 266
diff changeset
  1638
didInstall
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1639
    "returns true if the menu was installed"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1640
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1641
    ^didInstall
270
1a68f7479932 provide access to the menus selector;
Claus Gittinger <cg@exept.de>
parents: 266
diff changeset
  1642
!
1a68f7479932 provide access to the menus selector;
Claus Gittinger <cg@exept.de>
parents: 266
diff changeset
  1643
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1644
isHelpToolSelected
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1645
    "returns true if current selection is help tool"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1646
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
  1647
    (tabSelection ~~ 0 and:[slices notNil]) ifTrue:[
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1648
        ^(slices at:tabSelection) first = UIHelpTool label
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1649
    ].
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1650
    ^false
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1651
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1652
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1653
isStandAlone
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1654
    "returns true in case of owner of the helptool"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1655
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1656
    ^self masterApplication isNil
535
1caf545614c5 info bar subspec changed
tz
parents: 532
diff changeset
  1657
!
1caf545614c5 info bar subspec changed
tz
parents: 532
diff changeset
  1658
1caf545614c5 info bar subspec changed
tz
parents: 532
diff changeset
  1659
preferredExtent
1caf545614c5 info bar subspec changed
tz
parents: 532
diff changeset
  1660
1caf545614c5 info bar subspec changed
tz
parents: 532
diff changeset
  1661
    ^super preferredExtent max: (Screen current width//3)@(Screen current height//2.5)
1caf545614c5 info bar subspec changed
tz
parents: 532
diff changeset
  1662
1caf545614c5 info bar subspec changed
tz
parents: 532
diff changeset
  1663
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1664
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1665
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1666
!MenuEditor methodsFor:'selection'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1667
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1668
menuChanged
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1669
432
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
  1670
    |node item slc sel old dep|
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1671
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1672
    aspects do: [:holder| holder removeDependent:self].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1673
    (node := self treeView selectedNode) notNil ifTrue:[
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1674
        aspects do:[:anAspect| anAspect value:nil ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1675
        item := node contents.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1676
        item toAspects:aspects.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1677
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1678
        item isSeparator ifFalse:[
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1679
            node parent isNil ifFalse:[
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1680
                node hasChildren ifTrue:[
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1681
                    slc := #slicesMenu
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1682
                ] ifFalse:[
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1683
                    item submenuChannel isNil ifTrue:[slc := #slicesItem]
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1684
                                             ifFalse:[slc := #slicesLink]
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1685
                ].
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1686
                slc := (self class perform:slc) copyWith:#( 'Help' #dummy ).
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1687
            ] ifTrue:[
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1688
                slc := self class perform:#slicesRootMenu
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1689
            ].
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1690
        ] ifTrue:[
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1691
            slc := self class perform:#slicesSeparatorMenu.
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1692
        ]
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1693
    ].
432
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
  1694
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
  1695
    self helpTool helpKey: self helpKey.
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
  1696
    "Next line helps me to preserve myself against unnecessary settings of
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
  1697
     valueOfEnablingCommitButtons to true in the help tool."
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
  1698
    self valueOfEnablingCommitButtons value: false.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1699
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1700
    slc ~= slices  ifTrue:[
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
  1701
        tabSelection ~~ 0 ifTrue:[
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1702
            old := (slices at:tabSelection) first
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1703
        ].
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1704
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1705
        (slices := slc) notNil ifTrue:[
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1706
            sel := slices collect:[:s| s first].
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
  1707
            tabSelection := 0.
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1708
            self tabList value:sel.
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1709
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1710
            (old notNil and:[(sel := sel findFirst:[:n|n = old]) ~~ 0]) ifFalse:[
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1711
                sel := 1
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1712
            ].
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1713
            self tabModel value:sel
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1714
        ] ifFalse:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1715
            self tabList value:nil.
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
  1716
            self tabSelection:0.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1717
        ]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1718
    ].
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1719
    self updateEnabledChannels.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1720
    aspects do: [:holder| holder addDependent:self].
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1721
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1722
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1723
tabSelection
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1724
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1725
    ^tabSelection ? 0
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1726
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1727
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1728
tabSelection: aSelection
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1729
412
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1730
    |sel|                 
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1731
    tabSelection = aSelection ifTrue:[
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1732
        ^ self
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1733
    ].
298
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  1734
    (aSelection ~~ 0 and:[slices isNil]) ifTrue:[
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  1735
        ^ self
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  1736
    ].
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
  1737
    (tabSelection := aSelection) == 0 ifTrue:[
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1738
        slices isNil ifTrue:[
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1739
            specCanvas client:nil.
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1740
            ^ specCanvas raise.
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1741
        ].
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1742
        tabSelection == 1 ifTrue:[^ self].
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1743
        tabSelection := 1
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1744
    ].
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1745
432
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
  1746
    self isHelpToolSelected ifTrue:[  
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1747
        self helpTool helpKey:(self helpKey).
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1748
        helpCanvas raise.
412
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1749
    ] ifFalse:[                       
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1750
        sel := (slices at:tabSelection) last.   
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1751
        aspects do: [:holder| holder release].
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1752
        specCanvas client:self spec:(self class perform:sel) builder:builder.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1753
        aspects do: [:holder| holder addDependent:self].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1754
        specCanvas raise.  
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1755
    ]    
298
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  1756
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1757
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1758
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1759
!MenuEditor methodsFor:'startup / release'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1760
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1761
buildFrom:aClass andSelector:aSelector
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1762
249
bfa28b62528c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 246
diff changeset
  1763
    |oldClass newClass|
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1764
422
f85de4fc2a2c commit buttons moved as subSpec to ToolApplicationModel
tz
parents: 418
diff changeset
  1765
    self valueOfEnablingCommitButtons value: false.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1766
    oldClass := self specClass.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1767
    self specClass:aClass.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1768
    newClass := self specClass.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1769
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1770
    (self isStandAlone and:[oldClass ~= newClass]) ifTrue:[
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1771
        self helpTool helpSpecFrom:newClass
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1772
    ].
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1773
    self treeView buildFrom: newClass andSelector: aSelector.
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  1774
155310ec83aa revised version
tz
parents: 382
diff changeset
  1775
    aClass notNil & aSelector notNil
155310ec83aa revised version
tz
parents: 382
diff changeset
  1776
    ifTrue:
155310ec83aa revised version
tz
parents: 382
diff changeset
  1777
    [
155310ec83aa revised version
tz
parents: 382
diff changeset
  1778
        |className message|
155310ec83aa revised version
tz
parents: 382
diff changeset
  1779
        aClass isClass ifTrue: [className := aClass name].
155310ec83aa revised version
tz
parents: 382
diff changeset
  1780
        aClass isString ifTrue: [className := aClass].
155310ec83aa revised version
tz
parents: 382
diff changeset
  1781
        message := className, ' ', aSelector.
507
1586e7da66bc updates default info label after making new
tz
parents: 499
diff changeset
  1782
        self addToHistory: message -> #loadFromMessage:
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  1783
    ].
155310ec83aa revised version
tz
parents: 382
diff changeset
  1784
507
1586e7da66bc updates default info label after making new
tz
parents: 499
diff changeset
  1785
    self valueOfInfoLabel value: self defaultInfoLabel.
412
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1786
    self treeView selection: 2.
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1787
    self menuChanged
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  1788
155310ec83aa revised version
tz
parents: 382
diff changeset
  1789
!
155310ec83aa revised version
tz
parents: 382
diff changeset
  1790
155310ec83aa revised version
tz
parents: 382
diff changeset
  1791
checkModified
155310ec83aa revised version
tz
parents: 382
diff changeset
  1792
    "check menu modification
155310ec83aa revised version
tz
parents: 382
diff changeset
  1793
    "
155310ec83aa revised version
tz
parents: 382
diff changeset
  1794
    isModified
155310ec83aa revised version
tz
parents: 382
diff changeset
  1795
    ifTrue:
155310ec83aa revised version
tz
parents: 382
diff changeset
  1796
    [
155310ec83aa revised version
tz
parents: 382
diff changeset
  1797
        ((YesNoBox title:'Menu was modified!!')        
155310ec83aa revised version
tz
parents: 382
diff changeset
  1798
            noText:'Cancel';
155310ec83aa revised version
tz
parents: 382
diff changeset
  1799
            yesText:'Waste it and proceed';
155310ec83aa revised version
tz
parents: 382
diff changeset
  1800
            showAtPointer;
155310ec83aa revised version
tz
parents: 382
diff changeset
  1801
            accepted) ifFalse: [^false].
155310ec83aa revised version
tz
parents: 382
diff changeset
  1802
        isModified := false
155310ec83aa revised version
tz
parents: 382
diff changeset
  1803
    ].
155310ec83aa revised version
tz
parents: 382
diff changeset
  1804
    ^true
155310ec83aa revised version
tz
parents: 382
diff changeset
  1805
155310ec83aa revised version
tz
parents: 382
diff changeset
  1806
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1807
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1808
356
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  1809
closeRequest
412
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1810
    "close request"
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1811
418
f47e99ae91bc double save requests after close request added
tz
parents: 416
diff changeset
  1812
    (self checkMenuItemModified and: [self checkModified]) ifTrue: [super closeRequest]
356
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  1813
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  1814
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  1815
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  1816
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  1817
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  1818
!
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  1819
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1820
initialize
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1821
    "initialize value holders for the menu item properties"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1822
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1823
    |holder|
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1824
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1825
    super initialize.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1826
    aspects := IdentityDictionary new.
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
  1827
    tabSelection := 0.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1828
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1829
    #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1830
        label
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1831
        accessCharacterPos
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
  1832
        argument
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1833
        submenuChannel
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1834
        enabled
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1835
        value
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1836
        nameKey
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1837
        indication
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  1838
        translateLabel
155310ec83aa revised version
tz
parents: 382
diff changeset
  1839
        isButton
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1840
        shortcutKey
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
  1841
        startGroup
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1842
        retriever
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1843
        iconAndLabel
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1844
        icon
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
  1845
        isVisible
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1846
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1847
     ) do:[:aKey|
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1848
        aspects at:aKey put:(holder := ValueHolder new).
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1849
        holder addDependent: self
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1850
    ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1851
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1852
    aspects at:#seperatorSelection put:(holder := SelectionInList new).
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1853
    holder list: Item separatorList.
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1854
    holder addDependent:self.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1855
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1856
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  1857
loadFromMessage: aMessage
155310ec83aa revised version
tz
parents: 382
diff changeset
  1858
414
116cf2acebe3 before loading of a new menu do fire correct sequence of save requests
tz
parents: 412
diff changeset
  1859
    (((aMessage size > 0) and: [self checkMenuItemModified]) and: [self checkModified])
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  1860
    ifTrue:
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  1861
    [
155310ec83aa revised version
tz
parents: 382
diff changeset
  1862
        |readStream aClass aSelector|
155310ec83aa revised version
tz
parents: 382
diff changeset
  1863
        readStream := aMessage readStream.
155310ec83aa revised version
tz
parents: 382
diff changeset
  1864
        aClass := Smalltalk at: (readStream upTo: $ ) asSymbol.
155310ec83aa revised version
tz
parents: 382
diff changeset
  1865
        aSelector :=  readStream upToEnd asSymbol.
412
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1866
        self buildFrom: aClass andSelector: aSelector
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  1867
    ]
155310ec83aa revised version
tz
parents: 382
diff changeset
  1868
!
155310ec83aa revised version
tz
parents: 382
diff changeset
  1869
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  1870
openModalOnClass:aClass andSelector:aSelector
416
d28e8c5f25f3 image editor startup revised
tz
parents: 414
diff changeset
  1871
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  1872
    specClass := Association key:aClass value:aSelector.
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  1873
    super openInterfaceModal.
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  1874
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  1875
!
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  1876
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1877
openOnClass:aClass andSelector:aSelector
416
d28e8c5f25f3 image editor startup revised
tz
parents: 414
diff changeset
  1878
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  1879
    specClass := Association key:aClass value:aSelector.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1880
    super openInterface.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1881
    self buildFrom:aClass andSelector:aSelector.
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  1882
209
b2fa6f8d4808 postBuildWith:builder
ca
parents: 199
diff changeset
  1883
!
b2fa6f8d4808 postBuildWith:builder
ca
parents: 199
diff changeset
  1884
b2fa6f8d4808 postBuildWith:builder
ca
parents: 199
diff changeset
  1885
postBuildWith:builder
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  1886
    |cls sel|
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  1887
537
c39e2ceeaaea support argument for linked menus
tz
parents: 535
diff changeset
  1888
    super postBuildWith:builder.
c39e2ceeaaea support argument for linked menus
tz
parents: 535
diff changeset
  1889
356
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  1890
    didInstall := false.
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  1891
    isModified := false.
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  1892
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  1893
    specClass isAssociation ifTrue:[
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  1894
        cls := specClass key.
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  1895
        sel := specClass value.
228
ae3028e45467 can read PullDownMenus
ca
parents: 227
diff changeset
  1896
ae3028e45467 can read PullDownMenus
ca
parents: 227
diff changeset
  1897
        specClass := nil.
ae3028e45467 can read PullDownMenus
ca
parents: 227
diff changeset
  1898
ae3028e45467 can read PullDownMenus
ca
parents: 227
diff changeset
  1899
        (sel isKindOf:Menu) ifTrue:[
ae3028e45467 can read PullDownMenus
ca
parents: 227
diff changeset
  1900
            self buildFrom:cls andSelector:nil.
412
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1901
            ^self treeView buildFromMenu:sel.
228
ae3028e45467 can read PullDownMenus
ca
parents: 227
diff changeset
  1902
        ]
ae3028e45467 can read PullDownMenus
ca
parents: 227
diff changeset
  1903
        
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  1904
    ].
412
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1905
    self buildFrom:cls andSelector:sel
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1906
!
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1907
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1908
postOpenWith:aBuilder
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1909
537
c39e2ceeaaea support argument for linked menus
tz
parents: 535
diff changeset
  1910
    super postOpenWith:aBuilder.
c39e2ceeaaea support argument for linked menus
tz
parents: 535
diff changeset
  1911
412
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1912
    self isHelpToolSelected 
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1913
        ifTrue:  [helpCanvas raise] 
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1914
        ifFalse: [specCanvas raise]    
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1915
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1916
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1917
!MenuEditor methodsFor:'user interactions'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1918
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1919
accept
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1920
    "invoked by button 'OK' and by save requests of menu item changes"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1921
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1922
    |node|
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1923
    node := self treeView selectedNode.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1924
    node notNil
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1925
    ifTrue:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1926
    [
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1927
        self isHelpToolSelected
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1928
        ifTrue:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1929
        [
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1930
            self helpTool accept.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1931
            node contents activeHelpKey: self helpTool helpKey
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1932
        ]
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1933
        ifFalse:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1934
        [
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1935
            self treeView updateNode: (node contents buildFromAspects: aspects)
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1936
        ]
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1937
    ].
422
f85de4fc2a2c commit buttons moved as subSpec to ToolApplicationModel
tz
parents: 418
diff changeset
  1938
    self valueOfEnablingCommitButtons value:false.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1939
    isModified := true
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1940
!
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1941
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1942
cancel
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1943
    "invoked by button 'Cancel'"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1944
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1945
    |node|
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1946
    (node := self treeView selectedNode) notNil
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1947
    ifTrue:
432
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
  1948
    [          
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1949
        self helpTool helpKey:(self helpKey).
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1950
        aspects do:[:anAspect| anAspect value:nil].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1951
        node contents toAspects:aspects
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1952
    ].
422
f85de4fc2a2c commit buttons moved as subSpec to ToolApplicationModel
tz
parents: 418
diff changeset
  1953
    self valueOfEnablingCommitButtons value: false.
414
116cf2acebe3 before loading of a new menu do fire correct sequence of save requests
tz
parents: 412
diff changeset
  1954
    isModified := false
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1955
!
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1956
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1957
doBrowseAppClass
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1958
    "open a browser on the class"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1959
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1960
    |cls|
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1961
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1962
    (cls := self resolveName: self specClass) notNil
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1963
    ifTrue:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1964
    [
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1965
        SystemBrowser openInClass:cls class selector: self treeView selectorName
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1966
    ]
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1967
    ifFalse:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1968
    [
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  1969
        self information:'No valid class defined!!'.
331
ca
parents: 326
diff changeset
  1970
    ]
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1971
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1972
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1973
doDefineClass
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1974
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1975
    aspects at:#classNameChannel  put:(self specClass asValue).
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1976
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1977
    (self openDialogInterface:#classDefineSpec) ifTrue:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1978
        self specClass:((aspects at:#classNameChannel) value)
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1979
    ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1980
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1981
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1982
381
1d1b1483270c now with image editor support
tz
parents: 371
diff changeset
  1983
doEditImage
1d1b1483270c now with image editor support
tz
parents: 371
diff changeset
  1984
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  1985
    |cls resourceClass resourceSelector imageResourceMessage readStream|
155310ec83aa revised version
tz
parents: 382
diff changeset
  1986
416
d28e8c5f25f3 image editor startup revised
tz
parents: 414
diff changeset
  1987
    cls := self resolveName: self specClass.
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  1988
    cls isNil ifTrue:[
155310ec83aa revised version
tz
parents: 382
diff changeset
  1989
        ^ self information:'No valid class defined!!'.
155310ec83aa revised version
tz
parents: 382
diff changeset
  1990
    ].
155310ec83aa revised version
tz
parents: 382
diff changeset
  1991
    (aspects at:#icon) value size > 0
155310ec83aa revised version
tz
parents: 382
diff changeset
  1992
        ifTrue:  [resourceSelector := (aspects at:#icon) value]
155310ec83aa revised version
tz
parents: 382
diff changeset
  1993
        ifFalse: [resourceSelector := #stxIcon].
416
d28e8c5f25f3 image editor startup revised
tz
parents: 414
diff changeset
  1994
    (aspects at:#retriever) value size > 0
d28e8c5f25f3 image editor startup revised
tz
parents: 414
diff changeset
  1995
        ifTrue:  [resourceClass := (aspects at:#retriever) value]
d28e8c5f25f3 image editor startup revised
tz
parents: 414
diff changeset
  1996
        ifFalse: [resourceClass := cls withAllSuperclasses detect: [:cls| cls class implements: resourceSelector] ifNone: [cls]].
d28e8c5f25f3 image editor startup revised
tz
parents: 414
diff changeset
  1997
d28e8c5f25f3 image editor startup revised
tz
parents: 414
diff changeset
  1998
    (imageResourceMessage := ImageEditor openModalOnClass: resourceClass andSelector: resourceSelector) notNil
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  1999
    ifTrue:
155310ec83aa revised version
tz
parents: 382
diff changeset
  2000
    [
416
d28e8c5f25f3 image editor startup revised
tz
parents: 414
diff changeset
  2001
        readStream := imageResourceMessage readStream.
d28e8c5f25f3 image editor startup revised
tz
parents: 414
diff changeset
  2002
        resourceClass := (readStream upTo: $ ) asSymbol.
d28e8c5f25f3 image editor startup revised
tz
parents: 414
diff changeset
  2003
        resourceSelector := readStream upToEnd asSymbol.
d28e8c5f25f3 image editor startup revised
tz
parents: 414
diff changeset
  2004
        resourceClass size > 0 ifTrue: [(aspects at:#retriever) value: resourceClass].
422
f85de4fc2a2c commit buttons moved as subSpec to ToolApplicationModel
tz
parents: 418
diff changeset
  2005
        resourceSelector size > 0 ifTrue: [(aspects at:#icon) value: resourceSelector. self valueOfEnablingCommitButtons value: true]
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2006
    ]
381
1d1b1483270c now with image editor support
tz
parents: 371
diff changeset
  2007
!
1d1b1483270c now with image editor support
tz
parents: 371
diff changeset
  2008
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2009
doFromClass
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2010
422
f85de4fc2a2c commit buttons moved as subSpec to ToolApplicationModel
tz
parents: 418
diff changeset
  2011
    self loadFromInClassesOf: #Object
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2012
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2013
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2014
doInstallSpec
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2015
    |cls selector treeView menu spec mthd category code|
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2016
331
ca
parents: 326
diff changeset
  2017
    cls := self resolveName:(self specClass).
ca
parents: 326
diff changeset
  2018
ca
parents: 326
diff changeset
  2019
    cls isNil ifTrue:[
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2020
        ^ self information:'No valid class defined!!'.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2021
    ].
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2022
    treeView  := self treeView.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2023
    selector := treeView selectorName.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2024
    menu     := treeView asMenu.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2025
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2026
    menu isNil ifTrue:[
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2027
        ^ self information:'No menu defined.'
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2028
    ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2029
    menu := menu literalArrayEncoding.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2030
    spec := WriteStream on:String new.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2031
    UISpecification prettyPrintSpecArray:menu on:spec indent:5.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2032
    spec := spec contents.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2033
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2034
    "/ if that method already exists, do not overwrite the category
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2035
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2036
    category := 'interface specs'.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2037
    (mthd := cls class compiledMethodAt:selector) notNil ifTrue:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2038
        category := mthd category.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2039
    ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2040
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2041
    code := Character excla asString 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2042
            , cls name , ' class methodsFor:' , category storeString
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2043
            , Character excla asString , '\\'
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2044
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2045
            , selector , '\'
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2046
            , '    "this window spec was automatically generated by the ST/X MenuEditor"\\'
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2047
            , '    "do not manually edit this - the builder may not be able to\'
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2048
            , '     handle the specification if its corrupted."\\'
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2049
            , '    "\'
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2050
            , '     MenuEditor new openOnClass:' , cls name , ' andSelector:#' , selector , '\'
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2051
            , '     (Menu new fromLiteralArrayEncoding:(' , cls name , ' ' , selector , ')) startUp\'
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2052
            , '    "\'.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2053
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2054
    code := code 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2055
            , '\'
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2056
            , '    <resource: #menu>\\'
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2057
            , '    ^\' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2058
            , '     ', spec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2059
            , '\'
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2060
            , Character excla asString
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2061
            , ' '
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2062
            , Character excla asString
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2063
            , '\\'.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2064
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2065
    code := code withCRs.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2066
    (ReadStream on:code) fileIn.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2067
455
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
  2068
    self isStandAlone ifTrue:[
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
  2069
        self helpTool installHelpSpecInto:(self specClass)
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
  2070
    ].
356
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  2071
    didInstall := true.
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  2072
    isModified := false.
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2073
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2074
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2075
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2076
doNew
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2077
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2078
    self buildFrom:nil andSelector: self treeView selectorName
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2079
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2080
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2081
doPickAMenu
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2082
228
ae3028e45467 can read PullDownMenus
ca
parents: 227
diff changeset
  2083
    |view|
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2084
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2085
    view := Screen current viewFromUser.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2086
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2087
    (view isNil or:[view == Screen current rootView]) ifTrue:[
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2088
        ^ self
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2089
    ].
228
ae3028e45467 can read PullDownMenus
ca
parents: 227
diff changeset
  2090
    view specClass == MenuPanelSpec ifTrue:[
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2091
        ^ self treeView buildFromMenu: view asMenu
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2092
    ].
228
ae3028e45467 can read PullDownMenus
ca
parents: 227
diff changeset
  2093
    ^ nil
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2094
!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2095
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2096
doStepDown
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2097
    "shift selected menu item one step down"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2098
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2099
    self treeView selectedNodeChangeSequenceOrder:1.
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2100
    isModified := true.
155310ec83aa revised version
tz
parents: 382
diff changeset
  2101
155310ec83aa revised version
tz
parents: 382
diff changeset
  2102
155310ec83aa revised version
tz
parents: 382
diff changeset
  2103
155310ec83aa revised version
tz
parents: 382
diff changeset
  2104
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2105
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2106
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2107
doStepIn
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2108
    "move selected menu item into next submenu"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2109
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2110
    self treeView selectedNodeBecomeChildOfNext.
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2111
    isModified := true.
155310ec83aa revised version
tz
parents: 382
diff changeset
  2112
155310ec83aa revised version
tz
parents: 382
diff changeset
  2113
155310ec83aa revised version
tz
parents: 382
diff changeset
  2114
155310ec83aa revised version
tz
parents: 382
diff changeset
  2115
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2116
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2117
!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2118
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2119
doStepOut
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2120
    "move selected menu item out from parent submenu"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2121
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2122
    self treeView selectedNodeBecomeSisterOfParent.
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2123
    isModified := true.
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2124
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2125
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2126
doStepUp
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2127
    "shift selected menu item one step up"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2128
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2129
    self treeView selectedNodeChangeSequenceOrder:-1.
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2130
    isModified := true.
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2131
!
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2132
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2133
loadFromInClassesOf: aSuperclassOrSymbol
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2134
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2135
    self loadFromMessage: 
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2136
        (ResourceSelectionBrowser
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2137
            request: 'Load Menu From Class'
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2138
            onSuperclass: aSuperclassOrSymbol
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2139
            andClass: specClass
520
f6ca67d537b6 single lines in tool bar removed
tz
parents: 509
diff changeset
  2140
            andSelector: self treeView selectorName
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2141
            withResourceTypes: #(menu))
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2142
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2143
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2144
!MenuEditor::Item class methodsFor:'constants'!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2145
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2146
separatorList
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2147
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2148
    ^#('blank' 'single line' 'double line')
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2149
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2150
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2151
separatorSlices
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2152
   ^ #(
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2153
        ( #blank        ''  )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2154
        ( #single       '-' )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2155
        ( #double       '=' )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2156
      )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2157
! !
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2158
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2159
!MenuEditor::Item class methodsFor:'documentation'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2160
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2161
documentation
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2162
"
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2163
    implements the contents assigned to a TreeItem. An instance
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2164
    is associated with one item and keeps all its information
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2165
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2166
    [see also:]
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2167
        TreeItem
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2168
        MenuEditor
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2169
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2170
    [author:]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2171
        Claus Atzkern
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2172
"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2173
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2174
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2175
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2176
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2177
!MenuEditor::Item methodsFor:'accessing'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2178
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2179
activeHelpKey
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2180
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2181
    ^activeHelpKey
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2182
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2183
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2184
activeHelpKey:aKey
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2185
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2186
    activeHelpKey := aKey
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2187
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2188
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2189
label
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2190
    "return the value of the instance variable 'label' (automatically generated)"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2191
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2192
    ^label
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2193
!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2194
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2195
label:something
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2196
    "set the value of the instance variable 'label' (automatically generated)"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2197
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2198
    label := something ? '-'
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2199
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2200
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2201
separatorType
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2202
    "returns separator type assigned to item or nil"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2203
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2204
    label size > 1 
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2205
    ifFalse:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2206
    [
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2207
        label size  == 0  ifTrue:[^#blank].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2208
        label first == $- ifTrue:[^#single].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2209
        label first == $= ifTrue:[^#double].
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2210
    ].    
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2211
    ^nil
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2212
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2213
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2214
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2215
submenuChannel
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2216
    "return the value of the instance variable 'submenuChannel' (automatically generated)"
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2217
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2218
    ^submenuChannel
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2219
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2220
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2221
submenuChannel:aChannel
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2222
    "return the value of the instance variable 'submenuChannel' (automatically generated)"
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2223
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2224
    submenuChannel := aChannel
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2225
! !
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2226
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2227
!MenuEditor::Item methodsFor:'conversion'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2228
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2229
asMenuItem
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2230
    "converts self to a menu item"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2231
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2232
    |item rcv|
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2233
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2234
    item := MenuItem labeled:label.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2235
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2236
    self isSeparator ifFalse:[    
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2237
        item activeHelpKey:activeHelpKey.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2238
        item enabled:enabled.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2239
        item accessCharacterPosition:accessCharacterPos.
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
  2240
        item argument:argument.
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2241
        item submenuChannel:submenuChannel.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2242
        item nameKey:nameKey.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2243
        item shortcutKeyCharacter:shortcutKey.
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
  2244
        item startGroup:startGroup.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2245
        item value:value.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2246
        item indication:indication.
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2247
        item translateLabel: translateLabel.
155310ec83aa revised version
tz
parents: 382
diff changeset
  2248
        item isButton: isButton.
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
  2249
        item isVisible: isVisible.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2250
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2251
        icon notNil ifTrue:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2252
            rcv := ResourceRetriever new.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2253
            rcv className:retriever.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2254
            rcv selector:icon.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2255
            iconAndLabel == true ifTrue:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2256
                rcv labelText:label
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2257
            ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2258
            item labelImage:rcv
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2259
        ]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2260
    ].
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2261
    ^item
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2262
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2263
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2264
buildFromAspects:aspects
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2265
249
bfa28b62528c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 246
diff changeset
  2266
    |name|
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2267
    self isSeparator 
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2268
    ifFalse:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2269
    [
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2270
        name  := label.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2271
        label := (aspects at:#label) value.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2272
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2273
        (label isNil or:[self isSeparator]) ifTrue:[
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2274
            (aspects at:#label) value:(label := name)
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2275
        ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2276
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2277
        enabled            := (aspects at:#enabled) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2278
        value              := (aspects at:#value) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2279
        nameKey            := (aspects at:#nameKey) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2280
        indication         := (aspects at:#indication) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2281
        shortcutKey        := (aspects at:#shortcutKey) value.
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
  2282
        startGroup         := (aspects at:#startGroup) value.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2283
        accessCharacterPos := (aspects at:#accessCharacterPos) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2284
        argument           := (aspects at:#argument) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2285
        translateLabel     := (aspects at:#translateLabel) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2286
        isButton           := (aspects at:#isButton) value.
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
  2287
        isVisible          := (aspects at:#isVisible) value.
298
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2288
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2289
        argument isString ifTrue:[
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2290
            argument size > 1 ifTrue:[
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2291
                (argument at:1) == $# ifTrue:[
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2292
                    argument := (argument copyFrom:2) asSymbol
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2293
                ]
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2294
            ]
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2295
        ].
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2296
        submenuChannel    := (aspects at:#submenuChannel) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2297
        retriever         := (aspects at:#retriever) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2298
        icon              := (aspects at:#icon) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2299
        iconAndLabel      := (aspects at:#iconAndLabel) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2300
    ]
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2301
    ifTrue:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2302
    [
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2303
        name  := (aspects at:#seperatorSelection) selectionIndex.
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2304
        label := (self class separatorSlices at:name) last.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2305
    ]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2306
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2307
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2308
buildFromMenuItem:anItem
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2309
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2310
    |rtv|
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2311
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2312
    self label:(anItem label).
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2313
    activeHelpKey := anItem activeHelpKey.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2314
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2315
    (enabled := anItem enabled) isSymbol ifFalse:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2316
        enabled := nil
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2317
    ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2318
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2319
    (value := anItem value) isSymbol ifFalse:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2320
        value := nil.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2321
    ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2322
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2323
    (indication := anItem indication) isSymbol ifFalse:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2324
        indication := nil
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2325
    ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2326
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2327
    nameKey            := anItem nameKey.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2328
    shortcutKey        := anItem shortcutKeyCharacter.
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
  2329
    startGroup         := anItem startGroup.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2330
    accessCharacterPos := anItem accessCharacterPosition.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2331
    argument           := anItem argument.
537
c39e2ceeaaea support argument for linked menus
tz
parents: 535
diff changeset
  2332
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2333
    submenuChannel     := anItem submenuChannel.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2334
    translateLabel     := anItem translateLabel.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2335
    isButton           := anItem isButton.
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
  2336
    isVisible          := anItem isVisible.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2337
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2338
    (((rtv := anItem adornment) notNil)
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2339
    and:[(rtv := rtv labelImage) isKindOf:ResourceRetriever])
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2340
    ifTrue:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2341
    [
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2342
        retriever := rtv className.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2343
        icon      := rtv selector.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2344
        (iconAndLabel := rtv labelText notNil) ifTrue:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2345
            label := rtv labelText.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2346
        ]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2347
    ]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2348
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2349
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2350
toAspects:aspects
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2351
249
bfa28b62528c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 246
diff changeset
  2352
    |type|
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2353
    (type := self separatorType) notNil
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2354
    ifTrue:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2355
    [
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2356
        type := self class separatorSlices findFirst:[:el| el first == type ].
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2357
        (aspects at:#seperatorSelection) selectionIndex:type.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2358
    ] 
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2359
    ifFalse:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2360
    [
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2361
        (aspects at:#label)                value:label.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2362
        (aspects at:#enabled)              value:enabled.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2363
        (aspects at:#value)                value:value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2364
        (aspects at:#nameKey)              value:nameKey.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2365
        (aspects at:#indication)           value:indication.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2366
        (aspects at:#shortcutKey)          value:shortcutKey.
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
  2367
        (aspects at:#startGroup)           value:startGroup.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2368
        (aspects at:#accessCharacterPos)   value:accessCharacterPos.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2369
        (aspects at:#translateLabel)       value:translateLabel.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2370
        (aspects at:#submenuChannel)       value:submenuChannel.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2371
        (aspects at:#retriever)            value:retriever.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2372
        (aspects at:#icon)                 value:icon.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2373
        (aspects at:#iconAndLabel)         value:iconAndLabel.
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
  2374
        (aspects at:#isButton)             value:isButton.
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
  2375
        (aspects at:#isVisible)            value:isVisible.
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
  2376
537
c39e2ceeaaea support argument for linked menus
tz
parents: 535
diff changeset
  2377
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2378
        argument isSymbol
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2379
            ifTrue: [(aspects at:#argument)value:'#', argument] 
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2380
            ifFalse:[(aspects at:#argument)value:argument].
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2381
    ]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2382
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2383
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2384
!MenuEditor::Item methodsFor:'queries'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2385
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2386
isSeparator
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2387
    "returns true if item is a seperator"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2388
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2389
    ^self separatorType notNil
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2390
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2391
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2392
!MenuEditor::TreeView class methodsFor:'defaults'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2393
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2394
defaultMenuMessage   
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2395
    "this message is the default yo be sent to the menuHolder to get a menu"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2396
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2397
    ^#menu
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2398
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2399
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2400
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2401
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2402
!MenuEditor::TreeView class methodsFor:'documentation'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2403
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2404
documentation
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2405
"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2406
    menu selection list
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2407
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2408
    [see also:]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2409
        SelectionInTreeView
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2410
        SelectionInTree
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2411
        TreeItem
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2412
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2413
    [author:]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2414
        Claus Atzkern
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2415
"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2416
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2417
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2418
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2419
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2420
!MenuEditor::TreeView class methodsFor:'initialization'!
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2421
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2422
initialize
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2423
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2424
    super initialize.
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2425
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2426
    Images := nil
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2427
! !
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2428
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2429
!MenuEditor::TreeView class methodsFor:'resources'!
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2430
155310ec83aa revised version
tz
parents: 382
diff changeset
  2431
images
155310ec83aa revised version
tz
parents: 382
diff changeset
  2432
    "returns an IdentityDictionary containing a list of images and keys used
155310ec83aa revised version
tz
parents: 382
diff changeset
  2433
    "
155310ec83aa revised version
tz
parents: 382
diff changeset
  2434
    ^ Images ?
155310ec83aa revised version
tz
parents: 382
diff changeset
  2435
        (Images := IdentityDictionary new
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2436
            at: #menuItemImage      put: MenuEditor menuItemImage;
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2437
            at: #menuSeparatorImage put: MenuEditor menuSeparatorImage;
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2438
            at: #submenuImage       put: MenuEditor submenuImage;
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2439
            at: #linkSubmenuImage   put: MenuEditor linkSubmenuImage;
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2440
            yourself)
155310ec83aa revised version
tz
parents: 382
diff changeset
  2441
155310ec83aa revised version
tz
parents: 382
diff changeset
  2442
155310ec83aa revised version
tz
parents: 382
diff changeset
  2443
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2444
! !
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2445
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2446
!MenuEditor::TreeView methodsFor:'accessing'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2447
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2448
selectorName
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2449
    ^ (listOfNodes first contents label) asSymbol
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2450
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2451
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2452
!MenuEditor::TreeView methodsFor:'building'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2453
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2454
buildFrom:aClass andSelector:aSelector
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2455
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2456
    |spec cls menu node|
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2457
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2458
    (aClass notNil and:[aSelector notNil]) ifTrue:[
340
1de048872d5e resolveName:
ca
parents: 331
diff changeset
  2459
        cls := self application resolveName:aClass.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2460
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2461
        (cls respondsTo:aSelector) ifTrue:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2462
            spec := cls perform:aSelector
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2463
        ]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2464
    ].
331
ca
parents: 326
diff changeset
  2465
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2466
    spec isNil ifFalse:[
298
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2467
        (spec isMemberOf:Menu) ifFalse:[
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2468
            menu := Menu new fromLiteralArrayEncoding:spec.
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2469
        ] ifTrue:[
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2470
            menu := spec.
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2471
        ].
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2472
        node := self nodeLabel:(aSelector asString).
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2473
        self subMenu:menu parent:node.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2474
    ] ifTrue:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2475
        aSelector notNil ifTrue:[cls := aSelector asString]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2476
                        ifFalse:[cls := 'menu'].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2477
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2478
        node := self nodeLabel:cls.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2479
    ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2480
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2481
    node hasChildren ifFalse:[
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2482
        node add:(self nodeLabel:'undefined')
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2483
    ].
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2484
    node expand.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2485
    model root:node.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2486
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2487
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2488
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2489
buildFromMenu:aMenu
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2490
249
bfa28b62528c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 246
diff changeset
  2491
    |node|
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2492
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2493
    node := self nodeLabel:'menu'.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2494
    self subMenu:aMenu parent:node.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2495
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2496
    node hasChildren ifFalse:[
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2497
        node add:(self nodeLabel:'undefined')
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2498
    ].
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2499
    node expand.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2500
    model root:node.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2501
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2502
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2503
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2504
menuItem:anItem
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2505
249
bfa28b62528c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 246
diff changeset
  2506
    |node|
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2507
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2508
    node := self nodeLabel: anItem label.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2509
    node contents buildFromMenuItem:anItem.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2510
    node name: node contents label.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2511
    self subMenu: anItem submenu parent:node.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2512
    ^node.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2513
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2514
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2515
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2516
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2517
subMenu:aMenu parent:aParent
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2518
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2519
    |idx grp|
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2520
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2521
    aMenu isNil ifFalse:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2522
        grp := aMenu groupSizes.
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2523
        aMenu itemsDo:[:i| aParent add:(self menuItem:i)].
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2524
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2525
        grp notNil ifTrue:[
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2526
            idx := 0.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2527
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2528
            grp do:[:i|
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2529
                idx := idx + i + 1.
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2530
                aParent add:(self nodeLabel:nil) beforeIndex:idx.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2531
            ]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2532
        ]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2533
    ]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2534
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2535
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2536
!MenuEditor::TreeView methodsFor:'conversion'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2537
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2538
asMenu
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2539
    |menu root|
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2540
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2541
    root := self root.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2542
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2543
    root hasChildren ifTrue:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2544
        menu := Menu new.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2545
        root children do:[:aChild| menu addItem:(self asMenuItem:aChild)].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2546
    ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2547
  ^ menu
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2548
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2549
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2550
asMenuItem:aNode
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2551
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2552
    |menu item|
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2553
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2554
    item := aNode contents asMenuItem.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2555
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2556
    aNode hasChildren ifTrue:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2557
        menu := Menu new.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2558
        aNode children do:[:aChild| menu addItem:(self asMenuItem:aChild)].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2559
        item submenu:menu
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2560
    ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2561
  ^ item
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2562
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2563
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2564
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2565
!MenuEditor::TreeView methodsFor:'drawing basics'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2566
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2567
drawLabelIndex:anIndex atX:x y:yCenter
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2568
    "draw text label assigned to a node at x y( center)"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2569
258
c6f8c3e2f463 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  2570
    |y x2 type item|
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2571
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2572
    item := (listOfNodes at:anIndex) contents.
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2573
    type := item separatorType.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2574
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2575
    type isNil ifTrue:[
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2576
        super drawLabelIndex:anIndex atX:x y:yCenter
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2577
    ] ifFalse:[
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2578
        type == #blank ifFalse:[
258
c6f8c3e2f463 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  2579
            x2 := x + 80.
c6f8c3e2f463 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  2580
c6f8c3e2f463 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  2581
            self displayLineFromX:x y:yCenter toX:x2 y:yCenter.
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2582
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2583
            type == #double ifTrue:[
258
c6f8c3e2f463 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  2584
                y := yCenter + 2.
c6f8c3e2f463 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 257
diff changeset
  2585
                self displayLineFromX:x y:y toX:x2 y:y.
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2586
            ]    
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2587
        ]
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2588
    ]
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2589
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2590
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2591
figureFor:aNode
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2592
    "access figure for a node"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2593
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2594
    aNode hasChildren
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2595
    ifFalse:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2596
    [
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2597
        |item|
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2598
        (item := aNode contents) submenuChannel notNil ifTrue:[^images at: #linkSubmenuImage].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2599
        item isSeparator ifTrue:[^images at: #menuSeparatorImage].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2600
        ^images at: #menuItemImage
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2601
    ].
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2602
    ^images at: #submenuImage
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2603
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2604
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2605
!MenuEditor::TreeView methodsFor:'event handling'!
356
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  2606
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  2607
keyPress:key x:x y:y
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2608
    "invoked if any key was pressed"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2609
412
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  2610
    <resource: #keyboard (#Delete #BackSpace #Cut #Copy #Paste)>
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  2611
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  2612
    (key == #Cut or:[key == #Delete or:[key == #BackSpace]]) ifTrue: [^self doCut].
356
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  2613
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2614
    key == #Copy  ifTrue:[^self doCopy].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2615
    key == #Paste ifTrue:[^self doPaste].
356
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  2616
412
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  2617
    super keyPress:key x:x y:y
356
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  2618
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  2619
! !
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  2620
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2621
!MenuEditor::TreeView methodsFor:'initialization'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2622
275
cdecb5b5d356 set fontHeight dependent on max. image height
ca
parents: 270
diff changeset
  2623
fetchImageResources
cdecb5b5d356 set fontHeight dependent on max. image height
ca
parents: 270
diff changeset
  2624
    "initialize heavily used device resources - to avoid rendering
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2625
     images again and again later; returns maximum extent of the images used."
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2626
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2627
    |defaultExtent imageWidth imageHeight maxWidth maxHeight|
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2628
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2629
    defaultExtent := super fetchImageResources.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2630
    maxHeight := defaultExtent y.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2631
    maxWidth := defaultExtent x.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2632
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2633
    images do:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2634
    [:anIcon|
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2635
        (imageWidth  := anIcon widthOn:self)  > maxWidth  ifTrue:[maxWidth  := imageWidth].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2636
        (imageHeight := anIcon heightOn:self) > maxHeight ifTrue:[maxHeight := imageHeight].
275
cdecb5b5d356 set fontHeight dependent on max. image height
ca
parents: 270
diff changeset
  2637
    ].
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2638
    ^maxWidth@maxHeight
275
cdecb5b5d356 set fontHeight dependent on max. image height
ca
parents: 270
diff changeset
  2639
cdecb5b5d356 set fontHeight dependent on max. image height
ca
parents: 270
diff changeset
  2640
!
cdecb5b5d356 set fontHeight dependent on max. image height
ca
parents: 270
diff changeset
  2641
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2642
initialize
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2643
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2644
    super initialize.
275
cdecb5b5d356 set fontHeight dependent on max. image height
ca
parents: 270
diff changeset
  2645
cdecb5b5d356 set fontHeight dependent on max. image height
ca
parents: 270
diff changeset
  2646
    images := IdentityDictionary new.
cdecb5b5d356 set fontHeight dependent on max. image height
ca
parents: 270
diff changeset
  2647
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2648
    self class images associationsDo:[:imageAsso|images at: imageAsso key put:(imageAsso value onDevice:device)].
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2649
    self multipleSelectOk:true.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2650
    self showDirectoryIndicator: true.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2651
    self showDirectoryIndicatorForRoot: false.
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
  2652
    self selectConditionBlock: [:i|self application checkMenuItemModified].
412
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  2653
    self validateDoubleClickBlock: [:node| node ~~ listOfNodes first].
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2654
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2655
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2656
!MenuEditor::TreeView methodsFor:'menus'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2657
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2658
doCopy
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2659
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2660
    self hasSelection ifTrue:[
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2661
        CopyBuffer := OrderedCollection new.
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2662
        self selectionDo:[:i| CopyBuffer add:((listOfNodes at:i) copy)]
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2663
    ]
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2664
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2665
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2666
doCreateItem
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2667
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2668
    self addElement:(self nodeLabel:'undefined')
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2669
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2670
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2671
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2672
doCreateLink
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2673
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2674
    |node item|
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2675
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2676
    node := self nodeLabel:'undefined'.
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2677
    item := node contents.
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2678
    item submenuChannel:#menuDefaultLink.
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2679
    self addElement:node.
155310ec83aa revised version
tz
parents: 382
diff changeset
  2680
    self setModified.
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2681
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2682
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2683
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2684
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2685
doCreateMenu
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2686
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2687
    |node|
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2688
    node := self nodeLabel:'undefined'.
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2689
    node add:(self nodeLabel:'undefined').
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2690
    self addElement:node
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2691
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2692
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2693
doCreateSep
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2694
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2695
    self addElement:(self nodeLabel:nil)
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2696
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2697
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2698
doCut
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2699
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2700
    self doCopy.
298
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2701
    self selectedNodesRemove.
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2702
    self setModified.
155310ec83aa revised version
tz
parents: 382
diff changeset
  2703
155310ec83aa revised version
tz
parents: 382
diff changeset
  2704
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2705
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2706
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2707
doPaste
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2708
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2709
    (CopyBuffer notNil and:[self selectedNode notNil]) ifTrue:[
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2710
        self addElement:(CopyBuffer collect:[:el| el copy])
220
ca
parents: 218
diff changeset
  2711
    ].
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2712
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2713
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2714
!MenuEditor::TreeView methodsFor:'private'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2715
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2716
addElement:something
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2717
    "add something after selection"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2718
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2719
    self selectedNodeAdd:something.
155310ec83aa revised version
tz
parents: 382
diff changeset
  2720
    self setModified.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2721
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2722
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2723
nodeLabel:aLabel
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2724
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2725
    ^TreeItem name:aLabel contents: (MenuEditor::Item new label:aLabel)
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2726
!
155310ec83aa revised version
tz
parents: 382
diff changeset
  2727
155310ec83aa revised version
tz
parents: 382
diff changeset
  2728
setModified 
155310ec83aa revised version
tz
parents: 382
diff changeset
  2729
508
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
  2730
    self topView application isModified: true.
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
  2731
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
  2732
    self topView application updateEnabledChannels
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2733
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2734
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2735
!MenuEditor::TreeView methodsFor:'selection'!
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2736
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2737
updateNode: aNode
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2738
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2739
    |name treeItem index|
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2740
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2741
    name := aNode label.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2742
    treeItem := listOfNodes detect: [:n| n contents = aNode] ifNone: [1].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2743
    index := self indexOfNode: treeItem.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2744
    treeItem name: name.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2745
    self redrawLine: index.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2746
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2747
441
b16598618359 release images after closing
tz
parents: 432
diff changeset
  2748
!MenuEditor::TreeView methodsFor:'startup / release'!
b16598618359 release images after closing
tz
parents: 432
diff changeset
  2749
b16598618359 release images after closing
tz
parents: 432
diff changeset
  2750
destroy
b16598618359 release images after closing
tz
parents: 432
diff changeset
  2751
    "destroy images"
b16598618359 release images after closing
tz
parents: 432
diff changeset
  2752
b16598618359 release images after closing
tz
parents: 432
diff changeset
  2753
    super destroy.
b16598618359 release images after closing
tz
parents: 432
diff changeset
  2754
b16598618359 release images after closing
tz
parents: 432
diff changeset
  2755
    Images := nil
b16598618359 release images after closing
tz
parents: 432
diff changeset
  2756
b16598618359 release images after closing
tz
parents: 432
diff changeset
  2757
b16598618359 release images after closing
tz
parents: 432
diff changeset
  2758
! !
b16598618359 release images after closing
tz
parents: 432
diff changeset
  2759
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2760
!MenuEditor class methodsFor:'documentation'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2761
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2762
version
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2763
    ^ '$Header$'
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2764
! !
406
a519e0d547f6 widgets rearranged for different fonts + comfortable menu load support
tz
parents: 398
diff changeset
  2765
MenuEditor initialize!