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