MenuEditor.st
author ca
Sat, 29 Aug 1998 17:58:49 +0200
changeset 973 59d86476798a
parent 971 f3b1476f5006
child 981 5b3b9588e57d
permissions -rw-r--r--
menu panel layout
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
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
    25
		startGroup argument translateLabel isButton isVisible choice
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
    26
		choiceValue'
220
ca
parents: 218
diff changeset
    27
	classVariableNames:''
ca
parents: 218
diff changeset
    28
	poolDictionaries:''
ca
parents: 218
diff changeset
    29
	privateIn:MenuEditor
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    30
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    31
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
    32
SelectionInTreeView subclass:#TreeView
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
    33
	instanceVariableNames:''
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
    34
	classVariableNames:''
220
ca
parents: 218
diff changeset
    35
	poolDictionaries:''
ca
parents: 218
diff changeset
    36
	privateIn:MenuEditor
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    37
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    38
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    39
!MenuEditor class methodsFor:'documentation'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    40
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    41
copyright
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    42
"
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
    43
 COPYRIGHT (c) 1997 by eXept Software AG
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    44
              All Rights Reserved
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    45
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    46
 This software is furnished under a license and may be used
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    47
 only in accordance with the terms of that license and with the
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
    48
 inclusion of the above copyright notice. This software may not
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    49
 be provided or otherwise made available to, or used by, any
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    50
 other person.  No title to or ownership of the software is
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    51
 hereby transferred.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    52
"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    53
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    54
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    55
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    56
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    57
documentation
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    58
"
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    59
    The MenuEditor allows you to create, modify or just inspect
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    60
    hierarchical menus of menu bars, popup menu, or tool bar menus.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    61
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    62
    [start with:]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    63
        MenuEditor open
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    64
        MenuEditor openOnClass:MenuEditor andSelector:#menu
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    65
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    66
    [see also:]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    67
        UIPainter
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    68
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    69
    [author:]
541
5dc124df04e2 author line in doc.
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
    70
        Claus Atzkern, eXept Software AG
5dc124df04e2 author line in doc.
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
    71
        Thomas Zwick, eXept Software AG
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    72
"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    73
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    74
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    75
508
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    76
!MenuEditor class methodsFor:'instance creation'!
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    77
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    78
openModalOnMenu: aMenu
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    79
    "Open a MenuEditor modal on aMenu"
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    80
    "self openModalOnMenu: (self perform: #menu) decodeAsLiteralArray"
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    81
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    82
    ^self new openModalOnMenu: aMenu
508
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    83
! !
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    84
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
    85
!MenuEditor class methodsFor:'accessing'!
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
    86
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    87
iconUnknown
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    88
    "returns an image used for picked items containing an image
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    89
    "
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    90
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    91
    <resource: #fileImage>
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    92
804
b66537045e04 reuse broken image bitmap
Claus Gittinger <cg@exept.de>
parents: 775
diff changeset
    93
    "/ ^ Image fromFile:'brokenImage.xpm'
b66537045e04 reuse broken image bitmap
Claus Gittinger <cg@exept.de>
parents: 775
diff changeset
    94
    ^ Icon constantNamed:'brokenImage.xpm'
b66537045e04 reuse broken image bitmap
Claus Gittinger <cg@exept.de>
parents: 775
diff changeset
    95
b66537045e04 reuse broken image bitmap
Claus Gittinger <cg@exept.de>
parents: 775
diff changeset
    96
    "Modified: / 22.4.1998 / 22:15:11 / ca"
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    97
!
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    98
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
    99
resourceType
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   100
    "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
   101
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   102
    ^#menu
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
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   109
!MenuEditor class methodsFor:'aspects'!
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   110
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   111
aspects
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   112
    "get the aspects for the attributes of the menu components"
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   113
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   114
    ^#(
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   115
        label
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   116
        accessCharacterPos
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   117
        argument
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   118
        submenuChannel
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   119
        enabled
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   120
        value
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   121
        nameKey
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   122
        indication
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   123
        choice
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   124
        choiceValue
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   125
        translateLabel
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   126
        isButton
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   127
        shortcutKey
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   128
        startGroup
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   129
        retriever
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   130
        iconAndLabel
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   131
        icon
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   132
        isVisible
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   133
     )
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   134
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   135
    "Modified: / 14.8.1998 / 14:46:36 / cg"
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   136
! !
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   137
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   138
!MenuEditor class methodsFor:'help specs'!
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   139
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   140
helpSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   141
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   142
     by the UIHelpTool of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   143
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   144
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   145
     the UIHelpTool may not be able to read the specification."
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   146
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   147
    "
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   148
     UIHelpTool openOnClass:MenuEditor    
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   149
    "
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   150
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   151
    <resource: #help>
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   152
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   153
    ^super helpSpec addPairsFrom:#(
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   154
548
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   155
#addMenuItem
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   156
'Adds a new menu item.'
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   157
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   158
#addMenuSeparator
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   159
'Adds a new menu separator.'
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   160
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   161
#addSubMenu
613
5bdf59b03e8e checkin from browser
tz
parents: 612
diff changeset
   162
'Adds a new sub menu.'
548
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   163
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   164
#addSubMenuLink
613
5bdf59b03e8e checkin from browser
tz
parents: 612
diff changeset
   165
'Adds a new linked sub menu.'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   166
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   167
#basicsAction
627
e28ca0319230 checkin from browser
tz
parents: 621
diff changeset
   168
'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
   169
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   170
#basicsArgument
613
5bdf59b03e8e checkin from browser
tz
parents: 612
diff changeset
   171
'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
   172
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   173
#basicsIndication
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   174
'A boolean holder, a boolean block, or a boolean method, specifying the indication state.'
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   175
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   176
#basicsChoice
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   177
'A boolean holder, a boolean block, or a boolean method, specifying the choices state.'
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   178
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   179
#basicsChoiceValue
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   180
'That choices value (typically number or symbol).'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   181
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   182
#basicsIsButton
603
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
   183
'Turns on/off a button behavior.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   184
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   185
#basicsLabel
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   186
'Label of the item.'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   187
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   188
#basicsKey
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   189
'Internal key of the item (optional, for programmed accesses).'
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   190
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   191
#basicsMenu
613
5bdf59b03e8e checkin from browser
tz
parents: 612
diff changeset
   192
'A value holder providing the sub menu to be opened if item is selected.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   193
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   194
#basicsMenuArgument
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   195
'An argument passed with the menu selector.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   196
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   197
#basicsNameKey
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   198
'Unique identifier of the item (optional).'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   199
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   200
#basicsSelector
613
5bdf59b03e8e checkin from browser
tz
parents: 612
diff changeset
   201
'Selector under which the generated menu spec is saved.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   202
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   203
#basicsSeparatorType
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   204
'List of valid separators.'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   205
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   206
#basicsTranslateLabel
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   207
'Translate the label via the classes resource file (internationalization).'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   208
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   209
#detailsAccelerator
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   210
'Key to be pressed to select the menu item from the keyboard (accelerator key).'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   211
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   212
#detailsAccessCharaterPosition
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   213
'Index of the access character position of the textual label (optional).'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   214
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   215
#detailsEnabled
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   216
'Aspect or binding providing a boolean value holder for the enable-state of the menu item.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   217
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   218
#detailsStartGroup
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   219
'Specify start of a right-aligned item group.'
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   220
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   221
#detailsVisibility
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   222
'Aspect or binding providing a boolean value holder for the visibility-state of the menu item.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   223
548
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   224
#fileLoad
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   225
'Opens a dialog to select and load a menu spec from a class.'
548
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   226
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   227
#fileNew
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   228
'Creates a new menu spec.'
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   229
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   230
#filePickAMenu
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
   231
'Select a menu from an open view and read its specification'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   232
548
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   233
#fileSave
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   234
'Saves the menu spec (and the help spec, if modified).'
455
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
   235
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   236
#fileSaveAs
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   237
'Opens a dialog to save the menu spec (and the help spec, if modified).'
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   238
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   239
#historyMenuItem
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   240
'Edit this menu specification.'
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   241
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   242
#imageImageAndLabel
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   243
'Toggles display of both image and textual label.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   244
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   245
#imageImageEditor
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   246
'Opens an Image Editor on the resource method defined by retriever and selector.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   247
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   248
#imageRetriever
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   249
'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
   250
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   251
#imageSelector
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   252
'Selector returning an image (sent to above or the application).'
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   253
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   254
#imageImageList
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   255
'Currently existing image resources.'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   256
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   257
#test
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   258
'Displays the current menu (layout test).'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   259
)
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
   260
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   261
    "Modified: / 18.8.1998 / 16:19:13 / cg"
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   262
! !
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   263
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   264
!MenuEditor class methodsFor:'image specs'!
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   265
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   266
linkSubmenuImage
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   267
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   268
     by the ImageEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   269
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   270
    "Do not manually edit this!!!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   271
     the ImageEditor may not be able to read the specification."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   272
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   273
    "
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   274
     ImageEditor openOnClass:self andSelector:#linkSubmenuImage
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   275
    "
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   276
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   277
    <resource: #image>
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   278
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   279
    ^Icon
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   280
        constantNamed:#'MenuEditor linkSubmenuImage'
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   281
        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
   282
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   283
menuItemImage
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   284
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   285
     by the ImageEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   286
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   287
    "Do not manually edit this!!!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   288
     the ImageEditor may not be able to read the specification."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   289
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   290
    "
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   291
     ImageEditor openOnClass:self andSelector:#menuItemImage
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   292
    "
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   293
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   294
    <resource: #image>
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   295
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   296
    ^Icon
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   297
        constantNamed:#'MenuEditor menuItemImage'
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   298
        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
   299
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   300
menuSeparatorImage
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   301
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   302
     by the ImageEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   303
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   304
    "Do not manually edit this!!!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   305
     the ImageEditor may not be able to read the specification."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   306
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   307
    "
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   308
     ImageEditor openOnClass:self andSelector:#menuSeparatorImage
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   309
    "
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   310
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   311
    <resource: #image>
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   312
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   313
    ^Icon
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   314
        constantNamed:#'MenuEditor menuSeparatorImage'
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   315
        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
   316
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   317
submenuImage
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   318
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   319
     by the ImageEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   320
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   321
    "Do not manually edit this!!!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   322
     the ImageEditor may not be able to read the specification."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   323
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   324
    "
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   325
     ImageEditor openOnClass:self andSelector:#submenuImage
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   326
    "
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   327
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   328
    <resource: #image>
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   329
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   330
    ^Icon
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   331
        constantNamed:#'MenuEditor submenuImage'
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   332
        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
   333
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   334
!MenuEditor class methodsFor:'interface specs'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   335
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   336
basicsItemSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   337
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   338
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   339
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   340
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   341
     the UIPainter may not be able to read the specification."
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   342
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   343
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   344
     UIPainter new openOnClass:MenuEditor andSelector:#basicsItemSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   345
     MenuEditor new openInterface:#basicsItemSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   346
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   347
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   348
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   349
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   350
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   351
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   352
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   353
          #window: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   354
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   355
              #name: 'Basics Item'
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   356
              #layout: #(#LayoutFrame 216 0 173 0 482 0 491 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   357
              #label: 'Basics Item'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   358
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   359
              #max: #(#Point 1160 870)
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   360
              #bounds: #(#Rectangle 216 173 483 492)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   361
              #usePreferredExtent: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   362
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   363
          #component: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   364
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   365
              #collection: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   366
               #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   367
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   368
                    #name: 'nameKeyLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   369
                    #layout: #(#AlignmentOrigin 107 0 26 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   370
                    #activeHelpKey: #basicsKey
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   371
                    #label: 'Name Key:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   372
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   373
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   374
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   375
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   376
                    #name: 'nameKeyField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   377
                    #layout: #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   378
                    #activeHelpKey: #basicsKey
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   379
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   380
                    #model: #nameKey
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   381
                    #group: #inputGroup
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   382
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   383
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   384
                    #acceptOnTab: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   385
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   386
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   387
                    #name: 'labelLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   388
                    #layout: #(#AlignmentOrigin 107 0 51 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   389
                    #activeHelpKey: #basicsLabel
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   390
                    #label: 'Label:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   391
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   392
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   393
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   394
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   395
                    #name: 'labelField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   396
                    #layout: #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   397
                    #activeHelpKey: #basicsLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   398
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   399
                    #model: #label
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   400
                    #group: #inputGroup
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   401
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   402
                    #acceptOnTab: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   403
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   404
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   405
                    #name: 'valueLabel'
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   406
                    #activeHelpKey: #basicsAction
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   407
                    #layout: #(#AlignmentOrigin 107 0 90 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   408
                    #label: 'Action:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   409
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   410
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   411
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   412
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   413
                    #name: 'valueField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   414
                    #layout: #(#LayoutFrame 110 0 79 0 -5 1.0 101 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   415
                    #activeHelpKey: #basicsAction
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   416
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   417
                    #model: #value
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   418
                    #group: #inputGroup
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   419
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   420
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   421
                    #acceptOnTab: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   422
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   423
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   424
                    #name: 'argumentLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   425
                    #layout: #(#AlignmentOrigin 107 0 115 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   426
                    #activeHelpKey: #basicsArgument
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   427
                    #label: 'Argument:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   428
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   429
                    #resizeForLabel: true
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   430
                )
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   431
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   432
                    #name: 'argumentField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   433
                    #layout: #(#LayoutFrame 110 0 104 0 -5 1.0 126 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   434
                    #activeHelpKey: #basicsArgument
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   435
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   436
                    #model: #argument
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   437
                    #group: #inputGroup
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   438
                    #type: #string
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   439
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   440
                    #acceptOnTab: false
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   441
                )
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   442
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   443
                    #name: 'indicationLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   444
                    #layout: #(#AlignmentOrigin 107 0 155 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   445
                    #activeHelpKey: #basicsIndication
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   446
                    #label: 'Indication:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   447
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   448
                    #resizeForLabel: true
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   449
                )
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   450
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   451
                    #name: 'indicationField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   452
                    #layout: #(#LayoutFrame 110 0 144 0 -5 1.0 166 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   453
                    #activeHelpKey: #basicsIndication
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   454
                    #enableChannel: #indicationEnabled
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   455
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   456
                    #model: #indication
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   457
                    #group: #inputGroup
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   458
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   459
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   460
                    #acceptOnTab: false
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   461
                )
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   462
                 #(#CheckBoxSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   463
                    #name: 'translateLabelCheckBox'
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   464
                    #layout: #(#Point 20 230)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   465
                    #activeHelpKey: #basicsTranslateLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   466
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   467
                    #model: #translateLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   468
                    #label: 'Translate Label'
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   469
                )
