MenuEditor.st
author Claus Gittinger <cg@exept.de>
Fri, 04 Sep 1998 14:05:02 +0200
changeset 982 2dda94c7ff25
parent 981 5b3b9588e57d
child 1007 98f4db3e2d23
permissions -rw-r--r--
allow grabbing from depth>8 screens.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
     1
"
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
     2
 COPYRIGHT (c) 1997 by eXept Software AG
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
     3
              All Rights Reserved
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
     4
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
     5
 This software is furnished under a license and may be used
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
     7
 inclusion of the above copyright notice. This software may not
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    10
 hereby transferred.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    11
"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    12
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    13
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    14
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
    15
ResourceSpecEditor subclass:#MenuEditor
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
    16
	instanceVariableNames:'specCanvas helpCanvas slices'
220
ca
parents: 218
diff changeset
    17
	classVariableNames:''
ca
parents: 218
diff changeset
    18
	poolDictionaries:''
ca
parents: 218
diff changeset
    19
	category:'Interface-UIPainter'
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    20
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    21
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    22
Object subclass:#Item
220
ca
parents: 218
diff changeset
    23
	instanceVariableNames:'activeHelpKey enabled label value nameKey indication shortcutKey
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
    24
		accessCharacterPos retriever icon iconAndLabel submenuChannel
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
    25
		startGroup argument translateLabel isButton isVisible choice
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
    26
		choiceValue'
220
ca
parents: 218
diff changeset
    27
	classVariableNames:''
ca
parents: 218
diff changeset
    28
	poolDictionaries:''
ca
parents: 218
diff changeset
    29
	privateIn:MenuEditor
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    30
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    31
407
578a7aaed19e totally revised version
tz
parents: 406
diff changeset
    32
SelectionInTreeView subclass:#TreeView
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
    33
	instanceVariableNames:''
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
    34
	classVariableNames:''
220
ca
parents: 218
diff changeset
    35
	poolDictionaries:''
ca
parents: 218
diff changeset
    36
	privateIn:MenuEditor
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    37
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    38
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    39
!MenuEditor class methodsFor:'documentation'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    40
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    41
copyright
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    42
"
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
    43
 COPYRIGHT (c) 1997 by eXept Software AG
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    44
              All Rights Reserved
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    45
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    46
 This software is furnished under a license and may be used
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    47
 only in accordance with the terms of that license and with the
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
    48
 inclusion of the above copyright notice. This software may not
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    49
 be provided or otherwise made available to, or used by, any
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    50
 other person.  No title to or ownership of the software is
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    51
 hereby transferred.
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    52
"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    53
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    54
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    55
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    56
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    57
documentation
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    58
"
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    59
    The MenuEditor allows you to create, modify or just inspect
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    60
    hierarchical menus of menu bars, popup menu, or tool bar menus.
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    61
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    62
    [start with:]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    63
        MenuEditor open
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    64
        MenuEditor openOnClass:MenuEditor andSelector:#menu
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    65
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    66
    [see also:]
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    67
        UIPainter
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    68
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    69
    [author:]
541
5dc124df04e2 author line in doc.
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
    70
        Claus Atzkern, eXept Software AG
5dc124df04e2 author line in doc.
Claus Gittinger <cg@exept.de>
parents: 539
diff changeset
    71
        Thomas Zwick, eXept Software AG
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    72
"
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    73
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    74
! !
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
    75
508
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    76
!MenuEditor class methodsFor:'instance creation'!
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    77
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    78
openModalOnMenu: aMenu
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    79
    "Open a MenuEditor modal on aMenu"
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    80
    "self openModalOnMenu: (self perform: #menu) decodeAsLiteralArray"
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    81
638ae95885e1 method comments added
tz
parents: 725
diff changeset
    82
    ^self new openModalOnMenu: aMenu
508
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    83
! !
968c6aa88ef0 updates channels after adding menu items
tz
parents: 507
diff changeset
    84
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
    85
!MenuEditor class methodsFor:'accessing'!
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
    86
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    87
iconUnknown
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    88
    "returns an image used for picked items containing an image
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    89
    "
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    90
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    91
    <resource: #fileImage>
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    92
804
b66537045e04 reuse broken image bitmap
Claus Gittinger <cg@exept.de>
parents: 775
diff changeset
    93
    "/ ^ Image fromFile:'brokenImage.xpm'
b66537045e04 reuse broken image bitmap
Claus Gittinger <cg@exept.de>
parents: 775
diff changeset
    94
    ^ Icon constantNamed:'brokenImage.xpm'
b66537045e04 reuse broken image bitmap
Claus Gittinger <cg@exept.de>
parents: 775
diff changeset
    95
b66537045e04 reuse broken image bitmap
Claus Gittinger <cg@exept.de>
parents: 775
diff changeset
    96
    "Modified: / 22.4.1998 / 22:15:11 / ca"
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    97
!
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
    98
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
    99
resourceType
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   100
    "get the type of resource of the method generated by the MenuEditor"
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   101
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   102
    ^#menu
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   103
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   104
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   105
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   106
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   107
! !
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   108
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   109
!MenuEditor class methodsFor:'aspects'!
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   110
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   111
aspects
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   112
    "get the aspects for the attributes of the menu components"
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   113
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   114
    ^#(
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   115
        label
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   116
        accessCharacterPos
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   117
        argument
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   118
        submenuChannel
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   119
        enabled
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   120
        value
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   121
        nameKey
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   122
        indication
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   123
        choice
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   124
        choiceValue
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   125
        translateLabel
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   126
        isButton
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   127
        shortcutKey
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   128
        startGroup
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   129
        retriever
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   130
        iconAndLabel
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   131
        icon
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   132
        isVisible
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   133
     )
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   134
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   135
    "Modified: / 14.8.1998 / 14:46:36 / cg"
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   136
! !
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   137
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   138
!MenuEditor class methodsFor:'help specs'!
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   139
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   140
helpSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   141
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   142
     by the UIHelpTool of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   143
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   144
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   145
     the UIHelpTool may not be able to read the specification."
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   146
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   147
    "
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   148
     UIHelpTool openOnClass:MenuEditor    
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   149
    "
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   150
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   151
    <resource: #help>
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   152
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   153
    ^super helpSpec addPairsFrom:#(
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   154
548
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   155
#addMenuItem
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   156
'Adds a new menu item.'
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   157
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   158
#addMenuSeparator
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   159
'Adds a new menu separator.'
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   160
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   161
#addSubMenu
613
5bdf59b03e8e checkin from browser
tz
parents: 612
diff changeset
   162
