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