155310ec83aa revised version
tz
parents: 382
diff changeset
   470
                 #(#CheckBoxSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   471
                    #name: 'isButtonCheckBox'
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   472
                    #layout: #(#Point 20 259)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   473
                    #activeHelpKey: #basicsIsButton
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   474
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   475
                    #model: #isButton
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   476
                    #label: 'Is Button'
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   477
                )
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   478
                 #(#LabelSpec
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   479
                    #name: 'choiceLabel'
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   480
                    #layout: #(#AlignmentOrigin 107 0 180 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   481
                    #activeHelpKey: #basicsChoice
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   482
                    #label: 'Choice:'
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   483
                    #translateLabel: true
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   484
                    #adjust: #right
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   485
                    #resizeForLabel: true
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   486
                )
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   487
                 #(#InputFieldSpec
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   488
                    #name: 'choiceField'
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   489
                    #layout: #(#LayoutFrame 110 0 169 0 -5 1.0 191 0)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   490
                    #activeHelpKey: #basicsChoice
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   491
                    #enableChannel: #choiceEnabled
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   492
                    #tabable: true
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   493
                    #model: #choice
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   494
                    #group: #inputGroup
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   495
                    #type: #symbolOrNil
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   496
                    #acceptOnReturn: false
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   497
                    #acceptOnTab: false
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   498
                )
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   499
                 #(#LabelSpec
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   500
                    #name: 'choiceValueLabel'
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   501
                    #activeHelpKey: #basicsChoiceValue
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   502
                    #layout: #(#AlignmentOrigin 107 0 205 0 1 0.5)
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   503
                    #label: 'Value:'
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   504
                    #translateLabel: true
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   505
                    #adjust: #right
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   506
                    #resizeForLabel: true
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   507
                )
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   508
                 #(#InputFieldSpec
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   509
                    #name: 'choiceValueField'
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   510
                    #layout: #(#LayoutFrame 110 0 194 0 -5 1.0 216 0)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   511
                    #activeHelpKey: #basicsChoiceValue
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   512
                    #enableChannel: #choiceValueEnabled
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   513
                    #tabable: true
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   514
                    #model: #choiceValue
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   515
                    #group: #inputGroup
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   516
                    #type: #smalltalkObject
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   517
                    #acceptOnReturn: true
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   518
                    #acceptOnTab: true
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   519
                    #acceptOnLeave: true
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   520
                    #acceptOnLostFocus: true
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   521
                    #immediateAccept: false
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   522
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   523
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   524
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   525
      )
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   526
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   527
    "Modified: / 18.8.1998 / 16:20:26 / cg"
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   528
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   529
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   530
basicsLinkSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   531
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   532
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   533
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   534
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   535
     the UIPainter may not be able to read the specification."
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   536
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   537
    "
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   538
     UIPainter new openOnClass:MenuEditor andSelector:#basicsLinkSpec
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   539
     MenuEditor new openInterface:#basicsLinkSpec
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   540
    "
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   541
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   542
    <resource: #canvas>
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   543
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   544
    ^
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   545
     
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   546
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   547
          #window: 
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   548
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   549
              #name: 'Basics Link'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   550
              #layout: #(#LayoutFrame 473 0 301 0 739 0 619 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   551
              #label: 'Basics Link'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   552
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   553
              #max: #(#Point 1280 1024)
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   554
              #bounds: #(#Rectangle 473 301 740 620)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   555
              #usePreferredExtent: false
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   556
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   557
          #component: 
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   558
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   559
              #collection: 
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   560
               #(
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   561
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   562
                    #name: 'nameKeyLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   563
                    #layout: #(#AlignmentOrigin 107 0 26 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   564
                    #activeHelpKey: #nameKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   565
                    #label: 'Name Key:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   566
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   567
                    #resizeForLabel: true
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   568
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   569
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   570
                    #name: 'nameKeyField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   571
                    #layout: #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   572
                    #activeHelpKey: #basicsNameKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   573
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   574
                    #model: #nameKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   575
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   576
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   577
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   578
                    #group: #inputGroup
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   579
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   580
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   581
                    #name: 'labelLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   582
                    #layout: #(#AlignmentOrigin 107 0 51 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   583
                    #label: 'Label:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   584
                    #resizeForLabel: true
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   585
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   586
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   587
                    #name: 'labelField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   588
                    #layout: #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   589
                    #activeHelpKey: #basicsLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   590
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   591
                    #model: #label
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   592
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   593
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   594
                    #group: #inputGroup
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   595
                )
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   596
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   597
                    #name: 'menuLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   598
                    #layout: #(#AlignmentOrigin 107 0 76 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   599
                    #label: 'Menu:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   600
                    #resizeForLabel: true
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   601
                )
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   602
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   603
                    #name: 'menuField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   604
                    #layout: #(#LayoutFrame 110 0 65 0 -5 1.0 87 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   605
                    #activeHelpKey: #basicsMenu
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   606
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   607
                    #model: #submenuChannel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   608
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   609
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   610
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   611
                    #group: #inputGroup
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   612
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   613
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   614
                    #name: 'ArgumentLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   615
                    #layout: #(#AlignmentOrigin 107 0 100 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   616
                    #label: 'Argument:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   617
                    #resizeForLabel: true
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   618
                )
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   619
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   620
                    #name: 'argumentField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   621
                    #layout: #(#LayoutFrame 110 0 90 0 -5 1.0 112 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   622
                    #activeHelpKey: #basicsMenuArgument
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   623
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   624
                    #model: #argument
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   625
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   626
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   627
                    #group: #inputGroup
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   628
                )
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   629
                 #(#CheckBoxSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   630
                    #name: 'translateLabelCheckBox'
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   631
                    #layout: #(#Point 20 190)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   632
                    #activeHelpKey: #basicsTranslateLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   633
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   634
                    #model: #translateLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   635
                    #label: 'Translate Label'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   636
                )
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   637
              )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   638
          )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   639
      )
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   640
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   641
    "Modified: / 31.7.1998 / 01:18:16 / cg"
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   642
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   643
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   644
basicsMenuSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   645
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   646
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   647
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   648
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   649
     the UIPainter may not be able to read the specification."
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   650
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   651
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   652
     UIPainter new openOnClass:MenuEditor andSelector:#basicsMenuSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   653
     MenuEditor new openInterface:#basicsMenuSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   654
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   655
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   656
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   657
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   658
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   659
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   660
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   661
          #window: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   662
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   663
              #name: 'Basics Menu'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   664
              #layout: #(#LayoutFrame 473 0 301 0 739 0 619 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   665
              #label: 'Basics Menu'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   666
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   667
              #max: #(#Point 1280 1024)
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   668
              #bounds: #(#Rectangle 473 301 740 620)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   669
              #usePreferredExtent: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   670
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   671
          #component: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   672
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   673
              #collection: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   674
               #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   675
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   676
                    #name: 'nameKeyLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   677
                    #layout: #(#AlignmentOrigin 107 0 26 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   678
                    #label: 'Name Key:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   679
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   680
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   681
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   682
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   683
                    #name: 'nameKeyField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   684
                    #layout: #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   685
                    #activeHelpKey: #basicsNameKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   686
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   687
                    #model: #nameKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   688
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   689
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   690
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   691
                    #group: #inputGroup
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   692
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   693
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   694
                    #name: 'labelLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   695
                    #layout: #(#AlignmentOrigin 107 0 51 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   696
                    #label: 'Label:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   697
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   698
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   699
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   700
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   701
                    #name: 'labelField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   702
                    #layout: #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   703
                    #activeHelpKey: #basicsLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   704
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   705
                    #model: #label
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   706
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   707
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   708
                    #group: #inputGroup
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   709
                )
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   710
                 #(#CheckBoxSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   711
                    #name: 'translateLabelCheckBox'
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   712
                    #layout: #(#Point 20 190)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   713
                    #activeHelpKey: #basicsTranslateLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   714
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   715
                    #model: #translateLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   716
                    #label: 'Translate Label'
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   717
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   718
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   719
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   720
      )
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   721
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   722
    "Modified: / 31.7.1998 / 01:18:23 / cg"
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   723
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   724
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   725
basicsRootSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   726
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   727
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   728
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   729
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   730
     the UIPainter may not be able to read the specification."
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   731
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   732
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   733
     UIPainter new openOnClass:MenuEditor andSelector:#basicsRootSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   734
     MenuEditor new openInterface:#basicsRootSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   735
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   736
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   737
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   738
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   739
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   740
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   741
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   742
          #window: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   743
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   744
              #name: 'Basics Root'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   745
              #layout: #(#LayoutFrame 473 0 301 0 739 0 619 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   746
              #label: 'Basics Root'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   747
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   748
              #max: #(#Point 1280 1024)
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   749
              #bounds: #(#Rectangle 473 301 740 620)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   750
              #usePreferredExtent: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   751
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   752
          #component: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   753
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   754
              #collection: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   755
               #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   756
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   757
                    #name: 'selectorLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   758
                    #layout: #(#AlignmentOrigin 107 0 26 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   759
                    #label: 'Selector:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   760
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   761
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   762
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   763
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   764
                    #name: 'selectorField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   765
                    #layout: #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   766
                    #activeHelpKey: #basicsSelector
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   767
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   768
                    #model: #label
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   769
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   770
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   771
                    #group: #inputGroup
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   772
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   773
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   774
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   775
      )
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   776
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   777
    "Modified: / 31.7.1998 / 01:18:28 / cg"
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   778
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   779
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   780
basicsSeparatorSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   781
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   782
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   783
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   784
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   785
     the UIPainter may not be able to read the specification."
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   786
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   787
    "
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   788
     UIPainter new openOnClass:MenuEditor andSelector:#basicsSeparatorSpec
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   789
     MenuEditor new openInterface:#basicsSeparatorSpec
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   790
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   791
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   792
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   793
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   794
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   795
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   796
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   797
          #window: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   798
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   799
              #name: 'Basics Separator'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   800
              #layout: #(#LayoutFrame 473 0 301 0 739 0 619 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   801
              #label: 'Basics Separator'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   802
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   803
              #max: #(#Point 1160 870)
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   804
              #bounds: #(#Rectangle 473 301 740 620)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   805
              #usePreferredExtent: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   806
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   807
          #component: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   808
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   809
              #collection: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   810
               #(
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   811
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   812
                    #name: 'separatorLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   813
                    #layout: #(#AlignmentOrigin 127 0 26 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   814
                    #label: 'Separator Type:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   815
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   816
                    #resizeForLabel: true
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   817
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   818
                 #(#ComboListSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   819
                    #name: 'seperatorList'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   820
                    #layout: #(#LayoutFrame 132 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   821
                    #activeHelpKey: #basicsSeparatorType
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   822
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   823
                    #model: #seperatorSelection
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   824
                    #useIndex: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   825
                )
606
ca
parents: 603
diff changeset
   826
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   827
                    #name: 'visibilityLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   828
                    #layout: #(#AlignmentOrigin 127 0 76 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   829
                    #label: 'Visibility:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   830
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   831
                    #resizeForLabel: true
606
ca
parents: 603
diff changeset
   832
                )
ca
parents: 603
diff changeset
   833
                 #(#InputFieldSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   834
                    #name: 'visibilityInputField'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   835
                    #layout: #(#LayoutFrame 132 0 65 0 -5 1.0 87 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   836
                    #activeHelpKey: #detailsVisibility
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   837
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   838
                    #model: #isVisible
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   839
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   840
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   841
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   842
                    #group: #inputGroup
606
ca
parents: 603
diff changeset
   843
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   844
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   845
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   846
      )
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   847
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   848
    "Modified: / 31.7.1998 / 01:18:32 / cg"
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   849
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   850
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   851
detailsEditSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   852
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   853
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   854
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   855
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   856
     the UIPainter may not be able to read the specification."
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   857
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   858
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   859
     UIPainter new openOnClass:MenuEditor andSelector:#detailsEditSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   860
     MenuEditor new openInterface:#detailsEditSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   861
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   862
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   863
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   864
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   865
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   866
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   867
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   868
          #window: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   869
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   870
              #name: 'Details Edit'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   871
              #layout: #(#LayoutFrame 332 0 374 0 590 0 661 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   872
              #label: 'Details Edit'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   873
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   874
              #max: #(#Point 1280 1024)
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   875
              #bounds: #(#Rectangle 332 374 591 662)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   876
              #usePreferredExtent: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   877
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   878
          #component: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   879
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   880
              #collection: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   881
               #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   882
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   883
                    #name: 'shortcutKeyLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   884
                    #layout: #(#AlignmentOrigin 107 0 26 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   885
                    #activeHelpKey: #detailsAccelerator
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   886
                    #label: 'Accelerator:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   887
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   888
                    #resizeForLabel: true
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   889
                )
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   890
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   891
                    #name: 'shortcutKeyField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   892
                    #layout: #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   893
                    #activeHelpKey: #detailsAccelerator
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   894
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   895
                    #model: #shortcutKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   896
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   897
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   898
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   899
                    #group: #inputGroup
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   900
                )
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   901
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   902
                    #name: 'enabledLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   903
                    #layout: #(#AlignmentOrigin 107 0 51 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   904
                    #activeHelpKey: #detailsEnabled
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   905
                    #label: 'Enabled:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   906
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   907
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   908
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   909
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   910
                    #name: 'enabledField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   911
                    #layout: #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   912
                    #activeHelpKey: #detailsEnabled
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   913
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   914
                    #model: #enabled
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   915
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   916
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   917
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   918
                    #group: #inputGroup
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   919
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   920
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   921
                    #name: 'visibilityLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   922
                    #layout: #(#AlignmentOrigin 107 0 76 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   923
                    #activeHelpKey: #detailsVisibility
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   924
                    #label: 'Visibility:'
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: 'isVisibleInputField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   930
                    #layout: #(#LayoutFrame 110 0 65 0 -5 1.0 87 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   931
                    #activeHelpKey: #detailsVisibility
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   932
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   933
                    #model: #isVisible
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
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   937
                    #group: #inputGroup
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   938
                )
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
   939
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   940
                    #name: 'StartGroupLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   941
                    #layout: #(#AlignmentOrigin 107 0 111 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   942
                    #activeHelpKey: #detailsStartGroup
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   943
                    #label: 'Start Group:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   944
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   945
                    #resizeForLabel: true
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
   946
                )
de091386bbae add new feature:
ca
parents: 525
diff changeset
   947
                 #(#PopUpListSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   948
                    #name: 'StartGroupPopUp'
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   949
                    #activeHelpKey: #detailsStartGroup
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   950
                    #layout: #(#LayoutFrame 110 0 100 0 -5 1.0 122 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   951
                    #label: 'PopUpList'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   952
                    #tabable: true
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   953
                    #model: #startGroup
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   954
                    #menu: 
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
   955
                     #(nil
de091386bbae add new feature:
ca
parents: 525
diff changeset
   956
                        #right