'Adds a new sub menu.'
548
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   163
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   164
#addSubMenuLink
613
5bdf59b03e8e checkin from browser
tz
parents: 612
diff changeset
   165
'Adds a new linked sub menu.'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   166
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   167
#basicsAction
627
e28ca0319230 checkin from browser
tz
parents: 621
diff changeset
   168
'An action selector with 0, 1 (the argument field), or 2 (the selected item) arguments.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   169
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   170
#basicsArgument
613
5bdf59b03e8e checkin from browser
tz
parents: 612
diff changeset
   171
'An argument passed to above selector, if it is a 1 or a 2 argument selector.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   172
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   173
#basicsIndication
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   174
'A boolean holder, a boolean block, or a boolean method, specifying the indication state.'
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   175
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   176
#basicsChoice
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   177
'A boolean holder, a boolean block, or a boolean method, specifying the choices state.'
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   178
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   179
#basicsChoiceValue
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   180
'That choices value (typically number or symbol).'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   181
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   182
#basicsIsButton
603
fc00fc231df2 do ask for save item when wanna paste, create, cut
tz
parents: 578
diff changeset
   183
'Turns on/off a button behavior.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   184
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   185
#basicsLabel
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   186
'Label of the item.'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   187
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   188
#basicsKey
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   189
'Internal key of the item (optional, for programmed accesses).'
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   190
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   191
#basicsMenu
613
5bdf59b03e8e checkin from browser
tz
parents: 612
diff changeset
   192
'A value holder providing the sub menu to be opened if item is selected.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   193
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   194
#basicsMenuArgument
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   195
'An argument passed with the menu selector.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   196
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   197
#basicsNameKey
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   198
'Unique identifier of the item (optional).'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   199
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   200
#basicsSelector
613
5bdf59b03e8e checkin from browser
tz
parents: 612
diff changeset
   201
'Selector under which the generated menu spec is saved.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   202
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   203
#basicsSeparatorType
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   204
'List of valid separators.'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   205
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   206
#basicsTranslateLabel
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   207
'Translate the label via the classes resource file (internationalization).'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   208
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   209
#detailsAccelerator
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   210
'Key to be pressed to select the menu item from the keyboard (accelerator key).'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   211
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   212
#detailsAccessCharaterPosition
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   213
'Index of the access character position of the textual label (optional).'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   214
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   215
#detailsEnabled
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   216
'Aspect or binding providing a boolean value holder for the enable-state of the menu item.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   217
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   218
#detailsStartGroup
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   219
'Specify start of a right-aligned item group.'
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   220
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   221
#detailsVisibility
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   222
'Aspect or binding providing a boolean value holder for the visibility-state of the menu item.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   223
548
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   224
#fileLoad
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   225
'Opens a dialog to select and load a menu spec from a class.'
548
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   226
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   227
#fileNew
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   228
'Creates a new menu spec.'
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   229
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   230
#filePickAMenu
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
   231
'Select a menu from an open view and read its specification'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   232
548
93fea26562c8 help texts added
tz
parents: 546
diff changeset
   233
#fileSave
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   234
'Saves the menu spec (and the help spec, if modified).'
455
117dcae8b5e0 no separate save of help keys
tz
parents: 441
diff changeset
   235
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   236
#fileSaveAs
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   237
'Opens a dialog to save the menu spec (and the help spec, if modified).'
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   238
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   239
#historyMenuItem
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   240
'Edit this menu specification.'
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
   241
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   242
#imageImageAndLabel
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   243
'Toggles display of both image and textual label.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   244
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   245
#imageImageEditor
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   246
'Opens an Image Editor on the resource method defined by retriever and selector.'
577
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   247
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   248
#imageRetriever
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   249
'Class implementing the image resource method. If no class is given, the current application class will be taken.'
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   250
d9f9745572b2 help texts revised
tz
parents: 576
diff changeset
   251
#imageSelector
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   252
'Selector returning an image (sent to above or the application).'
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   253
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   254
#imageImageList
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   255
'Currently existing image resources.'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   256
943
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   257
#test
b9ba76358fbd help texts
Claus Gittinger <cg@exept.de>
parents: 936
diff changeset
   258
