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