de091386bbae add new feature:
ca
parents: 525
diff changeset
   957
                    )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   958
                    #useIndex: false
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
   959
                )
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   960
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   961
                    #name: 'accessCharLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   962
                    #layout: #(#AlignmentOrigin 217 0 142 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   963
                    #activeHelpKey: #detailsAccessCharaterPosition
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   964
                    #label: 'Access Character Position:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   965
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   966
                    #resizeForLabel: true
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   967
                )
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   968
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   969
                    #name: 'accessCharField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   970
                    #layout: #(#LayoutFrame 220 0 131 0 -5 1.0 153 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   971
                    #activeHelpKey: #detailsAccessCharaterPosition
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   972
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   973
                    #model: #accessCharacterPos
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   974
                    #type: #numberOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   975
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   976
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   977
                    #group: #inputGroup
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   978
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   979
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   980
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   981
      )
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   982
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   983
    "Modified: / 18.8.1998 / 16:16:46 / cg"
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   984
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   985
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   986
imageEditSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   987
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   988
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   989
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   990
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   991
     the UIPainter may not be able to read the specification."
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   992
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   993
    "
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   994
     UIPainter new openOnClass:MenuEditor andSelector:#imageEditSpec
155310ec83aa revised version
tz
parents: 382
diff changeset
   995
     MenuEditor new openInterface:#imageEditSpec
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   996
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   997
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   998
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   999
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1000
    ^
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1001
     
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1002
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1003
          #window: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1004
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  1005
              #name: 'Image Item'
888
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1006
              #layout: #(#LayoutFrame 182 0 348 0 577 0 624 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  1007
              #label: 'Image Item'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1008
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1009
              #max: #(#Point 1280 1024)
888
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1010
              #bounds: #(#Rectangle 182 348 578 625)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1011
              #usePreferredExtent: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1012
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1013
          #component: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1014
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1015
              #collection: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1016
               #(
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1017
                 #(#CheckBoxSpec
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1018
                    #name: 'iconAndLabelCheckBox'
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1019
                    #layout: #(#LayoutOrigin 20 0 215 0)
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1020
                    #activeHelpKey: #imageImageAndLabel
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1021
                    #tabable: true
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1022
                    #model: #iconAndLabel
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1023
                    #label: 'Image & Label'
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1024
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1025
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1026
                    #name: 'retrieverLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1027
                    #layout: #(#AlignmentOrigin 107 0 26 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  1028
                    #activeHelpKey: #imageRetriever
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1029
                    #label: 'Retriever:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1030
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1031
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1032
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1033
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1034
                    #name: 'retrieverField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1035
                    #layout: #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1036
                    #activeHelpKey: #imageRetriever
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1037
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1038
                    #model: #retriever
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1039
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1040
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1041
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
  1042
                    #group: #inputGroup
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1043
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1044
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1045
                    #name: 'iconLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1046
                    #layout: #(#AlignmentOrigin 107 0 51 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  1047
                    #activeHelpKey: #imageSelector
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1048
                    #label: 'Selector:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1049
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1050
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1051
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1052
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1053
                    #name: 'iconField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1054
                    #layout: #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1055
                    #activeHelpKey: #imageSelector
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1056
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1057
                    #model: #icon
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1058
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1059
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1060
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
  1061
                    #group: #inputGroup
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1062
                )
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
  1063
                 #(#ActionButtonSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1064
                    #name: 'imageEditorButton'
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1065
                    #layout: #(#LayoutFrame 5 0.6 67 0 -5 1 91 0)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1066
                    #activeHelpKey: #imageImageEditor
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1067
                    #label: 'Image Editor'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1068
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1069
                    #model: #doEditImage
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
  1070
                )
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1071
                 #(#SequenceViewSpec
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1072
                    #name: 'systemOrUserImagesList'
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  1073
                    #activeHelpKey: #imageImageList
888
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1074
                    #layout: #(#LayoutFrame 110 0 67 0 0 0.6 200 0)
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1075
                    #model: #selectionOfImage
888
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1076
                    #menu: #menuEditImage
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1077
                    #hasHorizontalScrollBar: true
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1078
                    #hasVerticalScrollBar: true
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1079
                    #miniScrollerHorizontal: true
885
34cefb1e6dda double clicking opens an Image Editor
tz
parents: 882
diff changeset
  1080
                    #doubleClickSelector: #doEditImage
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1081
                    #valueChangeSelector: #imageSelected
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1082
                    #useIndex: false
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1083
                    #sequenceList: #listOfImages
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1084
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1085
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1086
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1087
      )
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
  1088
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  1089
    "Modified: / 18.8.1998 / 16:17:59 / cg"
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1090
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1091
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1092
windowSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1093
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1094
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1095
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1096
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1097
     the UIPainter may not be able to read the specification."
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1098
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1099
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1100
     UIPainter new openOnClass:MenuEditor andSelector:#windowSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1101
     MenuEditor new openInterface:#windowSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1102
     MenuEditor open
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
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1105
    <resource: #canvas>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1106
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1107
    ^
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1108
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1109
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1110
          #window: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1111
           #(#WindowSpec
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1112
              #name: 'Menu Editor'
955
f4f7d2ebd3ce resize window (window spec)
ca
parents: 953
diff changeset
  1113
              #layout: #(#LayoutFrame 53 0 403 0 609 0 810 0)
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1114
              #label: 'Menu Editor'
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1115
              #min: #(#Point 510 390)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1116
              #max: #(#Point 1152 900)
955
f4f7d2ebd3ce resize window (window spec)
ca
parents: 953
diff changeset
  1117
              #bounds: #(#Rectangle 53 403 610 811)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1118
              #menu: #menu
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1119
              #usePreferredExtent: false
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1120
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1121
          #component: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1122
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1123
              #collection: 
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
                 #(#MenuPanelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1126
                    #name: 'menuToolbarView'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1127
                    #layout: #(#LayoutFrame 0 0.0 0 0 0 1.0 32 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1128
                    #menu: #menuToolbar
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1129
                    #showSeparatingLines: true
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1130
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1131
                 #(#VariableHorizontalPanelSpec
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1132
                    #name: 'VariableHorizontalPanel'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1133
                    #layout: #(#LayoutFrame 0 0.0 34 0.0 0 1.0 -26 1.0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1134
                    #component: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1135
                     #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1136
                        #collection: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1137
                         #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1138
                           #(#ArbitraryComponentSpec
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1139
                              #name: 'TreeView'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1140
                              #menu: #menuEdit
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1141
                              #hasHorizontalScrollBar: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1142
                              #hasVerticalScrollBar: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1143
                              #component: #treeView
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1144
                              #hasBorder: false
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1145
                          )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1146
                           #(#ViewSpec
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1147
                              #name: 'Box'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1148
                              #component: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1149
                               #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1150
                                  #collection: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1151
                                   #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1152
                                     #(#NoteBookViewSpec
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1153
                                        #name: 'NoteBook'
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1154
                                        #layout: #(#LayoutFrame 1 0.0 0 0.0 1 1.0 -30 1.0)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1155
                                        #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1156
                                        #model: #tabModel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1157
                                        #menu: #tabList
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1158
                                        #useIndex: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1159
                                        #canvas: #noteBookView
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1160
                                    )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1161
                                     #(#UISubSpecification
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1162
                                        #name: 'SubSpecification'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1163
                                        #layout: #(#LayoutFrame 2 0.0 -26 1 -2 1.0 -2 1.0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1164
                                        #majorKey: #ToolApplicationModel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1165
                                        #minorKey: #windowSpecForCommit
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1166
                                    )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1167
                                  )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1168
                              )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1169
                              #level: -1
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1170
                          )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1171
                        )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1172
                    )
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1173
                    #handles: #(#Any 0.30117 1.0)
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1174
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1175
                 #(#UISubSpecification
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1176
                    #name: 'InfoBarSubSpec'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1177
                    #layout: #(#LayoutFrame 0 0.0 -24 1 0 1.0 0 1.0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1178
                    #majorKey: #ToolApplicationModel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1179
                    #minorKey: #windowSpecForInfoBar
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1180
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1181
              )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1182
          )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1183
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1184
! !
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1185
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1186
!MenuEditor class methodsFor:'menu specs'!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1187
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1188
menu
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1189
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1190
     by the MenuEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1191
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1192
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1193
     the MenuEditor may not be able to read the specification."
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1194
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1195
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1196
     MenuEditor new openOnClass:MenuEditor andSelector:#menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1197
     (Menu new fromLiteralArrayEncoding:(MenuEditor menu)) startUp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1198
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1199
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1200
    <resource: #menu>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1201
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1202
    ^
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1203
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1204
       #(#Menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1205
          
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1206
           #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1207
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1208
                #label: 'About'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1209
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1210
                #accessCharacterPosition: 1
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1211
                #labelImage: #(#ResourceRetriever nil #menuIcon)
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1212
                #submenuChannel: #menuAbout
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1213
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1214
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1215
                #label: 'File'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1216
                #activeHelpKey: #file
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1217
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1218
                #submenu: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1219
                 #(#Menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1220
                    
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1221
                     #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1222
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1223
                          #label: 'New'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1224
                          #value: #doNew
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1225
                          #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1226
                          #activeHelpKey: #fileNew
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1227
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1228
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1229
                          #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1230
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1231
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1232
                          #label: 'Load...'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1233
                          #translateLabel: true
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1234
                          #value: #doLoad
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1235
                          #activeHelpKey: #fileLoad
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1236
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1237
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1238
                          #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1239
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1240
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1241
                          #label: 'Save'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1242
                          #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1243
                          #value: #doSave
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1244
                          #activeHelpKey: #fileSave
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1245
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1246
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1247
                          #label: 'Save As...'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1248
                          #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1249
                          #value: #doSaveAs
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1250
                          #activeHelpKey: #fileSaveAs
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  1251
                      )
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  1252
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1253
                          #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1254
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1255
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1256
                          #label: 'Pick A Menu...'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1257
                          #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1258
                          #value: #doPickAMenu
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1259
                          #activeHelpKey: #filePickAMenu
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1260
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1261
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1262
                          #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1263
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1264
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1265
                          #label: 'Browse Class'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1266
                          #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1267
                          #value: #doBrowseClass
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1268
                          #activeHelpKey: #fileBrowseClass
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1269
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1270
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1271
                          #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1272
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1273
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1274
                          #label: 'Exit'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1275
                          #translateLabel: true
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1276
                          #value: #closeRequest
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1277
                          #activeHelpKey: #fileExit
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1278
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1279
                    ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1280
                    nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1281
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1282
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1283
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1284
                #label: 'Edit'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1285
                #activeHelpKey: #edit
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1286
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1287
                #submenuChannel: #menuEdit
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
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1290
                #label: 'Add'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1291
                #activeHelpKey: #add
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1292
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1293
                #submenuChannel: #menuAdd
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1294
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1295
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1296
                #label: 'Test'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1297
                #activeHelpKey: #test
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1298
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1299
                #submenuChannel: #submenuTest
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
             #(#MenuItem
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1302
                #label: 'Settings'
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1303
                #submenu: 
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1304
                 #(#Menu
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1305
                    
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1306
                     #(
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1307
                       #(#MenuItem
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1308
                          #label: 'Fonts'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1309
                          #translateLabel: true
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1310
                          #submenuChannel: #menuFont
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1311
                      )
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1312
                    ) nil
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1313
                    nil
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1314
                )
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1315
            )
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1316
             #(#MenuItem
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1317
                #label: 'History'
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1318
                #activeHelpKey: #history
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1319
                #translateLabel: true
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1320
                #submenuChannel: #menuHistory
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1321
            )
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1322
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1323
                #label: 'Help'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1324
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1325
                #startGroup: #right
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1326
                #submenu: 
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1327
                 #(#Menu
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1328
                    
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1329
                     #(
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1330
                       #(#MenuItem
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1331
                          #label: 'Documentation'
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1332
                          #value: #openHTMLDocument:
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1333
                          #translateLabel: true
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1334
                          #activeHelpKey: #helpTutorial
764
5722b94330ef docu call
tz
parents: 748
diff changeset
  1335
                          #argument: 'tools/uipainter/MenuEditor.html'
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1336
                      )
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1337
                       #(#MenuItem
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1338
                          #label: '-'
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1339
                      )
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1340
                       #(#MenuItem
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1341
                          #label: 'Help Tool'
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1342
                          #value: #openHTMLDocument:
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1343
                          #translateLabel: true
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1344
                          #activeHelpKey: #helpHelpTool
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1345
                          #argument: 'tools/uipainter/HelpTool.html'
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1346
                      )
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1347
                       #(#MenuItem
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1348
                          #label: '-'
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1349
                      )
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1350
                       #(#MenuItem
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1351
                          #label: 'Show Help Texts'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1352
                          #translateLabel: true
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1353
                          #activeHelpKey: #helpShowHelp
936
f3db8359547a method rename: #showHelp -> #showingHelp
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  1354
                          #indication: #showingHelp:
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1355
                      )
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1356
                    ) nil
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1357
                    nil
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1358
                )
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1359
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1360
          ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1361
          nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1362
      )
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1363
936
f3db8359547a method rename: #showHelp -> #showingHelp
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  1364
    "Modified: / 31.7.1998 / 18:19:47 / cg"
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1365
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1366
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1367
menuAdd
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1368
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1369
     by the MenuEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1370
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1371
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1372
     the MenuEditor may not be able to read the specification."
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1373
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1374
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1375
     MenuEditor new openOnClass:MenuEditor andSelector:#menuAdd
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1376
     (Menu new fromLiteralArrayEncoding:(MenuEditor menuAdd)) startUp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1377
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1378
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1379
    <resource: #menu>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1380
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1381
    ^
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1382
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1383
       #(#Menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1384
          
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1385
           #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1386
             #(#MenuItem
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1387
                #label: 'Menu Item'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1388
                #translateLabel: true
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1389
                #value: #doCreateItem
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1390
                #activeHelpKey: #addMenuItem
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1391
                #labelImage: #(#ResourceRetriever #MenuEditor #menuItemImage 'Menu Item')
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1392
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1393
             #(#MenuItem
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1394
                #label: 'Menu Separator'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1395
                #translateLabel: true
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1396
                #value: #doCreateSep
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1397
                #activeHelpKey: #addMenuSeparator
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1398
                #labelImage: #(#ResourceRetriever #MenuEditor #menuSeparatorImage 'Menu Separator')
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1399
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1400
             #(#MenuItem
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1401
                #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1402
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1403
             #(#MenuItem
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1404
                #label: 'Submenu'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1405
                #translateLabel: true
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1406
                #value: #doCreateMenu
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1407
                #activeHelpKey: #addSubMenu
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1408
                #labelImage: #(#ResourceRetriever #MenuEditor #submenuImage 'Submenu')
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1409
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1410
             #(#MenuItem
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1411
                #label: 'Submenu Link'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1412
                #translateLabel: true
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1413
                #value: #doCreateLink
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1414
                #activeHelpKey: #addSubMenuLink
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1415
                #labelImage: #(#ResourceRetriever #MenuEditor #linkSubmenuImage 'Submenu Link')
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1416
            )
