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