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