'Displays the current menu (layout test).'
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   259
)
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
   260
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   261
    "Modified: / 18.8.1998 / 16:19:13 / cg"
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   262
! !
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   263
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   264
!MenuEditor class methodsFor:'image specs'!
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   265
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   266
linkSubmenuImage
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   267
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   268
     by the ImageEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   269
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   270
    "Do not manually edit this!!!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   271
     the ImageEditor may not be able to read the specification."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   272
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   273
    "
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   274
     ImageEditor openOnClass:self andSelector:#linkSubmenuImage
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   275
    "
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   276
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   277
    <resource: #image>
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   278
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   279
    ^Icon
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   280
        constantNamed:#'MenuEditor linkSubmenuImage'
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   281
        ifAbsentPut:[(Depth4Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@ADQDQDQDQDQDQH@D"H"H"H"H"H"K0@RH"H"H"H"H"H/@A????????????<@D@@@@@@@@@@@C0@PL3L0DQDQDQD_@A@3L3LBH"H"H"<@DCL3L3@"H"H"K0@PL3L3L0??????@A@@@@L3L@@@@@<@DQDQDCL3@PLAG0@RH"H"@3L0@3@/@AH"H"H L3L3L0<@G?????<CL3L3L@@P@@@@@@@3L3LO@ADQDQDQDP@CLA<@D"H"H"H"H LBK0@RH"H"H"H"@BH/@B????????????<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 255 0 0 0 255 0 0 0 255 0 255 255 255 255 0 255 0 255 127 0 0 0 127 0 0 0 127 0 127 127 127 127 0 127 0 127 127 127 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]!
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   282
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   283
menuItemImage
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   284
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   285
     by the ImageEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   286
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   287
    "Do not manually edit this!!!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   288
     the ImageEditor may not be able to read the specification."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   289
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   290
    "
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   291
     ImageEditor openOnClass:self andSelector:#menuItemImage
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   292
    "
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   293
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   294
    <resource: #image>
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   295
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   296
    ^Icon
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   297
        constantNamed:#'MenuEditor menuItemImage'
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   298
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'UUUUUUUQUUUUUUUPUUUUUUU_UUUUUUUPUUUUUUUP@@@@@@@@EUUUUUVAF*****+HF:?+::;@F:.+*?;@F:.+::;@F:.+*:;@F:.+::;@F*****+DK??????A@@@@@@@@UUUUUUUPUUUUUUUXUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUX') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 127 127 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@???<???<???<???<???<???<???<???<???<???<???<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]!
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   299
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   300
menuSeparatorImage
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   301
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   302
     by the ImageEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   303
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   304
    "Do not manually edit this!!!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   305
     the ImageEditor may not be able to read the specification."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   306
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   307
    "
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   308
     ImageEditor openOnClass:self andSelector:#menuSeparatorImage
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   309
    "
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   310
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   311
    <resource: #image>
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   312
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   313
    ^Icon
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   314
        constantNamed:#'MenuEditor menuSeparatorImage'
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   315
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'UUUUUUURUUUUUUUPUUUUUUUPUUUUUUUPUUUUUUUP@@@@@@@@EUUUUUV@F*****+DF*****+CF?????+@F0@@@@[@F%UUUU[HF*****+@F*****+@K??????N@@@@@@@HUUUUUUUPUUUUUUUPUUUUUUUWUUUUUUUXUUUUUUUPUUUUUUUP') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 127 127 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@???<???<???<???<???<???<???<???<???<???<???<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]!
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   316
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   317
submenuImage
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   318
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   319
     by the ImageEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   320
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   321
    "Do not manually edit this!!!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   322
     the ImageEditor may not be able to read the specification."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   323
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   324
    "
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   325
     ImageEditor openOnClass:self andSelector:#submenuImage
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   326
    "
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   327
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   328
    <resource: #image>
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   329
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   330
    ^Icon
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   331
        constantNamed:#'MenuEditor submenuImage'
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   332
        ifAbsentPut:[(Depth2Image new) width: 22; height: 22; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@EUUUUUV@F*****+@F*****+@G??????GD@@@@@C@EUUUUUWLF*****+@F*****+@G??????HD@@@@@C@EUUUUUW@F*****+@F*****+OG??????@D@@@@@C@EUUUUUW@F*****+@F*****+@K??????@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 255 255 255 170 170 170 127 127 127]; mask:((Depth1Image new) width: 22; height: 22; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<???<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]! !
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
   333
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   334
!MenuEditor class methodsFor:'interface specs'!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   335
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   336
basicsItemSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   337
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   338
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   339
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   340
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   341
     the UIPainter may not be able to read the specification."
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   342
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   343
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   344
     UIPainter new openOnClass:MenuEditor andSelector:#basicsItemSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   345
     MenuEditor new openInterface:#basicsItemSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   346
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   347
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   348
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   349
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   350
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   351
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   352
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   353
          #window: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   354
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   355
              #name: 'Basics Item'
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   356
              #layout: #(#LayoutFrame 216 0 173 0 482 0 491 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   357
              #label: 'Basics Item'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   358
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   359
              #max: #(#Point 1160 870)
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   360
              #bounds: #(#Rectangle 216 173 483 492)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   361
              #usePreferredExtent: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   362
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   363
          #component: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   364
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   365
              #collection: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   366
               #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   367
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   368
                    #name: 'nameKeyLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   369
                    #layout: #(#AlignmentOrigin 107 0 26 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   370
                    #activeHelpKey: #basicsKey
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   371
                    #label: 'Name Key:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   372
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   373
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   374
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   375
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   376
                    #name: 'nameKeyField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   377
                    #layout: #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   378
                    #activeHelpKey: #basicsKey
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   379
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   380
                    #model: #nameKey
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   381
                    #group: #inputGroup
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   382
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   383
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   384
                    #acceptOnTab: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   385
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   386
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   387
                    #name: 'labelLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   388
                    #layout: #(#AlignmentOrigin 107 0 51 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   389
                    #activeHelpKey: #basicsLabel
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   390
                    #label: 'Label:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   391
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   392
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   393
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   394
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   395
                    #name: 'labelField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   396
                    #layout: #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   397
                    #activeHelpKey: #basicsLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   398
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   399
                    #model: #label
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   400
                    #group: #inputGroup
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   401
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   402
                    #acceptOnTab: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   403
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   404
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   405
                    #name: 'valueLabel'
981
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   406
                    #layout: #(#AlignmentOrigin 107 0 90 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   407
                    #activeHelpKey: #basicsAction
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   408
                    #label: 'Action:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   409
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   410
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   411
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   412
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   413
                    #name: 'valueField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   414
                    #layout: #(#LayoutFrame 110 0 79 0 -5 1.0 101 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   415
                    #activeHelpKey: #basicsAction
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   416
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   417
                    #model: #value
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   418
                    #group: #inputGroup
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   419
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   420
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   421
                    #acceptOnTab: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   422
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   423
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   424
                    #name: 'argumentLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   425
                    #layout: #(#AlignmentOrigin 107 0 115 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   426
                    #activeHelpKey: #basicsArgument
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   427
                    #label: 'Argument:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   428
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   429
                    #resizeForLabel: true
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   430
                )
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   431
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   432
                    #name: 'argumentField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   433
                    #layout: #(#LayoutFrame 110 0 104 0 -5 1.0 126 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   434
                    #activeHelpKey: #basicsArgument
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   435
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   436
                    #model: #argument
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   437
                    #group: #inputGroup
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   438
                    #type: #string
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   439
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   440
                    #acceptOnTab: false
290
1428bab2aa68 an empty selection is now specified by 0
ca
parents: 287
diff changeset
   441
                )
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   442
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   443
                    #name: 'indicationLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   444
                    #layout: #(#AlignmentOrigin 107 0 155 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   445
                    #activeHelpKey: #basicsIndication
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   446
                    #label: 'Indication:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   447
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   448
                    #resizeForLabel: true
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   449
                )
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   450
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   451
                    #name: 'indicationField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   452
                    #layout: #(#LayoutFrame 110 0 144 0 -5 1.0 166 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   453
                    #activeHelpKey: #basicsIndication
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   454
                    #enableChannel: #indicationEnabled
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   455
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   456
                    #model: #indication
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   457
                    #group: #inputGroup
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   458
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   459
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   460
                    #acceptOnTab: false
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   461
                )
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   462
                 #(#LabelSpec
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   463
                    #name: 'choiceLabel'
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   464
                    #layout: #(#AlignmentOrigin 107 0 180 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   465
                    #activeHelpKey: #basicsChoice
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   466
                    #label: 'Choice:'
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   467
                    #translateLabel: true
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   468
                    #adjust: #right
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   469
                    #resizeForLabel: true
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   470
                )
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   471
                 #(#InputFieldSpec
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   472
                    #name: 'choiceField'
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   473
                    #layout: #(#LayoutFrame 110 0 169 0 -5 1.0 191 0)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   474
                    #activeHelpKey: #basicsChoice
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   475
                    #enableChannel: #choiceEnabled
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   476
                    #tabable: true
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   477
                    #model: #choice
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   478
                    #group: #inputGroup
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   479
                    #type: #symbolOrNil
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   480
                    #acceptOnReturn: false
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   481
                    #acceptOnTab: false
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   482
                )
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   483
                 #(#LabelSpec
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   484
                    #name: 'choiceValueLabel'