968
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1417
             #(#MenuItem
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1418
                #label: '-'
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1419
            )
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1420
             #(#MenuItem
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1421
                #label: 'Standard Submenu'
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1422
                #translateLabel: true
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1423
                #submenu: 
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1424
                 #(#Menu
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1425
                    
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1426
                     #(
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1427
                       #(#MenuItem
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1428
                          #label: 'Standard File Menu'
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1429
                          #translateLabel: true
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1430
                          #value: #doCreateStandardFileMenu
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1431
                      )
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1432
                       #(#MenuItem
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1433
                          #label: 'Standard Edit Menu'
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1434
                          #translateLabel: true
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1435
                          #value: #doCreateStandardEditMenu
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1436
                      )
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1437
                       #(#MenuItem
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1438
                          #label: 'Standard Help Menu'
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1439
                          #translateLabel: true
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1440
                          #value: #doCreateStandardHelpMenu
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1441
                      )
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1442
                    ) nil
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1443
                    nil
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1444
                )
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1445
            )
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1446
          ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1447
          nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1448
      )
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1449
968
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  1450
    "Modified: / 23.8.1998 / 15:48:21 / cg"
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1451
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1452
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1453
menuDefaultLink
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1454
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1455
     by the MenuEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1456
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1457
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1458
     the MenuEditor may not be able to read the specification."
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1459
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1460
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1461
     MenuEditor new openOnClass:MenuEditor andSelector:#menuDefaultLink
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1462
     (Menu new fromLiteralArrayEncoding:(MenuEditor menuDefaultLink)) startUp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1463
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1464
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1465
    <resource: #menu>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1466
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1467
    ^
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1468
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1469
       #(#Menu
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1470
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1471
           #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1472
             #(#MenuItem
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1473
                #'label:' '!!!! derives from application !!!!'
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
          ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1476
          nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1477
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1478
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1479
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1480
menuEdit
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1481
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1482
     by the MenuEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1483
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1484
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1485
     the MenuEditor may not be able to read the specification."
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1486
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1487
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1488
     MenuEditor new openOnClass:MenuEditor andSelector:#menuEdit
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1489
     (Menu new fromLiteralArrayEncoding:(MenuEditor menuEdit)) startUp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1490
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1491
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1492
    <resource: #menu>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1493
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1494
    ^
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1495
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1496
       #(#Menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1497
          
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1498
           #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1499
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1500
                #label: 'Cut'
882
d06b7fd56f47 images moved to class Icon
tz
parents: 879
diff changeset
  1501
                #translateLabel: true
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1502
                #value: #doCut
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1503
                #activeHelpKey: #editCut
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1504
                #enabled: #hasValidSelection
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1505
                #shortcutKeyCharacter: #Cut
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1506
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1507
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1508
                #label: 'Copy'
882
d06b7fd56f47 images moved to class Icon
tz
parents: 879
diff changeset
  1509
                #translateLabel: true
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1510
                #value: #doCopy
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1511
                #activeHelpKey: #editCopy
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1512
                #enabled: #hasValidSelection
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1513
                #shortcutKeyCharacter: #Copy
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1514
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1515
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1516
                #label: 'Paste'
882
d06b7fd56f47 images moved to class Icon
tz
parents: 879
diff changeset
  1517
                #translateLabel: true
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1518
                #value: #doPaste
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1519
                #activeHelpKey: #editPaste
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1520
                #enabled: #valueOfCanPaste
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1521
                #shortcutKeyCharacter: #Paste
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1522
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1523
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1524
                #label: 'Delete'
882
d06b7fd56f47 images moved to class Icon
tz
parents: 879
diff changeset
  1525
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1526
                #value: #doDelete
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1527
                #activeHelpKey: #editDelete
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1528
                #enabled: #hasValidSelection
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1529
                #shortcutKeyCharacter: #Delete
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1530
            )
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1531
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1532
                #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1533
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1534
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1535
                #label: 'Move Up'
882
d06b7fd56f47 images moved to class Icon
tz
parents: 879
diff changeset
  1536
                #translateLabel: true
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1537
                #value: #doStepUp
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1538
                #activeHelpKey: #editMoveUp
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1539
                #enabled: #valueOfEnableMovingUpOrDown
882
d06b7fd56f47 images moved to class Icon
tz
parents: 879
diff changeset
  1540
                #labelImage: #(#ResourceRetriever #Icon #upIcon 'Move Up')
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1541
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1542
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1543
                #label: 'Move Down'
882
d06b7fd56f47 images moved to class Icon
tz
parents: 879
diff changeset
  1544
                #translateLabel: true
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1545
                #value: #doStepDown
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1546
                #activeHelpKey: #editMoveDown
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1547
                #enabled: #valueOfEnableMovingUpOrDown
882
d06b7fd56f47 images moved to class Icon
tz
parents: 879
diff changeset
  1548
                #labelImage: #(#ResourceRetriever #Icon #downIcon 'Move Down')
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1549
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1550
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1551
                #label: 'Move In'
882
d06b7fd56f47 images moved to class Icon
tz
parents: 879
diff changeset
  1552
                #translateLabel: true
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1553
                #value: #doStepIn
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1554
                #activeHelpKey: #editMoveIn
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1555
                #enabled: #valueOfEnableMovingIn
882
d06b7fd56f47 images moved to class Icon
tz
parents: 879
diff changeset
  1556
                #labelImage: #(#ResourceRetriever #Icon #downRightIcon 'Move In')
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1557
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1558
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1559
                #label: 'Move Out'
882
d06b7fd56f47 images moved to class Icon
tz
parents: 879
diff changeset
  1560
                #translateLabel: true
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1561
                #value: #doStepOut
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1562
                #activeHelpKey: #editMoveOut
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1563
                #enabled: #valueOfEnableMovingOut
882
d06b7fd56f47 images moved to class Icon
tz
parents: 879
diff changeset
  1564
                #labelImage: #(#ResourceRetriever #Icon #leftDownIcon 'Move Out')
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1565
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1566
          ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1567
          nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1568
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1569
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1570
888
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1571
menuEditImage
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1572
    "This resource specification was automatically generated
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1573
     by the MenuEditor of ST/X."
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1574
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1575
    "Do not manually edit this!! If it is corrupted,
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1576
     the MenuEditor may not be able to read the specification."
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1577
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1578
    "
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1579
     MenuEditor new openOnClass:MenuEditor andSelector:#menuEditImage
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1580
     (Menu new fromLiteralArrayEncoding:(MenuEditor menuEditImage)) startUp
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1581
    "
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1582
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1583
    <resource: #menu>
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1584
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1585
    ^
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1586
     
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1587
       #(#Menu
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1588
          
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1589
           #(
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1590
             #(#MenuItem
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1591
                #label: 'Edit'
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1592
                #translateLabel: true
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1593
                #value: #doEditImage
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1594
                #activeHelpKey: #editCut
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1595
                #enabled: #hasValidSelection
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1596
                #shortcutKeyCharacter: #Cut
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1597
            )
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1598
             #(#MenuItem
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1599
                #label: 'Remove'
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1600
                #translateLabel: true
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1601
                #value: #doRemoveImage
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1602
                #activeHelpKey: #editCopy
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1603
                #enabled: #hasValidSelection
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1604
                #shortcutKeyCharacter: #Copy
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1605
            )
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1606
          ) nil
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1607
          nil
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1608
      )
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1609
!
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1610
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1611
menuToolbar
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1612
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1613
     by the MenuEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1614
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1615
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1616
     the MenuEditor may not be able to read the specification."
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1617
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1618
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1619
     MenuEditor new openOnClass:MenuEditor andSelector:#menuToolbar
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1620
     (Menu new fromLiteralArrayEncoding:(MenuEditor menuToolbar)) startUp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1621
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1622
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1623
    <resource: #menu>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1624
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1625
    ^
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1626
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1627
       #(#Menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1628
          
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1629
           #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1630
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1631
                #label: 'New'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1632
                #isButton: true
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1633
                #value: #doNew
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1634
                #activeHelpKey: #fileNew
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1635
                #labelImage: #(#ResourceRetriever #Icon #newIcon)
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1636
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1637
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1638
                #label: 'Load'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1639
                #isButton: true
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1640
                #value: #doLoad
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1641
                #activeHelpKey: #fileLoad
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1642
                #labelImage: #(#ResourceRetriever #Icon #loadIcon)
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1643
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1644
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1645
                #label: 'Save'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1646
                #isButton: true
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1647
                #value: #doSave
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1648
                #activeHelpKey: #fileSave
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1649
                #labelImage: #(#ResourceRetriever #Icon #saveIcon)
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1650
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1651
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1652
                #label: ''
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1653
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1654
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1655
                #label: 'Cut'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1656
                #isButton: true
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1657
                #value: #doCut
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1658
                #activeHelpKey: #editCut
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1659
                #enabled: #hasValidSelection
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1660
                #labelImage: #(#ResourceRetriever #Icon #cutIcon)
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1661
            )
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1662
             #(#MenuItem
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1663
                #label: 'Copy'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1664
                #isButton: true
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1665
                #value: #doCopy
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1666
                #activeHelpKey: #editCopy
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1667
                #enabled: #hasValidSelection
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1668
                #labelImage: #(#ResourceRetriever #Icon #copyIcon)
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1669
            )
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1670
             #(#MenuItem
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1671
                #label: 'Paste'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1672
                #isButton: true
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1673
                #value: #doPaste
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1674
                #activeHelpKey: #editPaste
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1675
                #enabled: #valueOfCanPaste
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1676
                #labelImage: #(#ResourceRetriever #Icon #pasteIcon)
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1677
            )
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1678
             #(#MenuItem
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1679
                #label: 'Delete'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1680
                #isButton: true
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1681
                #value: #doDelete
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1682
                #activeHelpKey: #editDelete
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1683
                #enabled: #hasValidSelection
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1684
                #labelImage: #(#ResourceRetriever #Icon #deleteIcon)
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1685
            )
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1686
             #(#MenuItem
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1687
                #label: ''
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1688
            )
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1689
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1690
                #label: 'Add Item'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1691
                #isButton: true
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1692
                #value: #doCreateItem
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1693
                #activeHelpKey: #addMenuItem
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1694
                #enabled: #hasAnySingleSelection
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1695
                #labelImage: #(#ResourceRetriever nil #menuItemImage)
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1696
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1697
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1698
                #label: 'Add Separator'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1699
                #isButton: true
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1700
                #value: #doCreateSep
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1701
                #activeHelpKey: #addMenuSeparator
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1702
                #enabled: #hasAnySingleSelection
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1703
                #labelImage: #(#ResourceRetriever nil #menuSeparatorImage)
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1704
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1705
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1706
                #label: 'Add Submenu'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1707
                #isButton: true
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1708
                #value: #doCreateMenu
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1709
                #activeHelpKey: #addSubMenu
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1710
                #enabled: #hasAnySingleSelection
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1711
                #labelImage: #(#ResourceRetriever nil #submenuImage)
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1712
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1713
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1714
                #label: 'Add Linked Submenu'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1715
                #isButton: true
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1716
                #value: #doCreateLink
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1717
                #activeHelpKey: #addSubMenuLink
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1718
                #enabled: #hasAnySingleSelection
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1719
                #labelImage: #(#ResourceRetriever nil #linkSubmenuImage)
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1720
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1721
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1722
                #label: ''
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1723
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1724
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1725
                #label: 'Move Up'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1726
                #isButton: true
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1727
                #value: #doStepUp
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1728
                #activeHelpKey: #editMoveUp
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1729
                #enabled: #valueOfEnableMovingUpOrDown
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1730
                #labelImage: #(#ResourceRetriever #Icon #upIcon)
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1731
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1732
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1733
                #label: 'Move Down'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1734
                #isButton: true
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1735
                #value: #doStepDown
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1736
                #activeHelpKey: #editMoveDown
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1737
                #enabled: #valueOfEnableMovingUpOrDown
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1738
                #labelImage: #(#ResourceRetriever #Icon #downIcon)
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1739
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1740
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1741
                #label: 'Move In'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1742
                #isButton: true
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1743
                #value: #doStepIn
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1744
                #activeHelpKey: #editMoveIn
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1745
                #enabled: #valueOfEnableMovingIn
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1746
                #labelImage: #(#ResourceRetriever #Icon #downRightIcon)
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1747
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1748
             #(#MenuItem
669
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1749
                #label: 'Move Out'
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1750
                #isButton: true
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1751
                #value: #doStepOut
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1752
                #activeHelpKey: #editMoveOut
