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