981
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   485
                    #layout: #(#AlignmentOrigin 107 0 205 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   486
                    #activeHelpKey: #basicsChoiceValue
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   487
                    #label: 'Value:'
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   488
                    #translateLabel: true
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   489
                    #adjust: #right
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   490
                    #resizeForLabel: true
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   491
                )
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   492
                 #(#InputFieldSpec
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   493
                    #name: 'choiceValueField'
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   494
                    #layout: #(#LayoutFrame 110 0 194 0 -5 1.0 216 0)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   495
                    #activeHelpKey: #basicsChoiceValue
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   496
                    #enableChannel: #choiceValueEnabled
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   497
                    #tabable: true
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   498
                    #model: #choiceValue
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   499
                    #group: #inputGroup
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   500
                    #type: #smalltalkObject
981
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   501
                    #immediateAccept: false
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   502
                    #acceptOnLeave: true
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   503
                    #acceptOnReturn: true
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   504
                    #acceptOnTab: true
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   505
                    #acceptOnLostFocus: true
981
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   506
                )
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   507
                 #(#CheckBoxSpec
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   508
                    #name: 'translateLabelCheckBox'
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   509
                    #layout: #(#Point 20 230)
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   510
                    #activeHelpKey: #basicsTranslateLabel
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   511
                    #tabable: true
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   512
                    #model: #translateLabel
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   513
                    #label: 'Translate Label'
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   514
                )
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   515
                 #(#CheckBoxSpec
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   516
                    #name: 'isButtonCheckBox'
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   517
                    #layout: #(#Point 20 259)
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   518
                    #activeHelpKey: #basicsIsButton
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   519
                    #tabable: true
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   520
                    #model: #isButton
5b3b9588e57d tab order
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   521
                    #label: 'Is Button'
953
1aecad8bf33a added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 943
diff changeset
   522
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   523
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   524
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   525
      )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   526
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   527
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   528
basicsLinkSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   529
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   530
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   531
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   532
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   533
     the UIPainter may not be able to read the specification."
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   534
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   535
    "
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   536
     UIPainter new openOnClass:MenuEditor andSelector:#basicsLinkSpec
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   537
     MenuEditor new openInterface:#basicsLinkSpec
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   538
    "
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   539
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   540
    <resource: #canvas>
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   541
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   542
    ^
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   543
     
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   544
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   545
          #window: 
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   546
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   547
              #name: 'Basics Link'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   548
              #layout: #(#LayoutFrame 473 0 301 0 739 0 619 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   549
              #label: 'Basics Link'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   550
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   551
              #max: #(#Point 1280 1024)
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   552
              #bounds: #(#Rectangle 473 301 740 620)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   553
              #usePreferredExtent: false
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   554
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   555
          #component: 
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   556
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   557
              #collection: 
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   558
               #(
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   559
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   560
                    #name: 'nameKeyLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   561
                    #layout: #(#AlignmentOrigin 107 0 26 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   562
                    #activeHelpKey: #nameKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   563
                    #label: 'Name Key:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   564
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   565
                    #resizeForLabel: true
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   566
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   567
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   568
                    #name: 'nameKeyField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   569
                    #layout: #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   570
                    #activeHelpKey: #basicsNameKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   571
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   572
                    #model: #nameKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   573
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   574
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   575
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   576
                    #group: #inputGroup
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   577
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   578
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   579
                    #name: 'labelLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   580
                    #layout: #(#AlignmentOrigin 107 0 51 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   581
                    #label: 'Label:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   582
                    #resizeForLabel: true
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   583
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   584
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   585
                    #name: 'labelField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   586
                    #layout: #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   587
                    #activeHelpKey: #basicsLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   588
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   589
                    #model: #label
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   590
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   591
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   592
                    #group: #inputGroup
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   593
                )
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   594
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   595
                    #name: 'menuLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   596
                    #layout: #(#AlignmentOrigin 107 0 76 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   597
                    #label: 'Menu:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   598
                    #resizeForLabel: true
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   599
                )
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   600
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   601
                    #name: 'menuField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   602
                    #layout: #(#LayoutFrame 110 0 65 0 -5 1.0 87 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   603
                    #activeHelpKey: #basicsMenu
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   604
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   605
                    #model: #submenuChannel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   606
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   607
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   608
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   609
                    #group: #inputGroup
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   610
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   611
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   612
                    #name: 'ArgumentLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   613
                    #layout: #(#AlignmentOrigin 107 0 100 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   614
                    #label: 'Argument:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   615
                    #resizeForLabel: true
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   616
                )
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   617
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   618
                    #name: 'argumentField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   619
                    #layout: #(#LayoutFrame 110 0 90 0 -5 1.0 112 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   620
                    #activeHelpKey: #basicsMenuArgument
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   621
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   622
                    #model: #argument
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   623
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   624
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   625
                    #group: #inputGroup
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   626
                )
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
   627
                 #(#CheckBoxSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   628
                    #name: 'translateLabelCheckBox'
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   629
                    #layout: #(#Point 20 190)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   630
                    #activeHelpKey: #basicsTranslateLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   631
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   632
                    #model: #translateLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   633
                    #label: 'Translate Label'