1f5b2d936bcf disable move down/up buttons while selecting multiple items
tz
parents: 667
diff changeset
  1753
                #enabled: #valueOfEnableMovingOut
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1754
                #labelImage: #(#ResourceRetriever #Icon #leftDownIcon)
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1755
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1756
          ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1757
          nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1758
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1759
! !
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1760
971
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1761
!MenuEditor class methodsFor:'queries'!
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1762
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1763
getAllImageSelectorsFrom: aClass
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1764
    "returns all image selectors implementing an image spec in class aClass"
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1765
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1766
     |iconClass imageMethodSelectors r|
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1767
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1768
     aClass isNil ifTrue:[
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1769
        ^ #()
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1770
     ].
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1771
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1772
     aClass isSymbol 
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1773
        ifTrue:  [iconClass := Smalltalk at: aClass]
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1774
        ifFalse: [iconClass := aClass].
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1775
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1776
     imageMethodSelectors := OrderedCollection new.
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1777
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1778
     iconClass withAllSuperclasses do:[:cls |
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1779
        cls class methodDictionary keysAndValuesDo: [:sel :m | 
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1780
            (r := m resourceType == #image
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1781
            or:[r == #programImage]) ifTrue:[
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1782
                imageMethodSelectors add:sel
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1783
            ]
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1784
        ]
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1785
     ].
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1786
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1787
     ^ imageMethodSelectors asSortedCollection asOrderedCollection
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1788
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1789
    "Modified: / 24.8.1998 / 21:42:34 / cg"
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1790
    "Created: / 24.8.1998 / 21:53:20 / cg"
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1791
! !
f3b1476f5006 find all images in getAllImageSelectorsFrom: (walk superclass chain)
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1792
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1793
!MenuEditor class methodsFor:'slices'!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1794
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1795
slicesItem
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1796
    ^#(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1797
            (Basics     basicsItemSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1798
            (Details    detailsEditSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1799
            (Image      imageEditSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1800
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1801
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1802
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1803
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1804
slicesLink
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1805
    ^#(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1806
            (Basics     basicsLinkSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1807
            (Details    detailsEditSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1808
            (Image      imageEditSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1809
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1810
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1811
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1812
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1813
slicesMenu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1814
    ^#(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1815
            (Basics     basicsMenuSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1816
            (Details    detailsEditSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1817
            (Image      imageEditSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1818
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1819
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1820
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1821
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1822
slicesRootMenu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1823
    ^#(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1824
            (Basics   basicsRootSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1825
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1826
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1827
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1828
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1829
slicesSeparatorMenu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1830
    ^#(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1831
            (Basics   basicsSeparatorSpec)
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1832
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1833
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1834
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1835
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1836
!MenuEditor methodsFor:'accessing'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1837
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1838
submenuTest
849
0001a9185d99 translate labels in the test-menu.
Claus Gittinger <cg@exept.de>
parents: 836
diff changeset
  1839
    "return the submenu assigned to item test;
0001a9185d99 translate labels in the test-menu.
Claus Gittinger <cg@exept.de>
parents: 836
diff changeset
  1840
     this is dynamically constructed, to reflect the current
0001a9185d99 translate labels in the test-menu.
Claus Gittinger <cg@exept.de>
parents: 836
diff changeset
  1841
     edited menu."
0001a9185d99 translate labels in the test-menu.
Claus Gittinger <cg@exept.de>
parents: 836
diff changeset
  1842
0001a9185d99 translate labels in the test-menu.
Claus Gittinger <cg@exept.de>
parents: 836
diff changeset
  1843
    |menu cls|
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1844
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1845
    (menu := self treeView asMenu) allItemsDo:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1846
    [:anItem|
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1847
        anItem value:nil.
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1848
        anItem enabled:true.
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  1849
    ].
849
0001a9185d99 translate labels in the test-menu.
Claus Gittinger <cg@exept.de>
parents: 836
diff changeset
  1850
0001a9185d99 translate labels in the test-menu.
Claus Gittinger <cg@exept.de>
parents: 836
diff changeset
  1851
    cls := self resolveName:specClass.
0001a9185d99 translate labels in the test-menu.
Claus Gittinger <cg@exept.de>
parents: 836
diff changeset
  1852
    menu findGuiResourcesIn:cls.
0001a9185d99 translate labels in the test-menu.
Claus Gittinger <cg@exept.de>
parents: 836
diff changeset
  1853
    ^ menu
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1854
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1855
716
7f95684c7f7d better help tool connection
tz
parents: 710
diff changeset
  1856
useHelpTool: aHelpTool
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  1857
    "take the help dictionaries from aHelpTool into my helpTool"
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1858
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1859
    self noteBookView.
716
7f95684c7f7d better help tool connection
tz
parents: 710
diff changeset
  1860
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1861
    self helpTool buildFromClass: aHelpTool specClass.
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1862
    self helpTool dictionaries:   aHelpTool dictionaries.
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1863
    self helpTool dictionary:     aHelpTool dictionary
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1864
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1865
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1866
!MenuEditor methodsFor:'aspects'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1867
220
ca
parents: 218
diff changeset
  1868
hasAnySingleSelection
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1869
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1870
    ^builder booleanValueAspectFor: #hasAnySingleSelection
220
ca
parents: 218
diff changeset
  1871
!
ca
parents: 218
diff changeset
  1872
ca
parents: 218
diff changeset
  1873
hasValidSelection
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1874
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1875
    ^builder booleanValueAspectFor: #hasValidSelection
220
ca
parents: 218
diff changeset
  1876
!
ca
parents: 218
diff changeset
  1877
ca
parents: 218
diff changeset
  1878
hasValidSingleSelection
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1879
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1880
    ^builder booleanValueAspectFor: #hasValidSingleSelection
220
ca
parents: 218
diff changeset
  1881
!
ca
parents: 218
diff changeset
  1882
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1883
listOfImages
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1884
    "get a list of the images"
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1885
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1886
    |holder|
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1887
    (holder := builder bindingAt:#listOfImages) isNil ifTrue:[
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1888
        builder aspectAt:#listOfImages put: (holder := List new).
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1889
        self updateListOfImages    
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1890
    ].
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1891
    ^ holder
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1892
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1893
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1894
!
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1895
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1896
noteBookView
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  1897
    "create the note book view containing the attibute sections and the help tool"
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1898
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1899
    |noteBook helpTool|
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1900
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1901
    (noteBook := builder bindingAt:#noteBookView) isNil ifTrue:[
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1902
        noteBook := View new.
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1903
        helpTool := UIHelpTool new.
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1904
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1905
        helpTool masterApplication:self.
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1906
        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
  1907
        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
  1908
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1909
        helpCanvas client:helpTool.
432
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
  1910
        helpTool masterApplication:self.      
422
f85de4fc2a2c commit buttons moved as subSpec to ToolApplicationModel
tz
parents: 418
diff changeset
  1911
        helpTool modifiedHolder: self valueOfEnablingCommitButtons.
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1912
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1913
        builder aspectAt:#noteBookView put:noteBook.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1914
    ].
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  1915
    ^ noteBook
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1916
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1917
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1918
selectionOfImage
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1919
    "get selection of list of the images as value"
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1920
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1921
    |holder|
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1922
    (holder := builder bindingAt:#selectionOfImage) isNil ifTrue:[
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1923
        builder aspectAt:#selectionOfImage put: (holder := nil asValue).
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1924
    ].
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1925
    ^ holder
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1926
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1927
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1928
!
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1929
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1930
tabList
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  1931
    "get a value holder with the list of the attribute sections (slices)"
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1932
298
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  1933
    |holder|
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  1934
    (holder := builder bindingAt:#tabList) isNil ifTrue:[
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1935
        builder aspectAt:#tabList put:(holder := #(Basics Details Image Help) asValue).
298
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  1936
    ].
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  1937
    ^ holder
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  1938
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  1939
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1940
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1941
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1942
treeView
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  1943
    "get a tree view representing hierarchically the menu items"
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1944
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1945
    |treeView|
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1946
    (treeView := builder bindingAt:#treeView) isNil ifTrue:[
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1947
        treeView := TreeView new.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1948
        treeView action:[:dummy|self menuChanged].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1949
        builder aspectAt: #treeView put: treeView
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1950
    ].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1951
    ^treeView
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1952
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1953
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  1954
!MenuEditor methodsFor:'building'!
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  1955
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1956
buildFromClass:aClass andSelector:aSelector
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1957
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1958
    self isStandAlone ifTrue:[
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1959
        self helpTool buildFromClass:specClass
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1960
    ].              
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1961
    self treeView buildFromClass: aClass andSelector: aSelector.
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1962
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1963
    self updateHistory.
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1964
    self updateInfoLabel.
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1965
    self treeView selection: 2.
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1966
    self menuChanged
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1967
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1968
!
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1969
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1970
buildFromResourceSpec: aResourceSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  1971
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1972
    self buildFromMenu:  
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1973
        (aResourceSpec class == Menu ifTrue: [aResourceSpec] ifFalse: [aResourceSpec decodeAsLiteralArray])
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  1974
! !
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  1975
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1976
!MenuEditor methodsFor:'change & update'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1977
970
23d20044894f show all icons;
Claus Gittinger <cg@exept.de>
parents: 968
diff changeset
  1978
update:something with:aParameter from:changedObject
23d20044894f show all icons;
Claus Gittinger <cg@exept.de>
parents: 968
diff changeset
  1979
    super update:something with:aParameter from:changedObject.
23d20044894f show all icons;
Claus Gittinger <cg@exept.de>
parents: 968
diff changeset
  1980
23d20044894f show all icons;
Claus Gittinger <cg@exept.de>
parents: 968
diff changeset
  1981
    changedObject == (aspects at:#retriever) ifTrue:[
23d20044894f show all icons;
Claus Gittinger <cg@exept.de>
parents: 968
diff changeset
  1982
        self updateListOfImages
23d20044894f show all icons;
Claus Gittinger <cg@exept.de>
parents: 968
diff changeset
  1983
    ].
23d20044894f show all icons;
Claus Gittinger <cg@exept.de>
parents: 968
diff changeset
  1984
23d20044894f show all icons;
Claus Gittinger <cg@exept.de>
parents: 968
diff changeset
  1985
    "Modified: / 24.8.1998 / 21:47:48 / cg"
23d20044894f show all icons;
Claus Gittinger <cg@exept.de>
parents: 968
diff changeset
  1986
!
23d20044894f show all icons;
Claus Gittinger <cg@exept.de>
parents: 968
diff changeset
  1987
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1988
updateChannels
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1989
    "update channels"
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1990
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1991
    |node parent next state|
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1992
412
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  1993
    state := false.   
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1994
    self updateSelectionOfImage.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1995
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1996
    (node  := self treeView selectedNode) notNil
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1997
    ifTrue:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  1998
    [
220
ca
parents: 218
diff changeset
  1999
        self hasAnySingleSelection value:true.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2000
        (parent := node parent) notNil
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2001
        ifTrue:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2002
        [
220
ca
parents: 218
diff changeset
  2003
            next := parent childAt:((parent indexOfChild:node) + 1).
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2004
            self valueOfEnableMovingIn       value:(next notNil and:[next hasChildren]).
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2005
            self valueOfEnableMovingUpOrDown value:(parent children size > 1).
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2006
            self valueOfEnableMovingOut      value:parent parent notNil.
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2007
            self hasValidSingleSelection     value:true.
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  2008
            self hasValidSelection           value:true.  
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  2009
            self valueOfCanPaste             value:true & self valueOfCanPaste value. 
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  2010
            ^self
220
ca
parents: 218
diff changeset
  2011
        ]
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2012
    ]
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2013
    ifFalse:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2014
    [
220
ca
parents: 218
diff changeset
  2015
        self hasAnySingleSelection value:false.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2016
        self treeView numberOfSelections ~~ 0 ifTrue:[
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2017
            state := (self treeView isInSelection:1) not
220
ca
parents: 218
diff changeset
  2018
        ]
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2019
    ].          
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2020
    self valueOfEnableMovingUpOrDown value:false.
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2021
    self valueOfEnableMovingIn       value:false.
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2022
    self valueOfEnableMovingOut      value:false.
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2023
    self hasValidSingleSelection     value:false.
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  2024
    self hasValidSelection           value:state.     
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  2025
    self valueOfCanPaste             value:(self hasValidSingleSelection value or: [node == self treeView root]) & self valueOfCanPaste value. 
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2026
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2027
!
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2028
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2029
updateListAndSelectionOfImage
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2030
    "updates the list and selection of image"
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2031
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2032
    self updateListOfImages.
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2033
    self updateSelectionOfImage
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2034
!
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2035
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2036
updateListOfImages
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2037
    "updates the list of images"
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2038
902
f510032000ad unnecessary info prints
tz
parents: 888
diff changeset
  2039
    |iconClass|      
f510032000ad unnecessary info prints
tz
parents: 888
diff changeset
  2040
f510032000ad unnecessary info prints
tz
parents: 888
diff changeset
  2041
    (iconClass := (aspects at: #retriever) value ? specClass) notNil ifTrue: 
f510032000ad unnecessary info prints
tz
parents: 888
diff changeset
  2042
    [
f510032000ad unnecessary info prints
tz
parents: 888
diff changeset
  2043
        iconClass := Smalltalk at: iconClass
f510032000ad unnecessary info prints
tz
parents: 888
diff changeset
  2044
    ].
f510032000ad unnecessary info prints
tz
parents: 888
diff changeset
  2045
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2046
    self listOfImages contents:
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2047
        ((self class getAllImageSelectorsFrom: iconClass)
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2048
            collect: [:sel| |image| image := iconClass perform: sel. LabelAndIcon icon:(image magnifiedBy: 22/image extent y ) string: sel]).
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2049
970
23d20044894f show all icons;
Claus Gittinger <cg@exept.de>
parents: 968
diff changeset
  2050
    "Modified: / 24.8.1998 / 21:29:24 / cg"
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2051
!
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2052
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2053
updateSelectionOfImage
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2054
    "updates the selection of image"
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2055
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2056
    self selectionOfImage value: nil.
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2057
    self updateListOfImages.
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2058
    self selectionOfImage value: (self listOfImages detect: [:im| im string == (aspects at: #icon) value] ifNone: nil).
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2059
220
ca
parents: 218
diff changeset
  2060
! !
ca
parents: 218
diff changeset
  2061
916
ec057a5e0efc nice about-icon.
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
  2062
!MenuEditor methodsFor:'defaults'!
ec057a5e0efc nice about-icon.
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
  2063
ec057a5e0efc nice about-icon.
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
  2064
aboutImage
ec057a5e0efc nice about-icon.
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
  2065
    "the image to be displayed in my about-box;
ec057a5e0efc nice about-icon.
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
  2066
     If nil is returned, thhe ST/X default image is used."
ec057a5e0efc nice about-icon.
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
  2067
ec057a5e0efc nice about-icon.
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
  2068
    ^ Image fromFile:'bitmaps/xpmBitmaps/misc_tools/setup_menus.xpm'
ec057a5e0efc nice about-icon.
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
  2069
ec057a5e0efc nice about-icon.
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
  2070
    "Created: / 25.7.1998 / 20:48:12 / cg"
ec057a5e0efc nice about-icon.
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
  2071
    "Modified: / 27.7.1998 / 10:21:55 / cg"
ec057a5e0efc nice about-icon.
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
  2072
! !
ec057a5e0efc nice about-icon.
Claus Gittinger <cg@exept.de>
parents: 912
diff changeset
  2073
220
ca
parents: 218
diff changeset
  2074
!MenuEditor methodsFor:'event handling'!
ca
parents: 218
diff changeset
  2075
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2076
doesNotUnderstand: aMessage
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2077
    "detour incoming messages to the tree view"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2078
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2079
    (self treeView respondsTo: aMessage selector)
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2080
    ifTrue:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2081
    [
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2082
        ^aMessage sendTo: self treeView
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2083
    ].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2084
    super doesNotUnderstand:aMessage
220
ca
parents: 218
diff changeset
  2085
ca
parents: 218
diff changeset
  2086
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2087
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2088
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2089
!MenuEditor methodsFor:'private'!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2090
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2091
helpKey
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2092
    "get the help key of the selected 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
    |node|
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2095
    (node := self treeView selectedNode) notNil ifTrue:[
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2096
        ^ node contents activeHelpKey
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2097
    ].
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2098
    ^ nil
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2099
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2100
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2101
helpTool
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2102
    "get the help tool"
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2103
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2104
    ^helpCanvas application
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2105
! !
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2106
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2107
!MenuEditor methodsFor:'queries'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2108
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2109
isHelpToolSelected
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2110
    "return true if current selection is help tool"
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2111
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
  2112
    (tabSelection ~~ 0 and:[slices notNil]) ifTrue:[
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2113
        ^(slices at:tabSelection) first = UIHelpTool label
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2114
    ].
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2115
    ^false
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2116
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2117
535
1caf545614c5 info bar subspec changed
tz
parents: 532
diff changeset
  2118
preferredExtent
1caf545614c5 info bar subspec changed
tz
parents: 532
diff changeset
  2119
1caf545614c5 info bar subspec changed
tz
parents: 532
diff changeset
  2120
    ^super preferredExtent max: (Screen current width//3)@(Screen current height//2.5)
1caf545614c5 info bar subspec changed
tz
parents: 532
diff changeset
  2121
1caf545614c5 info bar subspec changed
tz
parents: 532
diff changeset
  2122
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2123
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2124
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2125
!MenuEditor methodsFor:'selection'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2126
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2127
imageSelected
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2128
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2129
    (aspects at: #icon) value: self selectionOfImage value string
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2130
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2131
!
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2132
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2133
menuChanged
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2134
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2135
    |node item slc sel old|
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2136
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2137
    aspects do: [:holder| holder removeDependent:self].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2138
    (node := self treeView selectedNode) notNil ifTrue:[
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2139
        aspects do:[:anAspect| 
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2140
                        anAspect isBlock ifFalse:[anAspect value:nil]
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2141
                   ].
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2142
        item := node contents.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2143
        item toAspects:aspects.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2144
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2145
        item isSeparator ifFalse:[
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2146
            node parent isNil ifFalse:[
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2147
                node hasChildren ifTrue:[
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2148
                    slc := #slicesMenu
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2149
                ] ifFalse:[
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2150
                    item submenuChannel isNil ifTrue:[slc := #slicesItem]
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2151
                                             ifFalse:[slc := #slicesLink]
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2152
                ].
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2153
                slc := (self class perform:slc) copyWith:#( 'Help' #dummy ).
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2154
            ] ifTrue:[
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2155
                slc := self class perform:#slicesRootMenu
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2156
            ].
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2157
        ] ifTrue:[
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2158
            slc := self class perform:#slicesSeparatorMenu.
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2159
        ]
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2160
    ].
432
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
  2161
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
  2162
    self helpTool helpKey: self helpKey.
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
  2163
    "Next line helps me to preserve myself against unnecessary settings of
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
  2164
     valueOfEnablingCommitButtons to true in the help tool."
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
  2165
    self valueOfEnablingCommitButtons value: false.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2166
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2167
    slc ~= slices  ifTrue:[
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
  2168
        tabSelection ~~ 0 ifTrue:[
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2169
            old := (slices at:tabSelection) first
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2170
        ].
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2171
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2172
        (slices := slc) notNil ifTrue:[
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2173
            sel := slices collect:[:s| s first].
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2174
            tabSelection := 0.     
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2175
            self tabList value:sel.
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2176
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2177
            (old notNil and:[(sel := sel findFirst:[:n|n = old]) ~~ 0]) ifFalse:[
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2178
                sel := 1
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2179
            ].
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2180
            self tabModel value:sel
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2181
        ] ifFalse:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2182
            self tabList value:nil.
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
  2183
            self tabSelection:0.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2184
        ]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2185
    ].
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  2186
    self updateChannels.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2187
    aspects do: [:holder| holder addDependent:self].
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2188
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2189
    "Modified: / 14.8.1998 / 14:52:32 / cg"
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2190
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2191
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2192
tabSelection: aSelection
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2193
    "put the section aSelection into the note book"
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2194
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2195
    tabSelection = aSelection ifTrue:[
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2196
        ^ self
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2197
    ].
298
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2198
    (aSelection ~~ 0 and:[slices isNil]) ifTrue:[
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2199
        ^ self
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2200
    ].
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
  2201
    (tabSelection := aSelection) == 0 ifTrue:[
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2202
        slices isNil ifTrue:[
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2203
            specCanvas client:nil.
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2204
            ^ specCanvas raise.
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2205
        ].
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2206
        tabSelection == 1 ifTrue:[^ self].
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2207
        tabSelection := 1
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2208
    ].
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2209
432
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
  2210
    self isHelpToolSelected ifTrue:[  
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2211
        self helpTool helpKey:(self helpKey).
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2212
        helpCanvas raise.
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2213
    ] ifFalse:[       
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2214
        aspects do: [:holder| holder removeDependent:self].
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2215
        specCanvas client:self spec:(self class perform:(slices at:tabSelection) last) builder:builder.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2216
        aspects do: [:holder| holder addDependent:self].
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  2217
        self updateFonts.
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2218
        specCanvas raise.
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2219
    ]
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2220
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2221
    "Modified: / 14.8.1998 / 15:07:06 / cg"
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2222
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2223
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2224
!MenuEditor methodsFor:'startup / release'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2225
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  2226
initialize
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  2227
    "initialize value holders for the attributes of the menu components"
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  2228
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  2229
    |holder|
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  2230
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  2231
    super initialize.
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  2232
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  2233
    aspects at:#seperatorSelection put:(holder := SelectionInList new).
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  2234
    holder list: Item separatorList.
872
eb3bd8e609f1 must create builder early - req'd.
Claus Gittinger <cg@exept.de>
parents: 860
diff changeset
  2235
    holder addDependent:self.
eb3bd8e609f1 must create builder early - req'd.
Claus Gittinger <cg@exept.de>
parents: 860
diff changeset
  2236
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2237
    aspects at:#indicationEnabled  put:(BlockValue 
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2238
                                            with:[:a | a size == 0]
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2239
                                            argument:(aspects at:#choice)).
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2240
    aspects at:#choiceEnabled      put:(BlockValue
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2241
                                            with:[:a | a size == 0]
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2242
                                            argument:(aspects at:#indication)).
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2243
    aspects at:#choiceValueEnabled put:(BlockValue
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2244
                                            with:[:a | a size > 0]
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2245
                                            argument:(aspects at:#choice)).
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2246
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2247
    "Modified: / 14.8.1998 / 15:07:58 / cg"
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  2248
!
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  2249
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2250
openModalOnMenu: aMenu
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2251
    "build a tree from aMenu and open it modal"
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2252
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  2253
    super openModalOnResourceSpec: aMenu
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2254
!
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2255
412
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  2256
postOpenWith:aBuilder
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  2257
537
c39e2ceeaaea support argument for linked menus
tz
parents: 535
diff changeset
  2258
    super postOpenWith:aBuilder.
c39e2ceeaaea support argument for linked menus
tz
parents: 535
diff changeset
  2259
412
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  2260
    self isHelpToolSelected 
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  2261
        ifTrue:  [helpCanvas raise] 
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  2262
        ifFalse: [specCanvas raise]
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  2263
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2264
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2265
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2266
!MenuEditor methodsFor:'user actions'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2267
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2268
accept
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2269
    "invoked by button 'OK' and by save requests of menu item changes"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2270
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2271
    |node|
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2272
637
0fac61dcb6fd *** empty log message ***
tz
parents: 634
diff changeset
  2273
    super accept.
0fac61dcb6fd *** empty log message ***
tz
parents: 634
diff changeset
  2274
642
f8ba35e5a678 saving bug fixed
tz
parents: 640
diff changeset
  2275
    (node := self treeView selectedNode) notNil
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2276
    ifTrue:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2277
    [
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2278
        self isHelpToolSelected
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2279
        ifTrue:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2280
        [
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2281
            self helpTool accept.
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  2282
            node contents activeHelpKey: self helpTool helpKey.
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  2283
            self valueOfEnablingCommitButtons value: false.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2284
        ]
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2285
        ifFalse:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2286
        [
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2287
            node contents buildFromAspects: aspects.
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2288
            node changed.
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2289
            specSelector := self treeView selectorName.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2290
        ]
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2291
    ].   
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2292
    self updateInfoLabel.
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2293
    self updateListAndSelectionOfImage
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2294
!
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2295
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2296
cancel
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2297
    "invoked by button 'Cancel'"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2298
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2299
    |node|
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2300
    (node := self treeView selectedNode) notNil
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2301
    ifTrue:
432
d35dccaa804c commit buttons replaced by subSpec in ToolApplicationModel
tz
parents: 422
diff changeset
  2302
    [          
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2303
        self helpTool helpKey:(self helpKey).
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2304
        aspects do:[:anAspect| anAspect value:nil].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2305
        node contents toAspects:aspects
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2306
    ].
422
f85de4fc2a2c commit buttons moved as subSpec to ToolApplicationModel
tz
parents: 418
diff changeset
  2307
    self valueOfEnablingCommitButtons value: false.
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2308
    modified := false
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2309
!
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2310
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2311
doEditImage
888
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  2312
    "opens a Image Editor on the resource retriever and the icon selector;
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  2313
     then updates the list of images and select the line of the image"
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2314
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2315
    super doEditImage.
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2316
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2317
    self updateListAndSelectionOfImage
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2318
!
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  2319
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2320
doNew
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2321
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  2322
    super doNew ifTrue: [self helpTool doNew]
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2323
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2324
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2325
doPickAMenu
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
    |view|
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2328
642
f8ba35e5a678 saving bug fixed
tz
parents: 640
diff changeset
  2329
    ((view := Screen current viewFromUser) isNil or:
f8ba35e5a678 saving bug fixed
tz
parents: 640
diff changeset
  2330
    [view == Screen current rootView]) ifTrue:[
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2331
        ^ self
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2332
    ].
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2333
    view specClass == MenuPanelSpec ifTrue:[
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2334
        ^ self treeView buildFromMenu: view asMenu
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2335
    ].
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2336
    ^ nil
381
1d1b1483270c now with image editor support
tz
parents: 371
diff changeset
  2337
!
1d1b1483270c now with image editor support
tz
parents: 371
diff changeset
  2338
888
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  2339
doRemoveImage
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  2340
    "removes the image of the selected line"
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  2341
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  2342
    self selectionOfImage value notNil
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  2343
    ifTrue:
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  2344
    [
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  2345
        (Smalltalk at: (aspects at: #retriever) value ? specClass) class removeSelector:
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  2346
            self selectionOfImage value string.
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  2347
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  2348
        self updateListAndSelectionOfImage.
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  2349
        (aspects at:#icon) value: nil
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  2350
    ] 
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  2351
!
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  2352
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2353
doSave
764
5722b94330ef docu call
tz
parents: 748
diff changeset
  2354
    |cls treeView menu spec mthd category code excla|
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2355
642
f8ba35e5a678 saving bug fixed
tz
parents: 640
diff changeset
  2356
    super doSave ifFalse: [^nil].
637
0fac61dcb6fd *** empty log message ***
tz
parents: 634
diff changeset
  2357
0fac61dcb6fd *** empty log message ***
tz
parents: 634
diff changeset
  2358
    cls := self resolveName: specClass.
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2359
    treeView := self treeView.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2360
    menu     := treeView asMenu.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2361
    menu := menu literalArrayEncoding.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2362
    spec := WriteStream on:String new.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2363
    UISpecification prettyPrintSpecArray:menu on:spec indent:5.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2364
    spec := spec contents.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2365
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2366
    "/ if that method already exists, do not overwrite the category
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2367
576
c357919e636f do install menu specs in separate method category
tz
parents: 571
diff changeset
  2368
    category := 'menu specs'.
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2369
    (mthd := cls class compiledMethodAt:specSelector) notNil ifTrue:[
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2370
        category := mthd category.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2371
    ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2372
764
5722b94330ef docu call
tz
parents: 748
diff changeset
  2373
    excla := Character excla asString.
5722b94330ef docu call
tz
parents: 748
diff changeset
  2374
5722b94330ef docu call
tz
parents: 748
diff changeset
  2375
    code := excla
654
45cc74ba1113 simplified comma-expression to make microsoft-cc happy
Claus Gittinger <cg@exept.de>
parents: 642
diff changeset
  2376
            , (cls name , ' class methodsFor:' , category storeString)
764
5722b94330ef docu call
tz
parents: 748
diff changeset
  2377
            , excla , '\\'
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2378
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2379
            , specSelector , '\'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  2380
            , (self class codeGenerationComment replChar:$!! withString:'!!!!')
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  2381
            , '\\    "\'
654
45cc74ba1113 simplified comma-expression to make microsoft-cc happy
Claus Gittinger <cg@exept.de>
parents: 642
diff changeset
  2382
            , ('     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
  2383
            , ('     (Menu new fromLiteralArrayEncoding:(' , cls name , ' ' , specSelector , ')) startUp\')
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2384
            , '    "\'.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2385
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2386
    code := code 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2387
            , '\'
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2388
            , '    <resource: #menu>\\'
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2389
            , '    ^\' 
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2390
            , '     ', spec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2391
            , '\'
764
5722b94330ef docu call
tz
parents: 748
diff changeset
  2392
            , (excla , ' ' , excla)
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2393
            , '\\'.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2394
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2395
    code := code withCRs.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2396
    (ReadStream on:code) fileIn.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2397
764
5722b94330ef docu call
tz
parents: 748
diff changeset
  2398
    self isStandAlone ifTrue: [self helpTool installHelpSpecsOnClass:self specClass].
699
7746185a3621 for the help tool
tz
parents: 686
diff changeset
  2399
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2400
    self updateHistory.
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  2401
    self updateInfoLabel.
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  2402
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2403
    hasSaved := true.
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2404
    modified := false.
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2405
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2406
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2407
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2408
doSaveAs
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2409
637
0fac61dcb6fd *** empty log message ***
tz
parents: 634
diff changeset
  2410
    super doSaveAs ifTrue: [self treeView selectorName: specSelector]
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2411
!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2412
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2413
doStepDown
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2414
    "shift selected menu item one step down"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2415
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2416
    self treeView selectedNodeChangeSequenceOrder:1.
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2417
    modified := true.
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2418
155310ec83aa revised version
tz
parents: 382
diff changeset
  2419
155310ec83aa revised version
tz
parents: 382
diff changeset
  2420
155310ec83aa revised version
tz
parents: 382
diff changeset
  2421
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2422
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2423
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2424
doStepIn
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2425
    "move selected menu item into next submenu"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2426
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2427
    self treeView selectedNodeBecomeChildOfNext.
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2428
    modified := true.
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  2429
155310ec83aa revised version
tz
parents: 382
diff changeset
  2430
155310ec83aa revised version
tz
parents: 382
diff changeset
  2431
155310ec83aa revised version
tz
parents: 382
diff changeset
  2432
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2433
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2434
!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2435
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2436
doStepOut
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2437
    "move selected menu item out from parent submenu"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2438
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2439
    self treeView selectedNodeBecomeSisterOfParent.
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2440
    modified := true.
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2441
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2442
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2443
doStepUp
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2444
    "shift selected menu item one step up"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2445
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2446
    self treeView selectedNodeChangeSequenceOrder:-1.
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2447
    modified := true.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2448
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2449
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2450
!MenuEditor::Item class methodsFor:'constants'!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2451
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2452
separatorList
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2453
    "get the list of available separator types"
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2454
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2455
    ^#('blank' 'single line' 'double line')
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2456
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2457
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2458
separatorSlices
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2459
    "get the list of menu spec values of the corresponding separator types"
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2460
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2461
   ^ #(
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2462
        ( #blank        ''  )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2463
        ( #single       '-' )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2464
        ( #double       '=' )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2465
      )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2466
! !
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2467
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2468
!MenuEditor::Item class methodsFor:'documentation'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2469
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2470
documentation
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2471
"
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2472
    implements the contents assigned to a TreeItem. An instance
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2473
    is associated with one item and keeps all its information
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2474
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2475
    [see also:]
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2476
        TreeItem
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2477
        MenuEditor
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2478
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2479
    [author:]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2480
        Claus Atzkern
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2481
"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2482
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2483
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2484
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2485
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2486
!MenuEditor::Item methodsFor:'accessing'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2487
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2488
activeHelpKey
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2489
    "get the help key of the menu item"
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2490
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2491
    ^activeHelpKey
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2492
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2493
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2494
activeHelpKey:aKey
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2495
    "set the help key of the menu item"
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2496
287
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2497
    activeHelpKey := aKey
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2498
!
1ecabfd468dc HelpTool is seperated like LayoutTool
ca
parents: 275
diff changeset
  2499
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2500
label
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2501
    "get the value of the menu item"
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2502
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2503
    ^label
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2504
!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2505
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2506
label:something
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2507
    "set the value of the menu item"
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2508
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2509
    label := something ? '-'
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2510
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2511
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2512
separatorType
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2513
    "get the separator type assigned to item or nil"
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2514
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2515
    label size > 1 
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2516
    ifFalse:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2517
    [
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2518
        label size  == 0  ifTrue:[^#blank].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2519
        label first == $- ifTrue:[^#single].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2520
        label first == $= ifTrue:[^#double].
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2521
    ].    
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2522
    ^nil
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2523
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2524
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2525
968
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  2526
startGroup:aSymbolOrNil
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  2527
    "set the startGroup attribute"
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  2528
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  2529
    startGroup := aSymbolOrNil
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  2530
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  2531
    "Created: / 23.8.1998 / 15:56:03 / cg"
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  2532
!
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  2533
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2534
submenuChannel
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2535
    "return the value of the instance variable 'submenuChannel' (automatically generated)"
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2536
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2537
    ^submenuChannel
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2538
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2539
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2540
submenuChannel:aChannel
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2541
    "get the submenuChannel"
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2542
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2543
    submenuChannel := aChannel
860
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2544
!
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2545
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2546
translateLabel:aBoolean
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2547
    "set/clear the translate to national-language flag"
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2548
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2549
    translateLabel := aBoolean
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2550
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2551
    "Created: / 6.6.1998 / 17:23:33 / cg"
968
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  2552
!
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  2553
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  2554
value:aSymbol
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  2555
    "set the value attribute"
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  2556
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  2557
    value := aSymbol
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  2558
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  2559
    "Created: / 23.8.1998 / 16:02:10 / cg"
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2560
! !
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2561
860
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2562
!MenuEditor::Item methodsFor:'building'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2563
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2564
buildFromAspects:aspects
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2565
    "read the values of the aspects into my values"
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2566
249
bfa28b62528c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 246
diff changeset
  2567
    |name|
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2568
    self isSeparator 
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2569
    ifFalse:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2570
    [
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2571
        name  := label.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2572
        label := (aspects at:#label) value.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2573
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2574
        (label isNil or:[self isSeparator]) ifTrue:[
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2575
            (aspects at:#label) value:(label := name)
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2576
        ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2577
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2578
        enabled            := (aspects at:#enabled) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2579
        value              := (aspects at:#value) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2580
        nameKey            := (aspects at:#nameKey) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2581
        indication         := (aspects at:#indication) value.
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2582
        choice             := (aspects at:#choice) value.
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2583
        choiceValue        := (aspects at:#choiceValue) value.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2584
        shortcutKey        := (aspects at:#shortcutKey) value.
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
  2585
        startGroup         := (aspects at:#startGroup) value.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2586
        accessCharacterPos := (aspects at:#accessCharacterPos) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2587
        argument           := (aspects at:#argument) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2588
        translateLabel     := (aspects at:#translateLabel) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2589
        isButton           := (aspects at:#isButton) value.
298
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2590
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2591
        argument isString ifTrue:[
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2592
            argument size > 1 ifTrue:[
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2593
                (argument at:1) == $# ifTrue:[
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2594
                    argument := (argument copyFrom:2) asSymbol
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2595
                ]
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2596
            ]
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2597
        ].
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2598
        submenuChannel    := (aspects at:#submenuChannel) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2599
        retriever         := (aspects at:#retriever) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2600
        icon              := (aspects at:#icon) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2601
        iconAndLabel      := (aspects at:#iconAndLabel) value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2602
    ]
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2603
    ifTrue:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2604
    [
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2605
        name  := (aspects at:#seperatorSelection) selectionIndex.
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2606
        label := (self class separatorSlices at:name) last.
606
ca
parents: 603
diff changeset
  2607
    ].
ca
parents: 603
diff changeset
  2608
    isVisible := (aspects at:#isVisible) value.
ca
parents: 603
diff changeset
  2609
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2610
    "Modified: / 14.8.1998 / 15:36:38 / cg"
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2611
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2612
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2613
buildFromMenuItem:anItem
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2614
    "read the attributes of anItem into my values"
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2615
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2616
    |rtv|
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2617
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2618
    self label:(anItem label).
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2619
    activeHelpKey := anItem activeHelpKey.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2620
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2621
    (enabled := anItem enabled) isSymbol ifFalse:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2622
        enabled := nil
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2623
    ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2624
    (value := anItem value) isSymbol ifFalse:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2625
        value := nil.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2626
    ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2627
    (indication := anItem indication) isSymbol ifFalse:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2628
        indication := nil
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2629
    ].
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2630
    (choice := anItem choice) isSymbol ifFalse:[
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2631
        choice := nil
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2632
    ].
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2633
    choiceValue := anItem choiceValue.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2634
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2635
    nameKey            := anItem nameKey.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2636
    shortcutKey        := anItem shortcutKeyCharacter.
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
  2637
    startGroup         := anItem startGroup.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2638
    accessCharacterPos := anItem accessCharacterPosition.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2639
    argument           := anItem argument.
537
c39e2ceeaaea support argument for linked menus
tz
parents: 535
diff changeset
  2640
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2641
    submenuChannel     := anItem submenuChannel.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2642
    translateLabel     := anItem translateLabel.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2643
    isButton           := anItem isButton.
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
  2644
    isVisible          := anItem isVisible.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2645
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2646
    (((rtv := anItem adornment) notNil)
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2647
    and:[(rtv := rtv labelImage) isKindOf:ResourceRetriever])
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2648
    ifTrue:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2649
    [
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2650
        retriever := rtv className.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2651
        icon      := rtv selector.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2652
        (iconAndLabel := rtv labelText notNil) ifTrue:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2653
            label := rtv labelText.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2654
        ]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2655
    ]
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2656
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2657
    "Modified: / 14.8.1998 / 15:37:20 / cg"
860
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2658
! !
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2659
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2660
!MenuEditor::Item methodsFor:'conversion'!
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2661
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2662
asMenuItem
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2663
    "converts self to a menu item"
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2664
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2665
    |item rcv|
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2666
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2667
    item := MenuItem labeled:label.
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2668
    item isVisible:isVisible.
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2669
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2670
    self isSeparator ifFalse:[    
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2671
        item activeHelpKey:activeHelpKey.
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2672
        item enabled:enabled.
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2673
        item accessCharacterPosition:accessCharacterPos.
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2674
        item argument:argument.
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2675
        item submenuChannel:submenuChannel.
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2676
        item nameKey:nameKey.
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2677
        item shortcutKeyCharacter:shortcutKey.
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2678
        item startGroup:startGroup.
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2679
        item value:value.
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2680
        item indication:indication.
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2681
        item choice:choice.
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2682
        item choiceValue:choiceValue.
860
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2683
        item translateLabel: translateLabel.
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2684
        item isButton: isButton.
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2685
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2686
        icon notNil ifTrue:[
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2687
            rcv := ResourceRetriever new.
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2688
            rcv className:retriever.
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2689
            rcv selector:icon.
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2690
            iconAndLabel == true ifTrue:[
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2691
                rcv labelText:label
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2692
            ].
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2693
            item labelImage:rcv
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2694
        ]
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2695
    ].
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  2696
    ^item
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2697
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2698
    "Modified: / 14.8.1998 / 15:36:35 / cg"
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2699
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2700
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2701
toAspects:aspects
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2702
    "put my values into the values of aspects"
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2703
249
bfa28b62528c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 246
diff changeset
  2704
    |type|
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2705
    (type := self separatorType) notNil
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2706
    ifTrue:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2707
    [
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2708
        type := self class separatorSlices findFirst:[:el| el first == type ].
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2709
        (aspects at:#seperatorSelection) selectionIndex:type.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2710
    ] 
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2711
    ifFalse:
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2712
    [
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2713
        (aspects at:#label)                value:label.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2714
        (aspects at:#enabled)              value:enabled.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2715
        (aspects at:#value)                value:value.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2716
        (aspects at:#nameKey)              value:nameKey.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2717
        (aspects at:#indication)           value:indication.
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2718
        (aspects at:#choice)               value:choice.
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2719
        (aspects at:#choiceValue)          value:choiceValue.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2720
        (aspects at:#shortcutKey)          value:shortcutKey.
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
  2721
        (aspects at:#startGroup)           value:startGroup.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2722
        (aspects at:#accessCharacterPos)   value:accessCharacterPos.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2723
        (aspects at:#translateLabel)       value:translateLabel.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2724
        (aspects at:#submenuChannel)       value:submenuChannel.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2725
        (aspects at:#retriever)            value:retriever.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2726
        (aspects at:#icon)                 value:icon.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2727
        (aspects at:#iconAndLabel)         value:iconAndLabel.
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
  2728
        (aspects at:#isButton)             value:isButton.
537
c39e2ceeaaea support argument for linked menus
tz
parents: 535
diff changeset
  2729
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2730
        argument isSymbol
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2731
            ifTrue: [(aspects at:#argument)value:'#', argument] 
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2732
            ifFalse:[(aspects at:#argument)value:argument].
606
ca
parents: 603
diff changeset
  2733
    ].
ca
parents: 603
diff changeset
  2734
    (aspects at:#isVisible) value:isVisible.
ca
parents: 603
diff changeset
  2735
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
  2736
    "Modified: / 14.8.1998 / 15:37:29 / cg"
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2737
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2738
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2739
!MenuEditor::Item methodsFor:'queries'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2740
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2741
iconFor: aNode
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2742
    "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
  2743
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  2744
    (aNode hasChildren or: [aNode parent isNil])
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2745
    ifTrue:
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2746
    [
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2747
        ^MenuEditor submenuImage
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2748
    ]
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2749
    ifFalse:
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2750
    [
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2751
        submenuChannel notNil 
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2752
        ifTrue:
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2753
        [
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2754
            ^MenuEditor linkSubmenuImage
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2755
        ]
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2756
        ifFalse:
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2757
        [
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2758
            self isSeparator 
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2759
                ifTrue:  [^MenuEditor menuSeparatorImage]
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2760
                ifFalse: [^MenuEditor menuItemImage]
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2761
        ]
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2762
    ]
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2763
!
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2764
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2765
isSeparator
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2766
    "return true if item is a seperator"
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2767
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2768
    ^self separatorType notNil
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2769
!
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2770
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2771
treeViewLabel
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2772
    "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
  2773
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2774
    ^label asBoldText, 
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2775
        (value notNil ifTrue: [': [', 
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2776
                value ,
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2777
                (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
  2778
                 ']'] ifFalse: [''])
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2779
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2780
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2781
!MenuEditor::TreeView class methodsFor:'documentation'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2782
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2783
documentation
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2784
"
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2785
    This tree view class provides a hierarchical representation
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2786
    of the components of a menu.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2787
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2788
    [see also:]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2789
        SelectionInTreeView
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2790
        SelectionInTree
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2791
        TreeItem
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2792
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2793
    [author:]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2794
        Claus Atzkern
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2795
"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2796
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2797
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2798
!MenuEditor::TreeView methodsFor:'accessing'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2799
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2800
selectorName
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2801
    "get the selector of the menu spec"
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2802
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2803
    ^(listOfNodes first contents label) asSymbol
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2804
!
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2805
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2806
selectorName: aSymbol
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2807
    "set the selector for the menu spec"
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2808
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2809
    listOfNodes first contents label: aSymbol
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2810
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2811
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2812
!MenuEditor::TreeView methodsFor:'building'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2813
637
0fac61dcb6fd *** empty log message ***
tz
parents: 634
diff changeset
  2814
buildFromClass:aClass andSelector:aSelector
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2815
    "read a menu spec from aClass and aSelector and put 
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2816
     the encoded menu into the tree view"
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2817
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2818
    |spec cls menu firstNode firstNodeLabel|
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2819
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2820
    "if opened on a menu"
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2821
    (aClass isNil and: [aSelector isNil and: [listOfNodes size > 0]]) ifTrue: [^nil].
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2822
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2823
    (aClass notNil and:[aSelector notNil]) ifTrue:[
340
1de048872d5e resolveName:
ca
parents: 331
diff changeset
  2824
        cls := self application resolveName:aClass.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2825
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2826
        (cls respondsTo:aSelector) ifTrue:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2827
            spec := cls perform:aSelector
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2828
        ]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2829
    ].
331
ca
parents: 326
diff changeset
  2830
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2831
    spec isNil ifFalse:[
298
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2832
        (spec isMemberOf:Menu) ifFalse:[
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2833
            menu := Menu new fromLiteralArrayEncoding:spec.
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2834
        ] ifTrue:[
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2835
            menu := spec.
cec1f174397e use more functionality provided by base class
ca
parents: 290
diff changeset
  2836
        ].
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2837
        firstNode := self nodeLabel:(aSelector asString).
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2838
        self subMenu:menu parent:firstNode.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2839
    ] ifTrue:[
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2840
        (aClass notNil and: [aSelector isNil and: [listOfNodes size > 0]])
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2841
        ifTrue:
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2842
        [
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2843
            firstNode := listOfNodes first
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2844
        ]
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2845
        ifFalse:
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2846
        [
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2847
            aSelector notNil ifTrue:[firstNodeLabel := aSelector asString]
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2848
                        ifFalse:[firstNodeLabel := 'menu'].
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2849
            firstNode := self nodeLabel:firstNodeLabel.
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2850
        ]
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2851
    ].
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2852
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2853
    firstNode expand.
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2854
    model root: firstNode.
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2855
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2856
    firstNode hasChildren ifFalse:[
775
0ead717f3e35 reuse methods provided by the model
ca
parents: 764
diff changeset
  2857
        model add:(self nodeLabel:'Item 1') below:firstNode
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2858
    ].
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  2859
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2860
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2861
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2862
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2863
buildFromMenu:aMenu
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  2864
    "put aMenu into the tree view"
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2865
249
bfa28b62528c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 246
diff changeset
  2866
    |node|
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2867
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2868
    node := self nodeLabel:'menu'.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2869
    self subMenu:aMenu parent:node.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2870
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2871
    node hasChildren ifFalse:[
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  2872
        node add:(self nodeLabel:'Item 1')
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2873
    ].
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2874
    node expand.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2875
    model root:node.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2876
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2877
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2878
menuItem:anItem
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2879
249
bfa28b62528c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 246
diff changeset
  2880
    |node|
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2881
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2882
    node := self nodeLabel: anItem label.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2883
    node contents buildFromMenuItem:anItem.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2884
    self subMenu: anItem submenu parent:node.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2885
    ^node.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2886
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2887
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2888
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2889
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2890
subMenu:aMenu parent:aParent
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2891
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2892
    |idx grp|
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2893
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2894
    aMenu isNil ifFalse:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2895
        grp := aMenu groupSizes.
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2896
        aMenu itemsDo:[:i| aParent add:(self menuItem:i)].
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2897
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2898
        grp notNil ifTrue:[
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2899
            idx := 0.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2900
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2901
            grp do:[:i|
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2902
                idx := idx + i + 1.
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  2903
                aParent add:(self nodeLabel:nil) beforeIndex:idx.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2904
            ]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2905
        ]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2906
    ]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2907
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2908
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2909
!MenuEditor::TreeView methodsFor:'conversion'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2910
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2911
asMenu
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2912
    |menu root|
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2913
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2914
    root := self root.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2915
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2916
    root hasChildren ifTrue:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2917
        menu := Menu new.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2918
        root children do:[:aChild| menu addItem:(self asMenuItem:aChild)].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2919
    ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2920
  ^ menu
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2921
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2922
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2923
asMenuItem:aNode
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2924
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2925
    |menu item|
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2926
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2927
    item := aNode contents asMenuItem.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2928
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2929
    aNode hasChildren ifTrue:[
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2930
        menu := Menu new.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2931
        aNode children do:[:aChild| menu addItem:(self asMenuItem:aChild)].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2932
        item submenu:menu
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2933
    ].
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2934
  ^ item
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2935
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2936
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2937
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2938
!MenuEditor::TreeView methodsFor:'drawing basics'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2939
853
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2940
redrawLabelAt:x y:yTop index:anIndex
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2941
    "draw text label assigned to a node at x y( center)"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2942
853
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2943
    |isSelected y0 x0 x1 maxX w label type item|
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2944
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2945
    item := (listOfNodes at:anIndex) contents.
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2946
    type := item separatorType.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2947
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2948
    type isNil ifTrue:[
853
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2949
        ^ super redrawLabelAt:x y:yTop index:anIndex
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2950
    ].
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2951
    isSelected := self isInSelection:anIndex.
854
2d96630daf4a bug fix in redraw label
ca
parents: 853
diff changeset
  2952
    x0 := x.
853
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2953
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2954
    highlightMode == #label ifTrue:[
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2955
        x0 := x + 4.
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2956
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2957
        isSelected ifTrue:[
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2958
            w  := 80 + 8.
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2959
            self paint:hilightBgColor.
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2960
            self fillRectangleX:x y:yTop width:w height:fontHeight.
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2961
        ]
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  2962
    ] ifFalse:[
853
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2963
        w := 0.
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2964
    ].
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2965
    type == #blank ifFalse:[
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2966
        isSelected ifTrue:[self paint:hilightFgColor]
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2967
                  ifFalse:[self paint:fgColor].
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2968
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2969
        x1 := x0 + 80.
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2970
        y0 := yTop - 1 + (fontHeight // 2).
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2971
        self displayLineFromX:x0 y:y0 toX:x1 y:y0.
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2972
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2973
        type == #double ifTrue:[
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2974
            y0 := y0 + 2.
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2975
            self displayLineFromX:x0 y:y0 toX:x1 y:y0.
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2976
        ]    
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2977
    ].
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2978
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2979
    (isSelected and:[highlightMode == #label]) ifTrue:[
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2980
        self redrawSelFrameAtX:x y:yTop toX:(x + w)
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2981
    ].
4c906c364da2 replace method:
ca
parents: 849
diff changeset
  2982
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2983
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  2984
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2985
!MenuEditor::TreeView methodsFor:'event handling'!
356
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  2986
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  2987
keyPress:key x:x y:y
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2988
    "invoked if any key was pressed"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2989
412
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  2990
    <resource: #keyboard (#Delete #BackSpace #Cut #Copy #Paste)>
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  2991
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  2992
    (key == #Delete or:[key == #BackSpace]) ifTrue: [^self doDelete].
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  2993
    key == #Cut   ifTrue:[^self doCut].
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2994
    key == #Copy  ifTrue:[^self doCopy].
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  2995
    key == #Paste ifTrue:[^self doPaste].
356
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  2996
412
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  2997
    super keyPress:key x:x y:y
356
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  2998
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  2999
! !
269c117830ba before closing the builder, check for outstanding
ca
parents: 340
diff changeset
  3000
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  3001
!MenuEditor::TreeView methodsFor:'initialization'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3002
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3003
initialize
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  3004
    "initialize the tree view of the menu components"
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  3005
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3006
    super initialize.
275
cdecb5b5d356 set fontHeight dependent on max. image height
ca
parents: 270
diff changeset
  3007
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  3008
    self multipleSelectOk:true.
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  3009
    self showDirectoryIndicator: true.
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  3010
    self showDirectoryIndicatorForRoot: false.
634
ebc0beb615c5 ask modification methods renamed
tz
parents: 633
diff changeset
  3011
    self selectConditionBlock: [:i|self application askForItemModification]. 
412
330bf61c53b5 select first menu child item after opening
tz
parents: 411
diff changeset
  3012
    self validateDoubleClickBlock: [:node| node ~~ listOfNodes first].
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3013
    self model iconAction: [:aNode| aNode contents iconFor: aNode].
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3014
    self model labelAction: [:aNode| aNode contents treeViewLabel]
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3015
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3016
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  3017
!MenuEditor::TreeView methodsFor:'menus'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3018
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3019
doCopy
912
931b23146b3d repeated message chains
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
  3020
    |clip|
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  3021
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  3022
    self hasSelection ifTrue:[
912
931b23146b3d repeated message chains
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
  3023
        self application clipboard:(clip := OrderedCollection new).
931b23146b3d repeated message chains
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
  3024
        self selectionDo:[:i | clip add:((listOfNodes at:i) copy)].
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  3025
        self topView application updateAllToolInstances.
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  3026
    ]
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3027
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3028
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3029
doCreateItem
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  3030
557
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3031
    self addElement: (self nodeLabel:'Item')
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3032
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3033
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  3034
doCreateLink
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  3035
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  3036
    |node item|
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  3037
557
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3038
    node := self nodeLabel:'Submenu Link'.
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  3039
    item := node contents.
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  3040
    item submenuChannel:#menuDefaultLink.
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  3041
    self addElement:node.
155310ec83aa revised version
tz
parents: 382
diff changeset
  3042
    self setModified.
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  3043
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  3044
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  3045
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
  3046
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3047
doCreateMenu
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  3048
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3049
    |node|
557
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3050
    node := self nodeLabel:'Submenu'.
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3051
    node parent: self selectedNode.        
557
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3052
    node add:(self nodeLabel:'Item 1').
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  3053
    self addElement:node
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3054
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3055
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3056
doCreateSep
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  3057
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  3058
    self addElement:(self nodeLabel:nil)
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3059
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3060
968
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3061
doCreateStandardEditMenu
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3062
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3063
    |node|
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3064
    node := self nodeLabel:'Edit'.
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3065
    node parent: self selectedNode.        
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3066
    node add:(self nodeLabel:'Copy'  selector:#copySelection).
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3067
    node add:(self nodeLabel:'Cut'   selector:#cutSelection).
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3068
    node add:(self nodeLabel:'Paste' selector:#paste).
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3069
    self addElement:node
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3070
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3071
    "Created: / 23.8.1998 / 15:52:16 / cg"
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3072
    "Modified: / 23.8.1998 / 15:59:36 / cg"
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3073
!
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3074
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3075
doCreateStandardFileMenu
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3076
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3077
    |node|
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3078
    node := self nodeLabel:'File'.
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3079
    node parent: self selectedNode.        
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3080
    node add:(self nodeLabel:'New'        selector:#menuNew).
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3081
    node add:(self nodeLabel:'-'          ).
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3082
    node add:(self nodeLabel:'Open...'    selector:#menuOpen).
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3083
    node add:(self nodeLabel:'-'          ).
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3084
    node add:(self nodeLabel:'Save'       selector:#menuSave).
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3085
    node add:(self nodeLabel:'Save As...' selector:#menuSaveAs).
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3086
    node add:(self nodeLabel:'-'          ).
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3087
    node add:(self nodeLabel:'Exit'       selector:#closeRequest).
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3088
    self addElement:node
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3089
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3090
    "Created: / 23.8.1998 / 15:51:55 / cg"
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3091
    "Modified: / 23.8.1998 / 16:04:24 / cg"
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3092
!
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3093
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3094
doCreateStandardHelpMenu
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3095
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3096
    |node|
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3097
    node := self nodeLabel:'Help'.
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3098
    node parent: self selectedNode.        
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3099
    node contents startGroup:#right.
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3100
    node add:(self nodeLabel:'Documentation'          selector:#openDocumentation).
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3101
    node add:(self nodeLabel:'-').
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3102
    node add:(self nodeLabel:'About this Application' selector:#openAboutThisApplication).
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3103
    self addElement:node
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3104
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3105
    "Created: / 23.8.1998 / 15:52:46 / cg"
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3106
    "Modified: / 23.8.1998 / 17:30:12 / cg"
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3107
!
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3108
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3109
doCut
912
931b23146b3d repeated message chains
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
  3110
    |app|
931b23146b3d repeated message chains
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
  3111
931b23146b3d repeated message chains
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
  3112
    app := self topView application.
931b23146b3d repeated message chains
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
  3113
    (app hasValidSelection value and: [self askForItemModification])
603
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
  3114
    ifTrue:
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
  3115
    [
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
  3116
        |selectedNodes|
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
  3117
        self doCopy.
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
  3118
        selectedNodes := self selection asSortedCollection.
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
  3119
        self selectedNodesRemove.
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
  3120
        self selection: selectedNodes first - 1.
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
  3121
        self setModified.
912
931b23146b3d repeated message chains
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
  3122
        app updateAllToolInstances.
603
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
  3123
    ]
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  3124
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3125
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3126
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  3127
doDelete
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  3128
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  3129
    (self topView application hasValidSelection value and: [self askForItemModification])
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  3130
    ifTrue:
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  3131
    [
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  3132
        |selectedNodes|
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  3133
        selectedNodes := self selection asSortedCollection.
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  3134
        self selectedNodesRemove.
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  3135
        self selection: selectedNodes first - 1.
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  3136
        self setModified.
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  3137
    ]
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  3138
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  3139
!
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  3140
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3141
doPaste
912
931b23146b3d repeated message chains
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
  3142
    |clip|
931b23146b3d repeated message chains
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
  3143
931b23146b3d repeated message chains
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
  3144
    clip := self application clipboard.
931b23146b3d repeated message chains
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
  3145
    (clip notNil and:[self selectedNode notNil]) ifTrue:[
931b23146b3d repeated message chains
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
  3146
        self addElement:(clip collect:[:el| el copy])
220
ca
parents: 218
diff changeset
  3147
    ].
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3148
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3149
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  3150
!MenuEditor::TreeView methodsFor:'private'!
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3151
557
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3152
addElement: aNode
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  3153
    "add something after selection"
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  3154
634
ebc0beb615c5 ask modification methods renamed
tz
parents: 633
diff changeset
  3155
    self askForItemModification
603
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
  3156
    ifTrue:
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3157
    [   
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3158
        self selectedNodeAdd: aNode.
603
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
  3159
        (aNode isCollection not and: [aNode name = 'Item']) 
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
  3160
        ifTrue: 
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
  3161
        [
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3162
            |label|     
603
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
  3163
            label := aNode name, ' ',
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3164
                (self selectedNode parent notNil 
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3165
                ifTrue:
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3166
                [
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3167
                    (((self selectedNode children size = 0 
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3168
                        ifTrue: [self selectedNode parent children] 
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3169
                        ifFalse: [self selectedNode children]) select: 
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3170
                            [:node| 
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3171
                                |lab| 
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3172
                                lab := node contents label. 
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3173
                                ((node children size = 0) & 
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3174
                                node contents submenuChannel isNil &
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3175
                                (lab ~= '-') & (lab ~= '=') & (lab ~= ''))
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3176
                            ]) size) printString] 
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3177
                ifFalse: ['1']).  
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3178
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3179
            aNode name: label string asBoldText.
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3180
            aNode contents label: label string.
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  3181
        ].    
603
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
  3182
        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
  3183
        self setModified.
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
  3184
    ]
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
  3185
!
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
  3186
634
ebc0beb615c5 ask modification methods renamed
tz
parents: 633
diff changeset
  3187
askForItemModification
ebc0beb615c5 ask modification methods renamed
tz
parents: 633
diff changeset
  3188
ebc0beb615c5 ask modification methods renamed
tz
parents: 633
diff changeset
  3189
    ^self topView application askForItemModification
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3190
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3191
213
71b11a173f87 change model; supports multiple selection
ca
parents: 209
diff changeset
  3192
nodeLabel:aLabel
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
  3193
860
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  3194
    ^TreeItem new contents: ((MenuEditor::Item new label:aLabel) translateLabel:true)
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  3195
3e5171aad09f new items have translateLabel on by default.
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
  3196
    "Modified: / 6.6.1998 / 17:22:35 / cg"
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  3197
!
155310ec83aa revised version
tz
parents: 382
diff changeset
  3198
968
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3199
nodeLabel:aLabel selector:aSelector
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3200
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3201
    ^TreeItem new contents: (((MenuEditor::Item new label:aLabel) value:aSelector) translateLabel:true)
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3202
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3203
    "Modified: / 6.6.1998 / 17:22:35 / cg"
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3204
    "Created: / 23.8.1998 / 15:58:59 / cg"
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3205
!
f52b5744063b added standard-submenu generators (in item menu)
Claus Gittinger <cg@exept.de>
parents: 959
diff changeset
  3206
557
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3207
selectedNodeAdd:something
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3208
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3209
    |node|
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3210
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3211
    something notNil ifTrue:[
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3212
        (node := self selectedNode) notNil ifTrue:[
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3213
            node parent notNil ifTrue:[
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3214
                node isCollapsable ifTrue:[
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3215
                    model add:something afterIndex:node children size below:node
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3216
                ] ifFalse:[
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3217
                    model add:something after:node
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3218
                ]
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3219
            ] ifFalse:[
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3220
                model add:something afterIndex:node children size below:(self root)
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3221
            ]
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3222
        ]
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3223
    ]
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3224
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3225
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3226
!
de8d8782486c some revisions
tz
parents: 548
diff changeset
  3227
398
155310ec83aa revised version
tz
parents: 382
diff changeset
  3228
setModified 
912
931b23146b3d repeated message chains
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
  3229
    |app|
931b23146b3d repeated message chains
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
  3230
931b23146b3d repeated message chains
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
  3231
    (app := self topView application) modified: true.
931b23146b3d repeated message chains
Claus Gittinger <cg@exept.de>
parents: 902
diff changeset
  3232
    app updateChannels
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3233
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3234
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3235
!MenuEditor class methodsFor:'documentation'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3236
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3237
version
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3238
    ^ '$Header$'
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  3239
! !