411
7f21bc19cd51 supports calling submenus with arguments
tz
parents: 410
diff changeset
   634
                )
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   635
              )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   636
          )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   637
      )
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   638
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   639
    "Modified: / 31.7.1998 / 01:18:16 / cg"
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   640
!
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   641
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   642
basicsMenuSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   643
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   644
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   645
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   646
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   647
     the UIPainter may not be able to read the specification."
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   648
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   649
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   650
     UIPainter new openOnClass:MenuEditor andSelector:#basicsMenuSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   651
     MenuEditor new openInterface:#basicsMenuSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   652
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   653
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   654
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   655
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   656
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   657
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   658
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   659
          #window: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   660
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   661
              #name: 'Basics Menu'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   662
              #layout: #(#LayoutFrame 473 0 301 0 739 0 619 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   663
              #label: 'Basics Menu'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   664
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   665
              #max: #(#Point 1280 1024)
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   666
              #bounds: #(#Rectangle 473 301 740 620)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   667
              #usePreferredExtent: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   668
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   669
          #component: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   670
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   671
              #collection: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   672
               #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   673
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   674
                    #name: 'nameKeyLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   675
                    #layout: #(#AlignmentOrigin 107 0 26 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   676
                    #label: 'Name Key:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   677
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   678
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   679
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   680
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   681
                    #name: 'nameKeyField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   682
                    #layout: #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   683
                    #activeHelpKey: #basicsNameKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   684
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   685
                    #model: #nameKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   686
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   687
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   688
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   689
                    #group: #inputGroup
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   690
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   691
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   692
                    #name: 'labelLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   693
                    #layout: #(#AlignmentOrigin 107 0 51 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   694
                    #label: 'Label:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   695
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   696
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   697
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   698
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   699
                    #name: 'labelField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   700
                    #layout: #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   701
                    #activeHelpKey: #basicsLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   702
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   703
                    #model: #label
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   704
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   705
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   706
                    #group: #inputGroup
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   707
                )
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   708
                 #(#CheckBoxSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   709
                    #name: 'translateLabelCheckBox'
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   710
                    #layout: #(#Point 20 190)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   711
                    #activeHelpKey: #basicsTranslateLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   712
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   713
                    #model: #translateLabel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   714
                    #label: 'Translate Label'
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   715
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   716
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   717
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   718
      )
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   719
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   720
    "Modified: / 31.7.1998 / 01:18:23 / cg"
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   721
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   722
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   723
basicsRootSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   724
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   725
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   726
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   727
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   728
     the UIPainter may not be able to read the specification."
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   729
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   730
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   731
     UIPainter new openOnClass:MenuEditor andSelector:#basicsRootSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   732
     MenuEditor new openInterface:#basicsRootSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   733
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   734
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   735
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   736
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   737
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   738
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   739
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   740
          #window: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   741
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   742
              #name: 'Basics Root'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   743
              #layout: #(#LayoutFrame 473 0 301 0 739 0 619 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   744
              #label: 'Basics Root'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   745
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   746
              #max: #(#Point 1280 1024)
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   747
              #bounds: #(#Rectangle 473 301 740 620)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   748
              #usePreferredExtent: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   749
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   750
          #component: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   751
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   752
              #collection: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   753
               #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   754
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   755
                    #name: 'selectorLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   756
                    #layout: #(#AlignmentOrigin 107 0 26 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   757
                    #label: 'Selector:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   758
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   759
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   760
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   761
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   762
                    #name: 'selectorField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   763
                    #layout: #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   764
                    #activeHelpKey: #basicsSelector
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   765
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   766
                    #model: #label
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   767
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   768
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   769
                    #group: #inputGroup
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   770
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   771
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   772
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   773
      )
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   774
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   775
    "Modified: / 31.7.1998 / 01:18:28 / cg"
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   776
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   777
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   778
basicsSeparatorSpec
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
    "
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   786
     UIPainter new openOnClass:MenuEditor andSelector:#basicsSeparatorSpec
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   787
     MenuEditor new openInterface:#basicsSeparatorSpec
199
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
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   792
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   793
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   794
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   795
          #window: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   796
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   797
              #name: 'Basics Separator'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   798
              #layout: #(#LayoutFrame 473 0 301 0 739 0 619 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   799
              #label: 'Basics Separator'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   800
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   801
              #max: #(#Point 1160 870)
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   802
              #bounds: #(#Rectangle 473 301 740 620)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   803
              #usePreferredExtent: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   804
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   805
          #component: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   806
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   807
              #collection: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   808
               #(
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   809
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   810
                    #name: 'separatorLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   811
                    #layout: #(#AlignmentOrigin 127 0 26 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   812
                    #label: 'Separator Type:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   813
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   814
                    #resizeForLabel: true
218
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   815
                )
5c88856b360f access MenuEditor from any specification;
ca
parents: 215
diff changeset
   816
                 #(#ComboListSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   817
                    #name: 'seperatorList'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   818
                    #layout: #(#LayoutFrame 132 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   819
                    #activeHelpKey: #basicsSeparatorType
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   820
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   821
                    #model: #seperatorSelection
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   822
                    #useIndex: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   823
                )
606
ca
parents: 603
diff changeset
   824
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   825
                    #name: 'visibilityLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   826
                    #layout: #(#AlignmentOrigin 127 0 76 0 1 0.5)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   827
                    #label: 'Visibility:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   828
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   829
                    #resizeForLabel: true
606
ca
parents: 603
diff changeset
   830
                )
ca
parents: 603
diff changeset
   831
                 #(#InputFieldSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   832
                    #name: 'visibilityInputField'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   833
                    #layout: #(#LayoutFrame 132 0 65 0 -5 1.0 87 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   834
                    #activeHelpKey: #detailsVisibility
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   835
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   836
                    #model: #isVisible
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   837
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   838
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   839
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   840
                    #group: #inputGroup
606
ca
parents: 603
diff changeset
   841
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   842
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   843
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   844
      )
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   845
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   846
    "Modified: / 31.7.1998 / 01:18:32 / cg"
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
detailsEditSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   850
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   851
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   852
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   853
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   854
     the UIPainter may not be able to read the specification."
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   855
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   856
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   857
     UIPainter new openOnClass:MenuEditor andSelector:#detailsEditSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   858
     MenuEditor new openInterface:#detailsEditSpec
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   859
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   860
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   861
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   862
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   863
    ^
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   864
     
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   865
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   866
          #window: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   867
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   868
              #name: 'Details Edit'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   869
              #layout: #(#LayoutFrame 332 0 374 0 590 0 661 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
   870
              #label: 'Details Edit'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   871
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   872
              #max: #(#Point 1280 1024)
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   873
              #bounds: #(#Rectangle 332 374 591 662)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   874
              #usePreferredExtent: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   875
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   876
          #component: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   877
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   878
              #collection: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   879
               #(
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   880
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   881
                    #name: 'shortcutKeyLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   882
                    #layout: #(#AlignmentOrigin 107 0 26 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   883
                    #activeHelpKey: #detailsAccelerator
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   884
                    #label: 'Accelerator:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   885
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   886
                    #resizeForLabel: true
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   887
                )
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   888
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   889
                    #name: 'shortcutKeyField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   890
                    #layout: #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   891
                    #activeHelpKey: #detailsAccelerator
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   892
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   893
                    #model: #shortcutKey
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   894
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   895
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   896
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   897
                    #group: #inputGroup
371
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   898
                )
7017eaabd9ed add help text
ca
parents: 359
diff changeset
   899
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   900
                    #name: 'enabledLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   901
                    #layout: #(#AlignmentOrigin 107 0 51 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   902
                    #activeHelpKey: #detailsEnabled
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   903
                    #label: 'Enabled:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   904
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   905
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   906
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   907
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   908
                    #name: 'enabledField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   909
                    #layout: #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   910
                    #activeHelpKey: #detailsEnabled
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   911
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   912
                    #model: #enabled
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   913
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   914
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   915
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   916
                    #group: #inputGroup
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   917
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   918
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   919
                    #name: 'visibilityLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   920
                    #layout: #(#AlignmentOrigin 107 0 76 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   921
                    #activeHelpKey: #detailsVisibility
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   922
                    #label: 'Visibility:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   923
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   924
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   925
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   926
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   927
                    #name: 'isVisibleInputField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   928
                    #layout: #(#LayoutFrame 110 0 65 0 -5 1.0 87 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   929
                    #activeHelpKey: #detailsVisibility
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   930
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   931
                    #model: #isVisible
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   932
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   933
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   934
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   935
                    #group: #inputGroup
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   936
                )
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
   937
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   938
                    #name: 'StartGroupLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   939
                    #layout: #(#AlignmentOrigin 107 0 111 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   940
                    #activeHelpKey: #detailsStartGroup
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   941
                    #label: 'Start Group:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   942
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   943
                    #resizeForLabel: true
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
   944
                )
de091386bbae add new feature:
ca
parents: 525
diff changeset
   945
                 #(#PopUpListSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   946
                    #name: 'StartGroupPopUp'
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   947
                    #activeHelpKey: #detailsStartGroup
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   948
                    #layout: #(#LayoutFrame 110 0 100 0 -5 1.0 122 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   949
                    #label: 'PopUpList'
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   950
                    #tabable: true
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   951
                    #model: #startGroup
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   952
                    #menu: 
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
   953
                     #(nil
de091386bbae add new feature:
ca
parents: 525
diff changeset
   954
                        #right
de091386bbae add new feature:
ca
parents: 525
diff changeset
   955
                    )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   956
                    #useIndex: false
532
de091386bbae add new feature:
ca
parents: 525
diff changeset
   957
                )
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   958
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   959
                    #name: 'accessCharLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   960
                    #layout: #(#AlignmentOrigin 217 0 142 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   961
                    #activeHelpKey: #detailsAccessCharaterPosition
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   962
                    #label: 'Access Character Position:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   963
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   964
                    #resizeForLabel: true
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   965
                )
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   966
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   967
                    #name: 'accessCharField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   968
                    #layout: #(#LayoutFrame 220 0 131 0 -5 1.0 153 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   969
                    #activeHelpKey: #detailsAccessCharaterPosition
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   970
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   971
                    #model: #accessCharacterPos
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   972
                    #type: #numberOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   973
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   974
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   975
                    #group: #inputGroup
539
1116829f5525 support of visible/unvisible items
ca
parents: 537
diff changeset
   976
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   977
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   978
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   979
      )
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
   980
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
   981
    "Modified: / 18.8.1998 / 16:16:46 / cg"
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   982
!
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   983
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   984
imageEditSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   985
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   986
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   987
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   988
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
   989
     the UIPainter may not be able to read the specification."
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   990
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   991
    "
398
155310ec83aa revised version
tz
parents: 382
diff changeset
   992
     UIPainter new openOnClass:MenuEditor andSelector:#imageEditSpec
155310ec83aa revised version
tz
parents: 382
diff changeset
   993
     MenuEditor new openInterface:#imageEditSpec
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   994
    "
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   995
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   996
    <resource: #canvas>
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   997
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
   998
    ^
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
   999
     
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1000
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1001
          #window: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1002
           #(#WindowSpec
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  1003
              #name: 'Image Item'
888
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1004
              #layout: #(#LayoutFrame 182 0 348 0 577 0 624 0)
728
638ae95885e1 method comments added
tz
parents: 725
diff changeset
  1005
              #label: 'Image Item'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1006
              #min: #(#Point 10 10)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1007
              #max: #(#Point 1280 1024)
888
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1008
              #bounds: #(#Rectangle 182 348 578 625)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1009
              #usePreferredExtent: false
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1010
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1011
          #component: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1012
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1013
              #collection: 
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1014
               #(
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1015
                 #(#CheckBoxSpec
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1016
                    #name: 'iconAndLabelCheckBox'
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1017
                    #layout: #(#LayoutOrigin 20 0 215 0)
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1018
                    #activeHelpKey: #imageImageAndLabel
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1019
                    #tabable: true
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1020
                    #model: #iconAndLabel
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1021
                    #label: 'Image & Label'
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1022
                )
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1023
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1024
                    #name: 'retrieverLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1025
                    #layout: #(#AlignmentOrigin 107 0 26 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  1026
                    #activeHelpKey: #imageRetriever
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1027
                    #label: 'Retriever:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1028
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1029
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1030
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1031
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1032
                    #name: 'retrieverField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1033
                    #layout: #(#LayoutFrame 110 0 15 0 -5 1.0 37 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1034
                    #activeHelpKey: #imageRetriever
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1035
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1036
                    #model: #retriever
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1037
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1038
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1039
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
  1040
                    #group: #inputGroup
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1041
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1042
                 #(#LabelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1043
                    #name: 'iconLabel'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1044
                    #layout: #(#AlignmentOrigin 107 0 51 0 1 0.5)
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  1045
                    #activeHelpKey: #imageSelector
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1046
                    #label: 'Selector:'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1047
                    #adjust: #right
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1048
                    #resizeForLabel: true
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1049
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1050
                 #(#InputFieldSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1051
                    #name: 'iconField'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1052
                    #layout: #(#LayoutFrame 110 0 40 0 -5 1.0 62 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1053
                    #activeHelpKey: #imageSelector
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1054
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1055
                    #model: #icon
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1056
                    #type: #symbolOrNil
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1057
                    #acceptOnReturn: false
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1058
                    #acceptOnTab: false
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
  1059
                    #group: #inputGroup
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1060
                )
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
  1061
                 #(#ActionButtonSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1062
                    #name: 'imageEditorButton'
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1063
                    #layout: #(#LayoutFrame 5 0.6 67 0 -5 1 91 0)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1064
                    #activeHelpKey: #imageImageEditor
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1065
                    #label: 'Image Editor'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1066
                    #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1067
                    #model: #doEditImage
469
28bcb1982ef9 tabs added
tz
parents: 455
diff changeset
  1068
                )
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1069
                 #(#SequenceViewSpec
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1070
                    #name: 'systemOrUserImagesList'
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  1071
                    #activeHelpKey: #imageImageList
888
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1072
                    #layout: #(#LayoutFrame 110 0 67 0 0 0.6 200 0)
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1073
                    #model: #selectionOfImage
888
2712edb36a3a image methods removing
tz
parents: 885
diff changeset
  1074
                    #menu: #menuEditImage
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1075
                    #hasHorizontalScrollBar: true
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1076
                    #hasVerticalScrollBar: true
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1077
                    #miniScrollerHorizontal: true
885
34cefb1e6dda double clicking opens an Image Editor
tz
parents: 882
diff changeset
  1078
                    #doubleClickSelector: #doEditImage
879
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1079
                    #valueChangeSelector: #imageSelected
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1080
                    #useIndex: false
9f1a94815f07 list all images from the retriever in a list
tz
parents: 875
diff changeset
  1081
                    #sequenceList: #listOfImages
199
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1082
                )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1083
              )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1084
          )
6ce84c1270a6 intitial checkin
ca
parents:
diff changeset
  1085
      )
931
059ac9cea31f enterFields grouped.
Claus Gittinger <cg@exept.de>
parents: 916
diff changeset
  1086
959
96728cae02c4 help texts
Claus Gittinger <cg@exept.de>
parents: 955
diff changeset
  1087
    "Modified: / 18.8.1998 / 16:17:59 / cg"
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1088
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1089
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1090
windowSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1091
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1092
     by the UIPainter of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1093
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1094
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1095
     the UIPainter may not be able to read the specification."
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1096
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1097
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1098
     UIPainter new openOnClass:MenuEditor andSelector:#windowSpec
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1099
     MenuEditor new openInterface:#windowSpec
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1100
     MenuEditor open
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1101
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1102
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1103
    <resource: #canvas>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1104
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1105
    ^
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1106
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1107
       #(#FullSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1108
          #window: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1109
           #(#WindowSpec
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1110
              #name: 'Menu Editor'
955
f4f7d2ebd3ce resize window (window spec)
ca
parents: 953
diff changeset
  1111
              #layout: #(#LayoutFrame 53 0 403 0 609 0 810 0)
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1112
              #label: 'Menu Editor'
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1113
              #min: #(#Point 510 390)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1114
              #max: #(#Point 1152 900)
955
f4f7d2ebd3ce resize window (window spec)
ca
parents: 953
diff changeset
  1115
              #bounds: #(#Rectangle 53 403 610 811)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1116
              #menu: #menu
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1117
              #usePreferredExtent: false
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1118
          )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1119
          #component: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1120
           #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1121
              #collection: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1122
               #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1123
                 #(#MenuPanelSpec
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1124
                    #name: 'menuToolbarView'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1125
                    #layout: #(#LayoutFrame 0 0.0 0 0 0 1.0 32 0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1126
                    #menu: #menuToolbar
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1127
                    #showSeparatingLines: true
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1128
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1129
                 #(#VariableHorizontalPanelSpec
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1130
                    #name: 'VariableHorizontalPanel'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1131
                    #layout: #(#LayoutFrame 0 0.0 34 0.0 0 1.0 -26 1.0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1132
                    #component: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1133
                     #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1134
                        #collection: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1135
                         #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1136
                           #(#ArbitraryComponentSpec
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1137
                              #name: 'TreeView'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1138
                              #menu: #menuEdit
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1139
                              #hasHorizontalScrollBar: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1140
                              #hasVerticalScrollBar: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1141
                              #component: #treeView
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1142
                              #hasBorder: false
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1143
                          )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1144
                           #(#ViewSpec
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1145
                              #name: 'Box'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1146
                              #component: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1147
                               #(#SpecCollection
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1148
                                  #collection: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1149
                                   #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1150
                                     #(#NoteBookViewSpec
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1151
                                        #name: 'NoteBook'
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1152
                                        #layout: #(#LayoutFrame 1 0.0 0 0.0 1 1.0 -30 1.0)
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1153
                                        #tabable: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1154
                                        #model: #tabModel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1155
                                        #menu: #tabList
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1156
                                        #useIndex: true
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1157
                                        #canvas: #noteBookView
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1158
                                    )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1159
                                     #(#UISubSpecification
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1160
                                        #name: 'SubSpecification'
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1161
                                        #layout: #(#LayoutFrame 2 0.0 -26 1 -2 1.0 -2 1.0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1162
                                        #majorKey: #ToolApplicationModel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1163
                                        #minorKey: #windowSpecForCommit
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1164
                                    )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1165
                                  )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1166
                              )
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1167
                              #level: -1
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1168
                          )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1169
                        )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1170
                    )
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1171
                    #handles: #(#Any 0.30117 1.0)
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1172
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1173
                 #(#UISubSpecification
734
9fdcc26c458f method comments completed
tz
parents: 728
diff changeset
  1174
                    #name: 'InfoBarSubSpec'
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1175
                    #layout: #(#LayoutFrame 0 0.0 -24 1 0 1.0 0 1.0)
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1176
                    #majorKey: #ToolApplicationModel
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1177
                    #minorKey: #windowSpecForInfoBar
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1178
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1179
              )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1180
          )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1181
      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1182
! !
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1183
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1184
!MenuEditor class methodsFor:'menu specs'!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1185
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1186
menu
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1187
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1188
     by the MenuEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1189
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1190
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1191
     the MenuEditor may not be able to read the specification."
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1192
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1193
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1194
     MenuEditor new openOnClass:MenuEditor andSelector:#menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1195
     (Menu new fromLiteralArrayEncoding:(MenuEditor menu)) startUp
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
    <resource: #menu>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1199
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1200
    ^
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1201
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1202
       #(#Menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1203
          
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1204
           #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1205
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1206
                #label: 'About'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1207
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1208
                #accessCharacterPosition: 1
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1209
                #labelImage: #(#ResourceRetriever nil #menuIcon)
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1210
                #submenuChannel: #menuAbout
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1211
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1212
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1213
                #label: 'File'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1214
                #activeHelpKey: #file
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1215
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1216
                #submenu: 
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1217
                 #(#Menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1218
                    
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1219
                     #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1220
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1221
                          #label: 'New'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1222
                          #value: #doNew
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1223
                          #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1224
                          #activeHelpKey: #fileNew
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1225
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1226
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1227
                          #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1228
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1229
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1230
                          #label: 'Load...'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1231
                          #translateLabel: true
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1232
                          #value: #doLoad
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1233
                          #activeHelpKey: #fileLoad
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1234
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1235
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1236
                          #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1237
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1238
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1239
                          #label: 'Save'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1240
                          #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1241
                          #value: #doSave
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1242
                          #activeHelpKey: #fileSave
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
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1245
                          #label: 'Save As...'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1246
                          #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1247
                          #value: #doSaveAs
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1248
                          #activeHelpKey: #fileSaveAs
633
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  1249
                      )
11bbf4599843 uses dynamic tree items and needs ListSpecEditor as superclass (-> libview2)
tz
parents: 627
diff changeset
  1250
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1251
                          #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1252
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1253
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1254
                          #label: 'Pick A Menu...'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1255
                          #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1256
                          #value: #doPickAMenu
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1257
                          #activeHelpKey: #filePickAMenu
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1258
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1259
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1260
                          #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1261
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1262
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1263
                          #label: 'Browse Class'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1264
                          #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1265
                          #value: #doBrowseClass
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1266
                          #activeHelpKey: #fileBrowseClass
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1267
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1268
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1269
                          #label: '-'
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1270
                      )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1271
                       #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1272
                          #label: 'Exit'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1273
                          #translateLabel: true
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1274
                          #value: #closeRequest
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1275
                          #activeHelpKey: #fileExit
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
                    ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1278
                    nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1279
                )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1280
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1281
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1282
                #label: 'Edit'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1283
                #activeHelpKey: #edit
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1284
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1285
                #submenuChannel: #menuEdit
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
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1288
                #label: 'Add'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1289
                #activeHelpKey: #add
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1290
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1291
                #submenuChannel: #menuAdd
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1292
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1293
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1294
                #label: 'Test'
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1295
                #activeHelpKey: #test
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1296
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1297
                #submenuChannel: #submenuTest
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1298
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1299
             #(#MenuItem
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1300
                #label: 'Settings'
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1301
                #submenu: 
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1302
                 #(#Menu
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1303
                    
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1304
                     #(
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1305
                       #(#MenuItem
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1306
                          #label: 'Fonts'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1307
                          #translateLabel: true
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1308
                          #submenuChannel: #menuFont
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1309
                      )
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1310
                    ) nil
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1311
                    nil
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1312
                )
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1313
            )
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1314
             #(#MenuItem
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1315
                #label: 'History'
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1316
                #activeHelpKey: #history
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1317
                #translateLabel: true
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1318
                #submenuChannel: #menuHistory
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1319
            )
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1320
             #(#MenuItem
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1321
                #label: 'Help'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1322
                #translateLabel: true
686
6eabad89ebf6 cut/copy/paste button added + delete function
tz
parents: 669
diff changeset
  1323
                #startGroup: #right
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1324
                #submenu: 
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1325
                 #(#Menu
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1326
                    
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1327
                     #(
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1328
                       #(#MenuItem
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1329
                          #label: 'Documentation'
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1330
                          #value: #openHTMLDocument:
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1331
                          #translateLabel: true
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1332
                          #activeHelpKey: #helpTutorial
764
5722b94330ef docu call
tz
parents: 748
diff changeset
  1333
                          #argument: 'tools/uipainter/MenuEditor.html'
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1334
                      )
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1335
                       #(#MenuItem
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1336
                          #label: '-'
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1337
                      )
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1338
                       #(#MenuItem
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1339
                          #label: 'Help Tool'
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1340
                          #value: #openHTMLDocument:
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1341
                          #translateLabel: true
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1342
                          #activeHelpKey: #helpHelpTool
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1343
                          #argument: 'tools/uipainter/HelpTool.html'
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1344
                      )
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1345
                       #(#MenuItem
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1346
                          #label: '-'
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1347
                      )
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1348
                       #(#MenuItem
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1349
                          #label: 'Show Help Texts'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1350
                          #translateLabel: true
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1351
                          #activeHelpKey: #helpShowHelp
936
f3db8359547a method rename: #showHelp -> #showingHelp
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  1352
                          #indication: #showingHelp:
748
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1353
                      )
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1354
                    ) nil
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1355
                    nil
03bc27132916 update other instances if clipboarding
tz
parents: 738
diff changeset
  1356
                )
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1357
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1358
          ) nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1359
          nil
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1360
      )
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1361
936
f3db8359547a method rename: #showHelp -> #showingHelp
Claus Gittinger <cg@exept.de>
parents: 931
diff changeset
  1362
    "Modified: / 31.7.1998 / 18:19:47 / cg"
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1363
!
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1364
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1365
menuAdd
738
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1366
    "This resource specification was automatically generated
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1367
     by the MenuEditor of ST/X."
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1368
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1369
    "Do not manually edit this!! If it is corrupted,
ebc4a399f4dc user can define own font styles
tz
parents: 734
diff changeset
  1370
     the MenuEditor may not be able to read the specification."
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1371
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1372
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1373
     MenuEditor new openOnClass:MenuEditor andSelector:#menuAdd
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1374
     (Menu new fromLiteralArrayEncoding:(MenuEditor menuAdd)) startUp
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1375
    "
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1376
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1377
    <resource: #menu>
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1378
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1379
    ^
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1380
     
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1381
       #(#Menu
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1382
          
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1383
           #(
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1384
             #(#MenuItem
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1385
                #label: 'Menu Item'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1386
                #translateLabel: true
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1387
                #value: #doCreateItem
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1388
                #activeHelpKey: #addMenuItem
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1389
                #labelImage: #(#ResourceRetriever #MenuEditor #menuItemImage 'Menu Item')
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1390
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1391
             #(#MenuItem
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1392
                #label: 'Menu Separator'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1393
                #translateLabel: true
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1394
                #value: #doCreateSep
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1395
                #activeHelpKey: #addMenuSeparator
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1396
                #labelImage: #(#ResourceRetriever #MenuEditor #menuSeparatorImage 'Menu Separator')
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1397
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1398
             #(#MenuItem
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1399
                #label: '-'
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
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1402
                #label: 'Submenu'
836
b44c0047291f national strings
Claus Gittinger <cg@exept.de>
parents: 804
diff changeset
  1403
                #translateLabel: true
703
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1404
                #value: #doCreateMenu
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1405
                #activeHelpKey: #addSubMenu
5d0a14bdcc15 docu call changed
tz
parents: 699
diff changeset
  1406
                #labelImage: #(#ResourceRetriever #MenuEditor #submenuImage 'Submenu')
525
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1407
            )
3c59244da8c8 dialog headline changed + some cleans
tz
parents: 520
diff changeset
  1408
             #(#MenuItem