MenuItem.st
author convert-repo
Thu, 06 Dec 2018 04:35:51 +0000
changeset 4215 bc67d59fcf46
parent 4168 0656fd9bc4b2
child 4216 91c9929f64e8
permissions -rw-r--r--
update tags
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4084
c8e84f0ba64e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
     1
"{ Encoding: utf8 }"
c8e84f0ba64e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
     2
1196
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
     3
"
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
     4
 COPYRIGHT (c) 1998 by eXept Software AG
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
     5
              All Rights Reserved
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
     6
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
     7
 This software is furnished under a license and may be used
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
     8
 only in accordance with the terms of that license and with the
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    10
 be provided or otherwise made available to, or used by, any
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    11
 other person.  No title to or ownership of the software is
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    12
 hereby transferred.
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    13
"
1369
281acc9f1a73 dont store choiceValue for non-choice items.
Claus Gittinger <cg@exept.de>
parents: 1360
diff changeset
    14
"{ Package: 'stx:libview2' }"
281acc9f1a73 dont store choiceValue for non-choice items.
Claus Gittinger <cg@exept.de>
parents: 1360
diff changeset
    15
3843
52c875014c46 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3353
diff changeset
    16
"{ NameSpace: Smalltalk }"
52c875014c46 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3353
diff changeset
    17
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
Object subclass:#MenuItem
4162
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
    19
	instanceVariableNames:'flags activeHelpKey enabled label itemValue nameKey startGroup
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
    20
		isVisible indication submenu submenuChannel submenuProvider
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
    21
		shortcutKey labelImage accessCharacterPosition argument choice
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
    22
		choiceValue font auxValue uuid'
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    23
	classVariableNames:'FLAG_FORCE_MENUINDICATOR FLAG_TRANSLATE_LABEL FLAG_ISBUTTON
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    24
		FLAG_HIDE_ONACTIVATED FLAG_TRIGGER_ONDOWN
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    25
		FLAG_SHOW_BUSYCURSOR_WHILE_PERFORMING FLAG_KEEP_LINKEDMENU
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    26
		FLAG_SEND_TO_ORIGINATOR FLAG_IGNORE_MNEMONIC_KEYS
4168
0656fd9bc4b2 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
    27
		FLAG_IGNORE_SHORTCUTS FLAG_IS_MENUSLICE FLAG_HORIZONTAL_LAYOUT
0656fd9bc4b2 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
    28
		FLAG_NOHIDE_ONACTIVATED FLAG_NOTRANSLATE_LABEL'
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
	poolDictionaries:''
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
	category:'Views-Support'
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
!
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
!MenuItem class methodsFor:'documentation'!
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
1196
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    35
copyright
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    36
"
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    37
 COPYRIGHT (c) 1998 by eXept Software AG
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    38
              All Rights Reserved
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    39
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    40
 This software is furnished under a license and may be used
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    41
 only in accordance with the terms of that license and with the
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    42
 inclusion of the above copyright notice.   This software may not
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    43
 be provided or otherwise made available to, or used by, any
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    44
 other person.  No title to or ownership of the software is
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    45
 hereby transferred.
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    46
"
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    47
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    48
!
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    49
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
documentation
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
"
4034
1e94a92845a1 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4033
diff changeset
    52
    This together with MenuPanel will eventually replace
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    most of the MenuView and PopUpMenu stuff.
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
    (and hopefully be ST-80 compatible ...)
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
    For now, only a subset of the full protocol is implemented.
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
4034
1e94a92845a1 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4033
diff changeset
    58
    new:
1e94a92845a1 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4033
diff changeset
    59
        %(xx) in label text will be expanded by asking the application
1e94a92845a1 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4033
diff changeset
    60
        for the xx labelFor:-aspect.
1e94a92845a1 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4033
diff changeset
    61
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
    [author:]
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
        Claus Gittinger
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
    65
    [instance variables:]
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
    66
        label: MUST be a CharacterArray.
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
    67
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
    [see also:]
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
        MenuItem
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
        PopUpMenu
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
"
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
! !
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
490
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
    74
!MenuItem class methodsFor:'instance creation'!
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
    75
1044
5ecf46d0f1b7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
    76
label:aString
5ecf46d0f1b7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
    77
    "create and return a new menuItem, given a label string"
5ecf46d0f1b7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
    78
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
    79
    ^ self new
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
    80
        label:aString;
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
    81
        yourself
1044
5ecf46d0f1b7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
    82
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
    83
    "Created: / 14-08-1998 / 19:19:14 / cg"
1044
5ecf46d0f1b7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
    84
!
5ecf46d0f1b7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
    85
2813
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
    86
label:labelString choice:choiceAspect choiceValue:selectorOrValue
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
    87
    "create and return a new menuItem, given its label and choice/value.
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
    88
     This will create a Radio-Button-like item."
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
    89
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
    90
    ^ (self new)
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
    91
        label:labelString; choice:choiceAspect; choiceValue:selectorOrValue;
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
    92
        yourself
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
    93
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
    94
    "Modified (format): / 26-04-2012 / 12:06:41 / cg"
2813
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
    95
!
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
    96
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
    97
label:labelString itemValue:selectorOrValue
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
    98
    "create and return a new menuItem, given its label and value"
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
    99
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   100
    ^ (self new)
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   101
        label:labelString itemValue:selectorOrValue;
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   102
        yourself
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   103
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   104
    "Created: / 09-09-2012 / 13:21:48 / cg"
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   105
!
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   106
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   107
label:labelString itemValue:selectorOrValue argument:messageArg
3353
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   108
    "create and return a new menuItem, given its label and value
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   109
     and an argument to be passed with the action"
1030
3684379a1ac8 added inst-creation #label:value:
Claus Gittinger <cg@exept.de>
parents: 985
diff changeset
   110
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   111
    ^ (self new)
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   112
        label:labelString;
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   113
        itemValue:selectorOrValue argument:messageArg;
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   114
        yourself
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   115
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   116
    "Created: / 09-09-2012 / 13:22:31 / cg"
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   117
!
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   118
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   119
label:labelString itemValue:selectorOrValue enabled:enabledHolder
3353
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   120
    "create and return a new menuItem, given its label, value
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   121
     and enabled holder, which can be a boolean, a boolean valueHolder,
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   122
     a block or a selector (to be sent to the application)"
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   123
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   124
    ^ (self new)
3352
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   125
        label:labelString itemValue:selectorOrValue enabled:enabledHolder
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   126
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   127
    "Created: / 09-09-2012 / 13:23:05 / cg"
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   128
!
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   129
3352
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   130
label:labelString itemValue:selectorOrValue translateLabel:translateLabel
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   131
    "create and return a new menuItem, given its label, value and translateLabel flag"
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   132
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   133
    ^ (self new)
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   134
        label:labelString
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   135
        itemValue:selectorOrValue
3352
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   136
        translateLabel:translateLabel
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   137
!
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   138
3221
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   139
label:labelString submenuChannel:aSymbolOrValueHolder
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   140
    "create and return a new menuItem, given its label and value"
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   141
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   142
    ^ (self new)
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   143
        label:labelString submenuChannel:aSymbolOrValueHolder;
3221
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   144
        yourself
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   145
!
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   146
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   147
label:labelString value:selectorOrValue
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   148
    <resource: #obsolete>
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   149
    "create and return a new menuItem, given its label and value"
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   150
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   151
    ^ self label:labelString itemValue:selectorOrValue
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   152
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   153
    "Created: / 04-08-1998 / 17:34:18 / cg"
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   154
!
1030
3684379a1ac8 added inst-creation #label:value:
Claus Gittinger <cg@exept.de>
parents: 985
diff changeset
   155
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   156
label:labelString value:selectorOrValue argument:messageArg
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   157
    <resource: #obsolete>
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   158
    "create and return a new menuItem, given its label and value"
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   159
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   160
    ^ (self new)
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   161
        label:labelString; value:selectorOrValue; argument:messageArg;
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   162
        yourself
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   163
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   164
    "Created: / 26-04-2012 / 12:06:34 / cg"
1030
3684379a1ac8 added inst-creation #label:value:
Claus Gittinger <cg@exept.de>
parents: 985
diff changeset
   165
!
3684379a1ac8 added inst-creation #label:value:
Claus Gittinger <cg@exept.de>
parents: 985
diff changeset
   166
2876
de49b76ae355 added: #label:value:enabled:
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   167
label:labelString value:selectorOrValue enabled:enabledHolder
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   168
    <resource: #obsolete>
2876
de49b76ae355 added: #label:value:enabled:
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   169
    "create and return a new menuItem, given its label and value"
de49b76ae355 added: #label:value:enabled:
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   170
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   171
    ^ (self new)
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   172
        label:labelString; value:selectorOrValue;
2876
de49b76ae355 added: #label:value:enabled:
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   173
        enabled:enabledHolder;
de49b76ae355 added: #label:value:enabled:
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   174
        yourself
de49b76ae355 added: #label:value:enabled:
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   175
de49b76ae355 added: #label:value:enabled:
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   176
    "Created: / 29-10-2010 / 12:21:27 / cg"
de49b76ae355 added: #label:value:enabled:
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   177
!
de49b76ae355 added: #label:value:enabled:
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   178
490
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
   179
labeled:aString
3225
7cfefeb97495 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   180
    <resource: #obsolete>
7cfefeb97495 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   181
1030
3684379a1ac8 added inst-creation #label:value:
Claus Gittinger <cg@exept.de>
parents: 985
diff changeset
   182
    "create and return a new menuItem, given a label string"
3684379a1ac8 added inst-creation #label:value:
Claus Gittinger <cg@exept.de>
parents: 985
diff changeset
   183
3225
7cfefeb97495 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   184
    ^ self label:aString
1030
3684379a1ac8 added inst-creation #label:value:
Claus Gittinger <cg@exept.de>
parents: 985
diff changeset
   185
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   186
    "Modified: / 26-04-2012 / 12:07:12 / cg"
1486
251879696655 *** empty log message ***
martin
parents: 1468
diff changeset
   187
!
251879696655 *** empty log message ***
martin
parents: 1468
diff changeset
   188
251879696655 *** empty log message ***
martin
parents: 1468
diff changeset
   189
separator
3964
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   190
    "create and return a new menuItem for a '----' separator"
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   191
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   192
    ^ self separator:'-'
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   193
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   194
    "Modified: / 19-07-2017 / 09:17:30 / cg"
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   195
!
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   196
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   197
separator2
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   198
    "create and return a new menuItem for a '====' separator"
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   199
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   200
    ^ self separator:'='
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   201
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   202
    "Created: / 19-07-2017 / 09:16:54 / cg"
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   203
!
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   204
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   205
separator:sepString
1486
251879696655 *** empty log message ***
martin
parents: 1468
diff changeset
   206
    "create and return a new menuItem for a separator"
251879696655 *** empty log message ***
martin
parents: 1468
diff changeset
   207
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   208
    ^ self new
3964
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   209
        label:sepString; translateLabel:false;
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   210
        yourself
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   211
3964
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   212
    "Created: / 19-07-2017 / 09:17:21 / cg"
490
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
   213
! !
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
   214
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   215
!MenuItem class methodsFor:'class initialization'!
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   216
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   217
initialize
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   218
    FLAG_HORIZONTAL_LAYOUT                := 16r0001.
4168
0656fd9bc4b2 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   219
    FLAG_NOTRANSLATE_LABEL                := 16r0002.
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   220
    FLAG_ISBUTTON                         := 16r0004.
4168
0656fd9bc4b2 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   221
    FLAG_NOHIDE_ONACTIVATED               := 16r0008.
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   222
    FLAG_TRIGGER_ONDOWN                   := 16r0010.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   223
    FLAG_SHOW_BUSYCURSOR_WHILE_PERFORMING := 16r0020.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   224
    FLAG_KEEP_LINKEDMENU                  := 16r0040.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   225
    FLAG_SEND_TO_ORIGINATOR               := 16r0080.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   226
    FLAG_IGNORE_MNEMONIC_KEYS             := 16r0100.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   227
    FLAG_IGNORE_SHORTCUTS                 := 16r0200.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   228
    FLAG_IS_MENUSLICE                     := 16r0400.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   229
    FLAG_FORCE_MENUINDICATOR              := 16r0800.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   230
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   231
    "Created: / 09-08-2018 / 16:36:25 / Claus Gittinger"
4168
0656fd9bc4b2 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   232
    "Modified: / 14-08-2018 / 12:29:30 / Claus Gittinger"
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   233
! !
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   234
2264
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   235
!MenuItem class methodsFor:'constants'!
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   236
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   237
supportedStartGroupValues
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   238
    "start group #left #right #conditionalRight ...
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   239
     At the moment only #left/nil, #right/#conditionalRight are implemented.
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   240
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   241
     The meanings are:
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   242
        nil                 - default under control of the menu
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   243
        #left               - left align
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   244
        #right              - place at the right far end
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   245
        #conditionalRight   - controlled by a styleSheet variable;
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   246
                              like #right under all non-win32 systems,
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   247
                              ignored on win32.
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   248
                              Use with help-menu, which should be at the far right on some
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   249
                              viewStyles, but not under win32."
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   250
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   251
    ^ #(nil #left #right #conditionalRight)
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   252
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   253
    "Created: / 16-10-2006 / 13:09:27 / cg"
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   254
! !
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   255
1763
fabe0b506e33 method category rename
Claus Gittinger <cg@exept.de>
parents: 1761
diff changeset
   256
!MenuItem methodsFor:'Compatibility-ST80'!
724
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
   257
2755
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   258
enablementSelector:aSymbol
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   259
    "dummy for now - for visualworks compatibility (specs)"
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   260
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   261
    "/ self halt.
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   262
!
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   263
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   264
helpText:aString
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   265
    "dummy for now - for visualworks compatibility (specs)"
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   266
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   267
    activeHelpKey := aString.
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   268
!
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   269
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   270
indicationSelector:aSymbol
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   271
    "dummy for now - for visualworks compatibility (specs)"
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   272
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   273
    "/ self halt.
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   274
!
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   275
724
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
   276
isEnabled:aBoolean
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
   277
    self enabled:aBoolean
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
   278
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
   279
    "Created: / 27.10.1997 / 16:34:55 / cg"
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   280
!
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   281
2755
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   282
shortcutModifiers:something
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   283
    "dummy for now - for visualworks compatibility (specs)"
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   284
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   285
    "/ self halt.
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   286
!
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   287
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   288
value
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   289
    "obsolete - please use #itemValue (value is bad: it prevents us from using a valueHolder)"
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   290
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   291
    ^ itemValue
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   292
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   293
    "Created: 25.2.1997 / 19:50:14 / cg"
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   294
!
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   295
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   296
value:something
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   297
    "obsolete - please use #itemValue: (value is bad: it prevents us from using a valueHolder)"
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   298
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   299
    itemValue := something
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   300
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   301
    "Created: 25.2.1997 / 19:11:13 / cg"
724
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
   302
! !
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
   303
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   304
!MenuItem methodsFor:'accessing'!
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   305
579
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
   306
accessCharacterPosition
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   307
    "get the index of the access character in the label text or string, or nil if none"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   308
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   309
    ^ accessCharacterPosition
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   310
!
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   311
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   312
accessCharacterPosition:index 
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   313
    "set the index of the access character in the label text or string, or nil if none"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   314
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   315
    accessCharacterPosition := index
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   316
!
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   317
640
4e1c0d0a633b add active help for items
ca
parents: 590
diff changeset
   318
activeHelpKey
4045
1671de832c2e #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   319
    "the key used as index (and argument) to the helpSpec"
3215
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   320
640
4e1c0d0a633b add active help for items
ca
parents: 590
diff changeset
   321
    ^ activeHelpKey
4e1c0d0a633b add active help for items
ca
parents: 590
diff changeset
   322
!
4e1c0d0a633b add active help for items
ca
parents: 590
diff changeset
   323
4e1c0d0a633b add active help for items
ca
parents: 590
diff changeset
   324
activeHelpKey:aKey
4165
15cc5643f1b0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4163
diff changeset
   325
    "the key used as index (and argument) to the helpSpec.
15cc5643f1b0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4163
diff changeset
   326
     New: may also be an association; then the assoc's key is the help-text provider,
4166
a45838209337 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
   327
     and the assoc's value is the key in that provider's helpspec."
3215
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   328
4165
15cc5643f1b0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4163
diff changeset
   329
    activeHelpKey := aKey
4158
8dca33d57bb6 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4147
diff changeset
   330
4166
a45838209337 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4165
diff changeset
   331
    "Modified (comment): / 10-08-2018 / 11:39:30 / Claus Gittinger"
640
4e1c0d0a633b add active help for items
ca
parents: 590
diff changeset
   332
!
4e1c0d0a633b add active help for items
ca
parents: 590
diff changeset
   333
684
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   334
argument
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   335
    "get argument given to the value (selector)"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   336
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   337
    ^ argument
684
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   338
!
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   339
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   340
argument:something
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   341
    "set argument given to the value (selector)"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   342
684
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   343
    |arg|
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   344
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   345
    (arg := something) notNil ifTrue:[
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   346
        arg isString ifTrue:[
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   347
            (arg size == 0 or:[ (arg indexOfNonSeparatorStartingAt:1) == 0 ]) ifTrue:[
684
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   348
                arg := nil
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   349
            ]
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   350
        ]
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   351
    ].
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   352
    argument := arg
684
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   353
!
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   354
1213
a80ce81d2944 auxValue added
tm
parents: 1203
diff changeset
   355
auxValue
a80ce81d2944 auxValue added
tm
parents: 1203
diff changeset
   356
    "an additional, arbitrary value"
a80ce81d2944 auxValue added
tm
parents: 1203
diff changeset
   357
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   358
    ^ auxValue
1213
a80ce81d2944 auxValue added
tm
parents: 1203
diff changeset
   359
!
a80ce81d2944 auxValue added
tm
parents: 1203
diff changeset
   360
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   361
auxValue:something
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   362
    "set the auxValue - an arbitrary user value"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   363
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   364
    auxValue := something
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   365
!
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   366
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   367
choice:something
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   368
    choice := something.
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   369
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   370
    "Created: / 14.8.1998 / 14:32:06 / cg"
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   371
!
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   372
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   373
choiceValue
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   374
    ^ choiceValue
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   375
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   376
    "Created: / 14.8.1998 / 15:39:26 / cg"
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   377
!
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   378
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   379
choiceValue:something
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   380
    choiceValue := something.
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   381
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   382
    "Created: / 14.8.1998 / 15:39:26 / cg"
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   383
!
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   384
2548
07251b4e7ac9 changed #hierarchicalUUID
fm
parents: 2533
diff changeset
   385
hierarchicalUUID
07251b4e7ac9 changed #hierarchicalUUID
fm
parents: 2533
diff changeset
   386
07251b4e7ac9 changed #hierarchicalUUID
fm
parents: 2533
diff changeset
   387
    ^ self uuid
07251b4e7ac9 changed #hierarchicalUUID
fm
parents: 2533
diff changeset
   388
!
07251b4e7ac9 changed #hierarchicalUUID
fm
parents: 2533
diff changeset
   389
1884
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   390
ignoreMnemonicKeys
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   391
    "if true, mnemonic (access character) in the submenus under the item are ignored;
2938
e9074e9333fa comment: #ignoreMnemonicKeys
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
   392
     Set this to speedup accelerator key processing for slow dynamci menus.
e9074e9333fa comment: #ignoreMnemonicKeys
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
   393
     The default is set to false"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   394
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   395
    ^ (flags ? 0) bitTest:FLAG_IGNORE_MNEMONIC_KEYS "/ ignoreMnemonicKeys ? false
2938
e9074e9333fa comment: #ignoreMnemonicKeys
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
   396
e9074e9333fa comment: #ignoreMnemonicKeys
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
   397
    "Modified (comment): / 08-09-2011 / 04:30:19 / cg"
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   398
    "Modified: / 09-08-2018 / 16:41:53 / Claus Gittinger"
1884
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   399
!
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   400
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   401
ignoreMnemonicKeys:aBoolean
1884
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   402
    "if true, mnemonic (access character) in the submenus under the item are ignored;
2939
c04e85910837 comment: #ignoreMnemonicKeys:
Claus Gittinger <cg@exept.de>
parents: 2938
diff changeset
   403
     Set this to speedup accelerator key processing for slow dynamci menus.
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   404
     The default is false"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   405
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   406
    "/ ignoreMnemonicKeys := aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   407
    flags := (flags ? 0) changeMask:FLAG_IGNORE_MNEMONIC_KEYS to:aBoolean.
2939
c04e85910837 comment: #ignoreMnemonicKeys:
Claus Gittinger <cg@exept.de>
parents: 2938
diff changeset
   408
c04e85910837 comment: #ignoreMnemonicKeys:
Claus Gittinger <cg@exept.de>
parents: 2938
diff changeset
   409
    "Modified (comment): / 08-09-2011 / 04:52:23 / cg"
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   410
    "Modified: / 09-08-2018 / 16:43:08 / Claus Gittinger"
1884
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   411
!
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   412
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   413
ignoreShortcutKeys
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   414
    "if true, shortcutKeys (accelerators) in the submenus under the item are ignored;
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   415
     the default is set to false"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   416
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   417
    ^ (flags ? 0) bitTest:FLAG_IGNORE_SHORTCUTS "/ ignoreShortcutKeys ? false
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   418
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   419
    "Modified: / 09-08-2018 / 16:43:26 / Claus Gittinger"
1884
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   420
!
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   421
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   422
ignoreShortcutKeys:aBoolean
1884
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   423
    "if true, shortcutKeys (accelerators) in the submenus under the item are ignored;
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   424
     the default is set to false"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   425
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   426
    "/ ignoreShortcutKeys := aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   427
    flags := (flags ? 0) changeMask:FLAG_IGNORE_SHORTCUTS to:aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   428
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   429
    "Modified: / 09-08-2018 / 16:43:49 / Claus Gittinger"
1884
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   430
!
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   431
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   432
indication
3178
ced60e8c83fe class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
   433
    "value of the items on/off indicator (CheckToggle).
ced60e8c83fe class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
   434
     Usually a valueHolder"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   435
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   436
    ^ indication
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   437
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   438
    "Created: 25.2.1997 / 20:59:28 / cg"
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   439
!
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   440
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   441
indication:someValueHolder
3178
ced60e8c83fe class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
   442
    "value of the items on/off indicator (CheckToggle).
ced60e8c83fe class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
   443
     someValueHolder is usually a value holder"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   444
3178
ced60e8c83fe class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
   445
    indication := someValueHolder.
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   446
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   447
    "Created: 25.2.1997 / 20:59:28 / cg"
1213
a80ce81d2944 auxValue added
tm
parents: 1203
diff changeset
   448
!
a80ce81d2944 auxValue added
tm
parents: 1203
diff changeset
   449
798
8a27a879ff23 support of visible/invisible items
ca
parents: 794
diff changeset
   450
isVisible
3215
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   451
    "a visibility holder; either a block, boolean or value holder.
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   452
     If the menu is permanently visible, it should be a valueHolder,
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   453
     as the value is otherwise only checked for before the menu is opened"
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   454
1663
00afd9631d8c isVisible - default is true
Claus Gittinger <cg@exept.de>
parents: 1658
diff changeset
   455
    ^ isVisible ? true
798
8a27a879ff23 support of visible/invisible items
ca
parents: 794
diff changeset
   456
!
8a27a879ff23 support of visible/invisible items
ca
parents: 794
diff changeset
   457
8a27a879ff23 support of visible/invisible items
ca
parents: 794
diff changeset
   458
isVisible:something
3215
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   459
    "a visibility holder; either a block, boolean or value holder.
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   460
     If the menu is permanently visible, it should be a valueHolder,
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   461
     as the value is otherwise only checked for before the menu is opened"
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   462
798
8a27a879ff23 support of visible/invisible items
ca
parents: 794
diff changeset
   463
    isVisible := something
8a27a879ff23 support of visible/invisible items
ca
parents: 794
diff changeset
   464
!
8a27a879ff23 support of visible/invisible items
ca
parents: 794
diff changeset
   465
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   466
itemValue
3215
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   467
    "the item's action; if it is a block, that is evaluated;
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   468
     if a symbol, that message is sent to the menu's receiver"
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   469
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   470
    ^ itemValue
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   471
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   472
    "Created: 25.2.1997 / 19:50:14 / cg"
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   473
!
1370
4d2a3cc1d3c7 allow views in subMenus
ca
parents: 1369
diff changeset
   474
3215
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   475
itemValue:aBlockOrSymbol
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   476
    "set the item's action; if it is a block, that is evaluated;
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   477
     if a symbol, that message is sent to the menu's receiver"
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   478
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   479
    itemValue := aBlockOrSymbol
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   480
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   481
    "Created: 25.2.1997 / 19:11:13 / cg"
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   482
!
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   483
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   484
itemValue:selectorOrBlock argument:anArgument
3215
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   485
    "set the item's action and an argument; if it is ablock, that is evaluated;
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   486
     if a symbol, that message is sent to the menu's receiver"
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   487
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   488
    itemValue := selectorOrBlock.
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   489
    argument := anArgument
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   490
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   491
    "Created: / 09-09-2012 / 13:05:14 / cg"
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   492
!
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   493
3221
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   494
label:aString icon:anImage
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   495
    self label:aString.
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   496
    self resourceRetriever: (ResourceRetriever icon:anImage string:'')
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   497
!
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   498
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   499
label:labelString itemValue:selectorOrBlock
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   500
    label := labelString.
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   501
    itemValue := selectorOrBlock.
3221
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   502
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   503
    "Created: / 09-09-2012 / 13:18:34 / cg"
4067
910d95fb5292 #QUALITY by mawalch
mawalch
parents: 4056
diff changeset
   504
    "Modified (comment): / 14-02-2018 / 12:55:40 / mawalch"
3221
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   505
!
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   506
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   507
label:labelString itemValue:selectorOrBlock argument:something
3353
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   508
    "define label, value and an argument to be passed with the action"
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   509
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   510
    self assert:(labelString isNil or:[labelString isString]).
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   511
3221
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   512
    label := labelString.
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   513
    itemValue := selectorOrBlock.
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   514
    argument := something.
3221
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   515
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   516
    "Created: / 09-09-2012 / 13:19:36 / cg"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   517
    "Modified: / 24-01-2018 / 14:34:10 / mawalch"
3221
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   518
!
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   519
3352
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   520
label:labelString itemValue:selectorOrBlock enabled:enabledHolder
3353
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   521
    "define label, value
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   522
     and enabled holder, which can be a boolean, a boolean valueHolder,
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   523
     a block or a selector (to be sent to the application)"
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   524
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   525
    self assert:(labelString isNil or:[labelString isString]).
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   526
3352
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   527
    label := labelString.
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   528
    itemValue := selectorOrBlock.
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   529
    enabled := enabledHolder.
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   530
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   531
    "Modified: / 24-01-2018 / 14:34:18 / mawalch"
3352
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   532
!
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   533
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   534
label:labelString itemValue:selectorOrBlock translateLabel:translateLabelBoolean
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   535
    self assert:(labelString isNil or:[labelString isString]).
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   536
3352
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   537
    label := labelString.
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   538
    itemValue := selectorOrBlock.
4162
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
   539
    self translateLabel:translateLabelBoolean.
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   540
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   541
    "Modified: / 24-01-2018 / 14:34:24 / mawalch"
4162
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
   542
    "Modified: / 09-08-2018 / 17:27:37 / Claus Gittinger"
3352
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   543
!
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   544
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   545
labelImage
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   546
    ^ labelImage
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   547
!
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   548
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   549
labelImage:something
2125
78bd48d8de76 labelImage: VW7 compat.
Claus Gittinger <cg@exept.de>
parents: 2122
diff changeset
   550
    labelImage := something.
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   551
2125
78bd48d8de76 labelImage: VW7 compat.
Claus Gittinger <cg@exept.de>
parents: 2122
diff changeset
   552
    "/ VW compatibility: if I have a label also,
78bd48d8de76 labelImage: VW7 compat.
Claus Gittinger <cg@exept.de>
parents: 2122
diff changeset
   553
    "/ this will become a LabelAndImage.
4019
054964b89175 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 3966
diff changeset
   554
    (something isImage and:[label notNil]) ifTrue:[
054964b89175 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 3966
diff changeset
   555
        labelImage := LabelAndIcon icon:labelImage string:label.
2125
78bd48d8de76 labelImage: VW7 compat.
Claus Gittinger <cg@exept.de>
parents: 2122
diff changeset
   556
    ].
4019
054964b89175 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 3966
diff changeset
   557
054964b89175 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 3966
diff changeset
   558
    "Modified: / 26-09-2017 / 12:29:32 / stefan"
1370
4d2a3cc1d3c7 allow views in subMenus
ca
parents: 1369
diff changeset
   559
!
4d2a3cc1d3c7 allow views in subMenus
ca
parents: 1369
diff changeset
   560
578
7e0f62d9bc47 access methods ...
ca
parents: 490
diff changeset
   561
nameKey
7e0f62d9bc47 access methods ...
ca
parents: 490
diff changeset
   562
    ^ nameKey
7e0f62d9bc47 access methods ...
ca
parents: 490
diff changeset
   563
7e0f62d9bc47 access methods ...
ca
parents: 490
diff changeset
   564
7e0f62d9bc47 access methods ...
ca
parents: 490
diff changeset
   565
!
7e0f62d9bc47 access methods ...
ca
parents: 490
diff changeset
   566
7e0f62d9bc47 access methods ...
ca
parents: 490
diff changeset
   567
nameKey:aNameKey
4067
910d95fb5292 #QUALITY by mawalch
mawalch
parents: 4056
diff changeset
   568
    self assert:(aNameKey isNil or:[aNameKey isString]).
579
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
   569
    nameKey := aNameKey.
578
7e0f62d9bc47 access methods ...
ca
parents: 490
diff changeset
   570
4067
910d95fb5292 #QUALITY by mawalch
mawalch
parents: 4056
diff changeset
   571
    "Modified: / 14-02-2018 / 12:24:56 / mawalch"
578
7e0f62d9bc47 access methods ...
ca
parents: 490
diff changeset
   572
!
7e0f62d9bc47 access methods ...
ca
parents: 490
diff changeset
   573
490
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
   574
rawLabel
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
   575
    ^ label
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
   576
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
   577
    "Created: 25.2.1997 / 19:48:16 / cg"
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
   578
!
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
   579
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   580
rawLabel:aString
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   581
    self assert:(aString isNil or:[aString isString]).
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   582
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   583
    label := aString
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   584
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   585
    "Created: / 25-02-1997 / 19:11:02 / cg"
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   586
    "Modified: / 24-01-2018 / 14:34:36 / mawalch"
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   587
!
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   588
1621
f913c0e7a3a8 access the resourceRetriever
ca
parents: 1595
diff changeset
   589
resourceRetriever
f913c0e7a3a8 access the resourceRetriever
ca
parents: 1595
diff changeset
   590
    |retriever|
f913c0e7a3a8 access the resourceRetriever
ca
parents: 1595
diff changeset
   591
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   592
    retriever := labelImage.
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   593
    (retriever notNil and:[retriever isKindOf:ResourceRetriever]) ifTrue:[
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   594
        ^ retriever
1621
f913c0e7a3a8 access the resourceRetriever
ca
parents: 1595
diff changeset
   595
    ].
f913c0e7a3a8 access the resourceRetriever
ca
parents: 1595
diff changeset
   596
    ^ nil
f913c0e7a3a8 access the resourceRetriever
ca
parents: 1595
diff changeset
   597
!
f913c0e7a3a8 access the resourceRetriever
ca
parents: 1595
diff changeset
   598
f913c0e7a3a8 access the resourceRetriever
ca
parents: 1595
diff changeset
   599
resourceRetriever:aRetriever
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   600
    self labelImage:aRetriever
1621
f913c0e7a3a8 access the resourceRetriever
ca
parents: 1595
diff changeset
   601
!
f913c0e7a3a8 access the resourceRetriever
ca
parents: 1595
diff changeset
   602
1655
d937610cfe89 shorrtcutKey vs. shortcutKeyCharacter
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
   603
shortcutKey
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   604
    "get the key to press to select the menu item from the keyboard"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   605
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   606
    ^ shortcutKey
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   607
!
490
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
   608
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   609
shortcutKey:something
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   610
    "set the  key to press to select the menu item from the keyboard"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   611
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   612
    shortcutKey := something.
490
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
   613
!
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
   614
1655
d937610cfe89 shorrtcutKey vs. shortcutKeyCharacter
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
   615
shortcutKeyCharacter
d937610cfe89 shorrtcutKey vs. shortcutKeyCharacter
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
   616
    "Backward compatibility; same as #shortcutKey.
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   617
     get the  key to press to select the menu item from the keyboard"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   618
1655
d937610cfe89 shorrtcutKey vs. shortcutKeyCharacter
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
   619
    ^ self shortcutKey
d937610cfe89 shorrtcutKey vs. shortcutKeyCharacter
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
   620
!
d937610cfe89 shorrtcutKey vs. shortcutKeyCharacter
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
   621
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   622
shortcutKeyCharacter:something
1655
d937610cfe89 shorrtcutKey vs. shortcutKeyCharacter
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
   623
    "Backward compatibility; same as #shortcutKey:.
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   624
     set the  key to press to select the menu item from the keyboard"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   625
1655
d937610cfe89 shorrtcutKey vs. shortcutKeyCharacter
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
   626
    self shortcutKey:something.
d937610cfe89 shorrtcutKey vs. shortcutKeyCharacter
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
   627
!
d937610cfe89 shorrtcutKey vs. shortcutKeyCharacter
Claus Gittinger <cg@exept.de>
parents: 1651
diff changeset
   628
458
729ffdbd2b13 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 455
diff changeset
   629
submenu
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   630
    "get the submenu or nil"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   631
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   632
    ^ submenu value
458
729ffdbd2b13 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 455
diff changeset
   633
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   634
    "Created: / 25.2.1997 / 20:59:28 / cg"
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   635
    "Modified: / 19.6.1998 / 00:33:58 / cg"
458
729ffdbd2b13 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 455
diff changeset
   636
!
729ffdbd2b13 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 455
diff changeset
   637
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   638
submenu:aMenu
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   639
    "set the submenu or nil"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   640
2987
66fad8f6ad33 comment/format in: #submenu:
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   641
    (aMenu isValueModel or:[ aMenu isBlock ]) ifTrue:[
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   642
        submenuChannel notNil ifTrue:[
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   643
            "/ programmers error ?
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   644
            "/ how can I decide which one to use if there is both
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   645
            "/ a channel and a subMenu ...
1649
162e89bf1079 halt -> error
ca
parents: 1648
diff changeset
   646
            self error:'overwriting submenuchannel' mayProceed:true.
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   647
        ].
2987
66fad8f6ad33 comment/format in: #submenu:
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   648
        submenuChannel := aMenu
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   649
    ] ifFalse:[
2987
66fad8f6ad33 comment/format in: #submenu:
Claus Gittinger <cg@exept.de>
parents: 2966
diff changeset
   650
        submenu := aMenu.
1333
423b4b4404c4 avoid creating an adornment (when nil adornment values are stored)
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
   651
    ]
458
729ffdbd2b13 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 455
diff changeset
   652
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   653
    "Created: / 25.2.1997 / 20:59:28 / cg"
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   654
    "Modified: / 5.2.2000 / 16:53:28 / cg"
458
729ffdbd2b13 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 455
diff changeset
   655
!
729ffdbd2b13 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 455
diff changeset
   656
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   657
submenuProvider
2866
2d1ab34d1836 +submenuProvider
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   658
    "useful if a sub-menu is plugged in from another application (i.e. when
2d1ab34d1836 +submenuProvider
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   659
     a submenu is fetched via a channel AND the top-menus application cannot provide
2d1ab34d1836 +submenuProvider
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   660
     it"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   661
2866
2d1ab34d1836 +submenuProvider
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   662
    ^ submenuProvider
2d1ab34d1836 +submenuProvider
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   663
2d1ab34d1836 +submenuProvider
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   664
    "Created: / 22-09-2010 / 13:55:55 / cg"
2d1ab34d1836 +submenuProvider
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   665
!
2d1ab34d1836 +submenuProvider
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   666
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   667
submenuProvider:something
2866
2d1ab34d1836 +submenuProvider
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   668
    "useful if a sub-menu is plugged in from another application (i.e. when
2d1ab34d1836 +submenuProvider
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   669
     a submenu is fetched via a channel AND the top-menus application cannot provide
2d1ab34d1836 +submenuProvider
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   670
     it"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   671
2866
2d1ab34d1836 +submenuProvider
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   672
    submenuProvider := something.
2d1ab34d1836 +submenuProvider
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   673
2d1ab34d1836 +submenuProvider
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   674
    "Created: / 22-09-2010 / 13:55:40 / cg"
2d1ab34d1836 +submenuProvider
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   675
!
2d1ab34d1836 +submenuProvider
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   676
2517
35e21e2e29a6 support uuid's
fm
parents: 2412
diff changeset
   677
uuid
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   678
    "automationID
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   679
     return my uuid component to be used for resource-access.
4054
6ddcaca12fee #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4045
diff changeset
   680
     This is a unique and once-assigned-never-changed uuid by which
6ddcaca12fee #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4045
diff changeset
   681
     UI automators can access the menu item."
2517
35e21e2e29a6 support uuid's
fm
parents: 2412
diff changeset
   682
35e21e2e29a6 support uuid's
fm
parents: 2412
diff changeset
   683
    ^ uuid
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   684
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   685
    "Modified (comment): / 09-08-2018 / 16:47:39 / Claus Gittinger"
2517
35e21e2e29a6 support uuid's
fm
parents: 2412
diff changeset
   686
!
35e21e2e29a6 support uuid's
fm
parents: 2412
diff changeset
   687
35e21e2e29a6 support uuid's
fm
parents: 2412
diff changeset
   688
uuid:aUUID
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   689
    "automationID
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   690
     set my uuid component to be used for resource-access
4054
6ddcaca12fee #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4045
diff changeset
   691
     (called by menuBuilder).
6ddcaca12fee #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4045
diff changeset
   692
     This is a unique and once-assigned-never-changed uuid by which
6ddcaca12fee #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4045
diff changeset
   693
     UI automators can access the menu item."
2517
35e21e2e29a6 support uuid's
fm
parents: 2412
diff changeset
   694
35e21e2e29a6 support uuid's
fm
parents: 2412
diff changeset
   695
    uuid := aUUID
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   696
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   697
    "Modified (comment): / 09-08-2018 / 16:47:34 / Claus Gittinger"
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   698
! !
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   699
1333
423b4b4404c4 avoid creating an adornment (when nil adornment values are stored)
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
   700
!MenuItem methodsFor:'accessing-behavior'!
579
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
   701
590
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
   702
beOff
2082
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   703
    "set indication off"
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   704
590
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
   705
    self indication:false
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
   706
!
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
   707
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
   708
beOn
2082
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   709
    "set indication on"
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   710
590
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
   711
    self indication:true
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
   712
!
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
   713
1041
d28f0375cd26 added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   714
choice
2082
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   715
    "return the menu items choice indicator (RadioButton)"
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   716
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   717
    ^ choice
1041
d28f0375cd26 added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   718
d28f0375cd26 added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   719
    "Created: / 14.8.1998 / 14:34:55 / cg"
d28f0375cd26 added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   720
    "Modified: / 14.8.1998 / 15:11:57 / cg"
d28f0375cd26 added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   721
!
d28f0375cd26 added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
   722
579
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
   723
disable
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
   724
    enabled := false
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
   725
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
   726
    "Created: 25.2.1997 / 19:39:09 / cg"
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
   727
!
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
   728
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
   729
enable
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
   730
    enabled := true
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
   731
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
   732
    "Created: 25.2.1997 / 19:39:00 / cg"
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
   733
!
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
   734
581
0080d12b5758 enabled can be something not only a boolean
ca
parents: 580
diff changeset
   735
enabled
2082
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   736
    "returns a boolean, valueHolder or block"
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   737
4147
83f4ab7e5aee #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   738
    ^ enabled ? true
83f4ab7e5aee #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   739
83f4ab7e5aee #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4084
diff changeset
   740
    "Modified: / 12-07-2018 / 22:29:33 / Claus Gittinger"
581
0080d12b5758 enabled can be something not only a boolean
ca
parents: 580
diff changeset
   741
!
579
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
   742
3352
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   743
enabled:enabledHolder
3353
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   744
    "enabledHolder can be a boolean, a boolean valueHolder,
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   745
     a block or a selector (to be sent to the application)"
2082
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   746
3352
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   747
    enabled := enabledHolder
590
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
   748
!
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
   749
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   750
hideMenuOnActivated
2082
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   751
    "hide the menu when the item was activated; the default is true"
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   752
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   753
    "/ notice: here the default is true
4168
0656fd9bc4b2 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   754
    ^ ((flags ? 0) bitTest:FLAG_NOHIDE_ONACTIVATED) not "/ hideMenuOnActivated ? true
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   755
4168
0656fd9bc4b2 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   756
    "Modified: / 14-08-2018 / 12:28:18 / Claus Gittinger"
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   757
!
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   758
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   759
hideMenuOnActivated:aBoolean
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   760
   "hide the menu when the item was activated; the default is true"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   761
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   762
    "/ notice: here the default is true
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   763
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   764
    "/ hideMenuOnActivated := aBool ? true
4168
0656fd9bc4b2 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   765
    flags := (flags ? 0) changeMask:FLAG_NOHIDE_ONACTIVATED to:aBoolean not.
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   766
4168
0656fd9bc4b2 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   767
    "Modified: / 14-08-2018 / 12:28:22 / Claus Gittinger"
1566
99ef8f1123c8 menuBuilder: support of horizontal/vertical layout of submenu
ca
parents: 1486
diff changeset
   768
!
99ef8f1123c8 menuBuilder: support of horizontal/vertical layout of submenu
ca
parents: 1486
diff changeset
   769
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   770
keepLinkedMenu
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   771
    "if true, a linked submenu menu is only computed once (slightly faster),
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   772
     but then, the linked menu cannot be dynamic"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   773
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   774
    ^ (flags ? 0) bitTest:FLAG_KEEP_LINKEDMENU "/ keepLinkedMenu ? false
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   775
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   776
    "Modified: / 09-08-2018 / 16:52:56 / Claus Gittinger"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   777
!
2082
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   778
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   779
keepLinkedMenu:aBoolean
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   780
    "if true, a linked submenu menu is only computed once (slightly faster),
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   781
     but then, the linked menu cannot be dynamic"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   782
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   783
    "/ keepLinkedMenu := aBoolean ? false.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   784
    flags := (flags ? 0) changeMask:FLAG_KEEP_LINKEDMENU to:aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   785
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   786
    "Modified: / 09-08-2018 / 16:53:12 / Claus Gittinger"
1566
99ef8f1123c8 menuBuilder: support of horizontal/vertical layout of submenu
ca
parents: 1486
diff changeset
   787
!
99ef8f1123c8 menuBuilder: support of horizontal/vertical layout of submenu
ca
parents: 1486
diff changeset
   788
1651
429e02e097d9 can now specify if menu action is to be performed by
ca
parents: 1649
diff changeset
   789
sendToOriginator
429e02e097d9 can now specify if menu action is to be performed by
ca
parents: 1649
diff changeset
   790
    "if true, the message is sent to the originating widget;
429e02e097d9 can now specify if menu action is to be performed by
ca
parents: 1649
diff changeset
   791
     otherwise (the default), it it sent to the receiver/application."
429e02e097d9 can now specify if menu action is to be performed by
ca
parents: 1649
diff changeset
   792
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   793
    ^ (flags ? 0) bitTest:FLAG_SEND_TO_ORIGINATOR "/ sendToOriginator ? false
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   794
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   795
    "Modified: / 09-08-2018 / 16:51:28 / Claus Gittinger"
1651
429e02e097d9 can now specify if menu action is to be performed by
ca
parents: 1649
diff changeset
   796
!
429e02e097d9 can now specify if menu action is to be performed by
ca
parents: 1649
diff changeset
   797
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   798
sendToOriginator:aBoolean
1651
429e02e097d9 can now specify if menu action is to be performed by
ca
parents: 1649
diff changeset
   799
    "if true, the message is sent to the originating widget;
429e02e097d9 can now specify if menu action is to be performed by
ca
parents: 1649
diff changeset
   800
     otherwise (the default), it it sent to the receiver/application."
429e02e097d9 can now specify if menu action is to be performed by
ca
parents: 1649
diff changeset
   801
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   802
    "/ sendToOriginator := aBoolean
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   803
    flags := (flags ? 0) changeMask:FLAG_SEND_TO_ORIGINATOR to:aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   804
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   805
    "Modified: / 09-08-2018 / 16:51:51 / Claus Gittinger"
1651
429e02e097d9 can now specify if menu action is to be performed by
ca
parents: 1649
diff changeset
   806
!
429e02e097d9 can now specify if menu action is to be performed by
ca
parents: 1649
diff changeset
   807
2533
569fd3176543 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2517
diff changeset
   808
showBusyCursorWhilePerforming
569fd3176543 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2517
diff changeset
   809
    "get the flag which controls if a busy cursor is to be shown
569fd3176543 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2517
diff changeset
   810
     while performing the menu action. Defaults to false."
569fd3176543 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2517
diff changeset
   811
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   812
    ^ (flags ? 0) bitTest:FLAG_SHOW_BUSYCURSOR_WHILE_PERFORMING "/ showBusyCursorWhilePerforming ? false
2533
569fd3176543 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2517
diff changeset
   813
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   814
    "Modified: / 09-08-2018 / 16:52:14 / Claus Gittinger"
2533
569fd3176543 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2517
diff changeset
   815
!
569fd3176543 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2517
diff changeset
   816
569fd3176543 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2517
diff changeset
   817
showBusyCursorWhilePerforming:aBoolean
569fd3176543 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2517
diff changeset
   818
    "set/clear the flag which controls if a busy cursor is to be shown
569fd3176543 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2517
diff changeset
   819
     while performing the menu action. Defaults to false."
569fd3176543 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2517
diff changeset
   820
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   821
    "/ showBusyCursorWhilePerforming := aBoolean
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   822
    flags := (flags ? 0) changeMask:FLAG_SHOW_BUSYCURSOR_WHILE_PERFORMING to:aBoolean.
2533
569fd3176543 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2517
diff changeset
   823
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   824
    "Modified: / 09-08-2018 / 16:52:28 / Claus Gittinger"
2533
569fd3176543 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2517
diff changeset
   825
!
569fd3176543 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2517
diff changeset
   826
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   827
translateLabel
3843
52c875014c46 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3353
diff changeset
   828
    "returns true if the label is to be translated.
52c875014c46 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3353
diff changeset
   829
     The default is true"
2082
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   830
4162
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
   831
    "/ notice: here the default is true
4168
0656fd9bc4b2 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   832
    ^ ((flags ? 0) bitTest:FLAG_NOTRANSLATE_LABEL) not "/ translateLabel ? true
4162
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
   833
4168
0656fd9bc4b2 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   834
    "Modified: / 14-08-2018 / 12:29:23 / Claus Gittinger"
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   835
!
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   836
2082
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   837
translateLabel:aBoolean
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   838
    "sets whether label is translated"
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   839
4162
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
   840
    "/ notice: here the default is true
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
   841
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
   842
    "/ translateLabel := aBoolean
4168
0656fd9bc4b2 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   843
    flags := (flags ? 0) changeMask:FLAG_NOTRANSLATE_LABEL to:aBoolean not.
4162
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
   844
4168
0656fd9bc4b2 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 4166
diff changeset
   845
    "Modified: / 14-08-2018 / 12:29:12 / Claus Gittinger"
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   846
!
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   847
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   848
triggerOnDown
3843
52c875014c46 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3353
diff changeset
   849
   "returns true if the action is triggered when pressed.
52c875014c46 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3353
diff changeset
   850
    The default is false (trigger when released)"
2082
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   851
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   852
    ^ (flags ? 0) bitTest:FLAG_TRIGGER_ONDOWN "/ triggerOnDown ? false
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   853
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   854
    "Modified: / 09-08-2018 / 16:53:49 / Claus Gittinger"
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   855
!
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   856
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   857
triggerOnDown:aBoolean
2082
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   858
   "controls if the action is triggered when pressed or released"
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   859
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   860
    "/ triggerOnDown := aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   861
    flags := (flags ? 0) changeMask:FLAG_TRIGGER_ONDOWN to:aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   862
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   863
    "Modified: / 09-08-2018 / 16:54:10 / Claus Gittinger"
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   864
! !
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   865
4029
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   866
!MenuItem methodsFor:'accessing-channels'!
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   867
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   868
label:labelString submenuChannel:aSymbolOrValueHolder
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   869
    self assert:(labelString isNil or:[labelString isString]).
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   870
4029
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   871
    label := labelString.
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   872
    submenuChannel := aSymbolOrValueHolder.
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   873
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   874
    "Modified: / 24-01-2018 / 14:36:54 / mawalch"
4029
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   875
!
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   876
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   877
submenuChannel
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   878
    "get the submenuChannel or nil"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   879
4029
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   880
    ^ submenuChannel
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   881
!
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   882
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   883
submenuChannel:aMenuHolder
4029
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   884
    "set the submenuChannel or nil"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   885
4029
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   886
    submenuChannel := aMenuHolder.
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   887
! !
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   888
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   889
!MenuItem methodsFor:'accessing-look'!
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   890
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   891
font
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   892
    "get the specific font for an item or nil"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   893
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   894
    ^ font
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   895
!
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   896
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   897
font:aFont
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   898
    "set a specific font for an item"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   899
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   900
    font := aFont.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   901
!
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   902
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   903
hasMenuIndicator
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   904
    "returns whether item should always show a menu-indicator (arrow)"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   905
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   906
    ^ (flags ? 0) bitTest:FLAG_FORCE_MENUINDICATOR "/ forceMenuIndicator ? false
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   907
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   908
    "Created: / 09-08-2018 / 16:35:05 / Claus Gittinger"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   909
!
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   910
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   911
hasMenuIndicator:aBoolean
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   912
    "force the item to always show a menu-indicator (arrow)"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   913
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   914
    flags := (flags ? 0) changeMask:FLAG_FORCE_MENUINDICATOR to:aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   915
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   916
    "Created: / 09-08-2018 / 16:49:11 / Claus Gittinger"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   917
!
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   918
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   919
horizontalLayout
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   920
    "by default, submenus have a vertical layout;
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   921
     if true, the submenu has a horizontal layout."
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   922
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   923
    ^ (flags ? 0) bitTest:FLAG_HORIZONTAL_LAYOUT "/ horizontalLayout ? false
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   924
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   925
    "Modified: / 09-08-2018 / 16:46:50 / Claus Gittinger"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   926
!
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   927
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   928
horizontalLayout:aBoolean
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   929
    "by default, submenus have a vertical layout;
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   930
     if true, the submenu has a horizontal layout."
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   931
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   932
    "/ horizontalLayout := aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   933
    flags := (flags ? 0) changeMask:FLAG_HORIZONTAL_LAYOUT to:aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   934
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   935
    "Modified: / 09-08-2018 / 16:47:05 / Claus Gittinger"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   936
!
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   937
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   938
icon:anImage
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   939
    self resourceRetriever: (ResourceRetriever icon:anImage)
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   940
!
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   941
752
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   942
isButton
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   943
    "returns whether item looks like a Button
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   944
    "
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   945
    ^ (flags ? 0) bitTest:FLAG_ISBUTTON "/ isButton ? false
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   946
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   947
    "Modified: / 09-08-2018 / 16:49:32 / Claus Gittinger"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   948
!
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   949
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   950
isButton:aBoolean
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   951
    "sets whether item looks like a Button
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   952
    "
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   953
    "/ isButton := aBoolean
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   954
    flags := (flags ? 0) changeMask:FLAG_ISBUTTON to:aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   955
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   956
    "Modified: / 09-08-2018 / 16:49:56 / Claus Gittinger"
752
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   957
!
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   958
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   959
isMenuSlice
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   960
    "returns true if the menu is a slice,
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   961
     building its items into its container menu
752
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   962
    "
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   963
    ^ submenuChannel notNil 
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   964
    and:[ (flags ? 0) bitTest:FLAG_IS_MENUSLICE "isMenuSlice == true"].
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   965
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   966
    "Modified: / 09-08-2018 / 16:44:37 / Claus Gittinger"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   967
!
752
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   968
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   969
isMenuSlice:aBoolean
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   970
    "/ isMenuSlice := aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   971
    flags := (flags ? 0) changeMask:FLAG_IS_MENUSLICE to:aBoolean.
752
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   972
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   973
    "Modified: / 09-08-2018 / 16:44:58 / Claus Gittinger"
752
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   974
!
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   975
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   976
label
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   977
    ^ self filteredLabel "/ label
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   978
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   979
    "Created: / 25.2.1997 / 19:48:16 / cg"
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   980
    "Modified: / 19.6.1998 / 00:02:55 / cg"
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   981
!
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   982
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   983
label:aString
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   984
    label := aString.
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   985
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   986
    "Created: / 25-02-1997 / 19:55:16 / cg"
4067
910d95fb5292 #QUALITY by mawalch
mawalch
parents: 4056
diff changeset
   987
    "Modified: / 14-02-2018 / 12:23:41 / mawalch"
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   988
!
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   989
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   990
startGroup
2264
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   991
    "start group #left #right #conditionalRight ... or nil
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   992
     at the moment only #right and #conditionalRight are implemented"
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   993
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   994
    ^ startGroup ? #left
2264
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   995
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   996
    "Modified: / 16-10-2006 / 13:05:52 / cg"
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   997
!
752
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   998
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   999
startGroup:aSymbol
2264
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1000
    "start group #left #right #conditionalRight ...
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1001
     at the moment only #right and #conditionalRight are implemented.
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1002
     The meanings are:
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1003
        nil                 - default under control of the menu
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1004
        #left               - left align
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1005
        #right              - place at the right far end
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1006
        #conditionalRight   - controlled by a styleSheet variable;
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1007
                              like #right under all non-win32 systems,
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1008
                              ignored on win32.
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1009
                              Use with help-menu, which should be at the far right on some
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1010
                              viewStyles, but not under win32.
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1011
    "
2264
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1012
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1013
    (self class supportedStartGroupValues includes:aSymbol) ifTrue:[
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1014
        startGroup := aSymbol
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1015
    ] ifFalse:[
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1016
        self warn:('unsupported group: ', aSymbol printString ).
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1017
        startGroup := #left
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1018
    ]
2263
30cf468f47ca new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
  1019
2264
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1020
    "Modified: / 16-10-2006 / 13:09:45 / cg"
581
0080d12b5758 enabled can be something not only a boolean
ca
parents: 580
diff changeset
  1021
! !
0080d12b5758 enabled can be something not only a boolean
ca
parents: 580
diff changeset
  1022
1333
423b4b4404c4 avoid creating an adornment (when nil adornment values are stored)
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
  1023
!MenuItem methodsFor:'accessing-resource'!
581
0080d12b5758 enabled can be something not only a boolean
ca
parents: 580
diff changeset
  1024
584
9a4c30f7586f ST-80 compatible features addded
ca
parents: 581
diff changeset
  1025
findGuiResourcesIn:aResourceContainerOrApplication
4033
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1026
    "resolve national language translations from aResourceContainerOrApplication"
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1027
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1028
    self
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1029
        findGuiResourcesIn:aResourceContainerOrApplication
4033
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1030
        rememberResourcesIn:nil
1401
0fda9891ba4a only ask once for resources (remember locally)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1031
!
0fda9891ba4a only ask once for resources (remember locally)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1032
0fda9891ba4a only ask once for resources (remember locally)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1033
findGuiResourcesIn:aResourceContainerOrApplication rememberResourcesIn:aValueHolderOrNil
4033
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1034
    "resolve national language translations from aResourceContainerOrApplication.
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1035
     In addition, expand %(xxx) by asking the application for an xxx aspect."
3305
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1036
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1037
    |retriever m itemFont|
1401
0fda9891ba4a only ask once for resources (remember locally)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1038
1986
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1039
    (aResourceContainerOrApplication isNil or:[self isMenuSlice]) ifTrue:[
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1040
        ^ self.
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1041
    ].
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1042
3305
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1043
    "while traversing all the menus, resolve symbolic fonts too"
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1044
    itemFont := self font.
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1045
    itemFont isSymbol ifTrue:[
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1046
        itemFont := aResourceContainerOrApplication resolveFont:itemFont.
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1047
        self font:itemFont.
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1048
    ].
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1049
2412
3f11e716f802 Do not try to translate separators
Stefan Vogel <sv@exept.de>
parents: 2293
diff changeset
  1050
    (self translateLabel and:[label ~= '-']) ifTrue:[
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1051
        label := ResourceRetriever
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1052
                        findResourceLabel:label
1401
0fda9891ba4a only ask once for resources (remember locally)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1053
                        in:aResourceContainerOrApplication
2018
5a6446cf5079 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1990
diff changeset
  1054
                        rememberResourcesIn:aValueHolderOrNil.
1401
0fda9891ba4a only ask once for resources (remember locally)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1055
    ].
4037
eecd873be684 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4034
diff changeset
  1056
    (label notNil and:[label includesString:'%(']) ifTrue:[
4033
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1057
        |fetchDict|
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1058
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1059
        fetchDict := VirtualDictionary new.
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1060
        fetchDict
4033
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1061
            fetchBlock:[:key |
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1062
                (aResourceContainerOrApplication labelFor:key asSymbol) value
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1063
            ].
4033
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1064
        label := label bindWithArguments:fetchDict.
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1065
    ].
1401
0fda9891ba4a only ask once for resources (remember locally)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1066
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1067
    (retriever := self resourceRetriever) notNil ifTrue:[
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1068
        retriever findGuiResourcesIn:aResourceContainerOrApplication.
3305
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1069
        retriever labelText notNil ifTrue: [retriever labelText:label].
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1070
    ].
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1071
    (m := self submenu) notNil ifTrue:[
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1072
        m := m value.
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1073
        m notNil ifTrue:[
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1074
            m findGuiResourcesIn:aResourceContainerOrApplication rememberResourcesIn:aValueHolderOrNil
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1075
        ]
1401
0fda9891ba4a only ask once for resources (remember locally)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1076
    ]
0fda9891ba4a only ask once for resources (remember locally)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1077
4037
eecd873be684 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4034
diff changeset
  1078
    "Modified: / 18-06-1998 / 16:54:25 / cg"
eecd873be684 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4034
diff changeset
  1079
    "Modified: / 28-12-2017 / 18:36:31 / stefan"
1986
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1080
!
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1081
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1082
receiver:aReceiver perform:aSelector with:anArgument ifNone:aBlock
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1083
    "send the one-arg-message aSelector to the application;
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1084
     the result returned from the send or nil is returned
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1085
    "
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1086
    |result|
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1087
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1088
    MessageNotUnderstood handle:[:ex|
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1089
        ex selector ~~ aSelector ifTrue:[
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1090
            ex reject
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1091
        ].
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1092
        result := aBlock value.
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1093
    ] do:[
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1094
        aSelector numArgs == 0 ifTrue:[
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1095
            result := aReceiver perform:aSelector.
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1096
        ] ifFalse:[
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1097
            result := aReceiver perform:aSelector with:anArgument.
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1098
        ].
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1099
    ].
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1100
    ^ result
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1101
!
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1102
3966
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1103
resolveSliceMenuItemsIn:aReceiver for:originalReceiver rememberResourcesIn:aValueHolderOrNil
1986
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1104
    |menu|
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1105
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1106
    self isMenuSlice ifFalse:[
3305
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1107
        self error:'not a slice menu' mayProceed:true.
1986
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1108
        ^ Array with:self.
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1109
    ].
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1110
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1111
    aReceiver isNil ifTrue:[
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1112
        ^ nil
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1113
    ].
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1114
    menu := self
3966
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1115
                receiver:aReceiver perform:submenuChannel with:argument
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1116
                ifNone:[
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1117
                    self
3966
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1118
                        receiver:(aReceiver class) perform:submenuChannel with:argument 
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1119
                        ifNone:[
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1120
                            "/ ('MenuItem [info]: no aspect for slice ',submenuChannel) infoPrintCR.
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1121
                            nil
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1122
                        ].
2036
f8e99bb346e4 *** empty log message ***
penk
parents: 2033
diff changeset
  1123
                ].
1986
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1124
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1125
    menu := menu value.
2033
a9ed3856e834 *** empty log message ***
james
parents: 2018
diff changeset
  1126
    menu isNil ifTrue:[^ nil].
1986
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1127
2292
d7b06b31d72b use decodeFromLiteralArray
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
  1128
    menu isCollection ifTrue:[
d7b06b31d72b use decodeFromLiteralArray
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
  1129
        menu := Menu decodeFromLiteralArray:menu.
1986
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1130
    ].
3966
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1131
    menu findGuiResourcesIn:originalReceiver rememberResourcesIn:aValueHolderOrNil.
1986
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1132
    ^ menu items
2268
a947e7f7a28f resolveGUIResources no longer sets the receiver recursively
Claus Gittinger <cg@exept.de>
parents: 2264
diff changeset
  1133
3966
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1134
    "Created: / 21-07-2017 / 19:46:54 / cg"
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1135
!
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1136
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1137
resolveSliceMenuItemsIn:aReceiver rememberResourcesIn:aValueHolderOrNil
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1138
    ^ self resolveSliceMenuItemsIn:aReceiver for:aReceiver rememberResourcesIn:aValueHolderOrNil
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1139
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1140
    "Modified: / 21-07-2017 / 19:48:45 / cg"
579
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1141
! !
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1142
4162
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1143
!MenuItem methodsFor:'encoding & decoding'!
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1144
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1145
fromLiteralArrayEncoding:aLiteralEncodedArray
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1146
    "read my contents from a aLiteralEncodedArray"
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1147
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1148
    |selector value retriever|
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1149
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1150
    2 to:aLiteralEncodedArray size by:2 do:[:i |
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1151
        selector := aLiteralEncodedArray at:i.
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1152
        value    := (aLiteralEncodedArray at:i+1).
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1153
        selector == #argument: ifFalse:[
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1154
            value := value decodeAsLiteralArray
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1155
        ].
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1156
        self perform:selector with:value
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1157
    ].
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1158
    "/ kludge in case someone forgets to call findGUIResourcesIn:
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1159
    (retriever := self resourceRetriever) notNil ifTrue:[
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1160
        retriever labelText notNil ifTrue: [retriever labelText: label].
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1161
    ].
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1162
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1163
    "
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1164
     #( #MenuItem #rawLabel: 'left' #nameKey: 'identifier'  #value: #left )
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1165
         decodeAsLiteralArray
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1166
    "
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1167
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1168
    "Modified: / 4.2.2000 / 12:50:28 / cg"
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1169
!
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1170
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1171
skippedInLiteralEncoding
4161
a97047ee60f8 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4159
diff changeset
  1172
    "define the inst-slots which are skipped when generating a literalArrayEncoding;
a97047ee60f8 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4159
diff changeset
  1173
     (to skip the ones with default values.)"
a97047ee60f8 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4159
diff changeset
  1174
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1175
    |coll|
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1176
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1177
    coll := super skippedInLiteralEncoding asOrderedCollection.
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1178
4162
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1179
    coll add:#flags.
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1180
    
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1181
    label isNil ifTrue:[ coll add:#label ].
4162
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1182
    (self translateLabel or:[#('' '-' '=') includes:label]) ifTrue:[ coll add:#translateLabel ].
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1183
    self isButton ifFalse:[ coll add:#isButton ].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1184
    self triggerOnDown ifFalse:[ coll add:#triggerOnDown ].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1185
    self hideMenuOnActivated ifTrue:[ coll add:#hideMenuOnActivated].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1186
    nameKey isNil ifTrue:[ coll add:#nameKey ].
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1187
    (self isVisible == true) ifTrue:[coll add:#isVisible].
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1188
    (startGroup isNil or:[startGroup == #left]) ifTrue:[coll add:#startGroup].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1189
    itemValue isNil ifTrue:[ coll add:#itemValue].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1190
    activeHelpKey isNil ifTrue:[ coll add:#activeHelpKey].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1191
    enabled == true "could be a symbol" ifTrue:[ coll add:#enabled].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1192
    shortcutKey isNil ifTrue:[ coll add:#shortcutKeyCharacter].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1193
    font isNil ifTrue:[ coll add:#font].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1194
    accessCharacterPosition isNil ifTrue:[coll add:#accessCharacterPosition].
1990
dca233a39477 horizontalLayout bug
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1195
    self horizontalLayout ifFalse:[coll add:#horizontalLayout].
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1196
    self showBusyCursorWhilePerforming ifFalse:[ coll add:#showBusyCursorWhilePerforming ].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1197
    argument isNil ifTrue:[ coll add:#argument].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1198
    self resourceRetriever isNil ifTrue:[ coll add:#resourceRetriever].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1199
    indication isNil ifTrue:[ coll add:#indication].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1200
    choice isNil ifTrue:[coll add:#choice].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1201
    choiceValue isNil ifTrue:[ coll add:#choiceValue].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1202
    auxValue isNil ifTrue:[ coll add:#auxValue ].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1203
    submenuChannel isNil ifTrue:[ coll add:#submenuChannel].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1204
    self keepLinkedMenu ifFalse:[ coll add:#keepLinkedMenu].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1205
    submenu value isNil ifTrue:[coll add:#submenu ].
1651
429e02e097d9 can now specify if menu action is to be performed by
ca
parents: 1649
diff changeset
  1206
    self sendToOriginator ifFalse:[coll add:#sendToOriginator ].
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1207
1885
860b47f2535f support ignoreShortcutKeys and ignoreMnemonicKeys in Editor
ca
parents: 1884
diff changeset
  1208
    self ignoreShortcutKeys ifFalse:[coll add:#ignoreShortcutKeys ].
860b47f2535f support ignoreShortcutKeys and ignoreMnemonicKeys in Editor
ca
parents: 1884
diff changeset
  1209
    self ignoreMnemonicKeys ifFalse:[coll add:#ignoreMnemonicKeys ].
4163
54d6a48b4655 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  1210
    self hasMenuIndicator ifFalse:[coll add:#hasMenuIndicator ].
1884
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
  1211
1986
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1212
    self isMenuSlice ifFalse:[coll add:#isMenuSlice].
1884
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
  1213
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1214
    ^ coll
3021
39995ec958eb changed: #skippedInLiteralEncoding
Claus Gittinger <cg@exept.de>
parents: 3003
diff changeset
  1215
39995ec958eb changed: #skippedInLiteralEncoding
Claus Gittinger <cg@exept.de>
parents: 3003
diff changeset
  1216
    "Modified: / 22-08-2012 / 21:22:20 / cg"
4163
54d6a48b4655 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  1217
    "Modified: / 09-08-2018 / 17:34:37 / Claus Gittinger"
4162
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1218
!
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1219
4162
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1220
virtualSlotsInLiteralEncoding
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1221
    "defines additional virtual slots in the literalEncoding.
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1222
     These are not instvars, but accessed via getters and setters during
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1223
     store and load.
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1224
     Use this when flags encode values which were previously encoded as boolean instvars,
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1225
     to remain backward compatible"
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1226
4162
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1227
    ^ #( ignoreMnemonicKeys ignoreShortcutKeys hideMenuOnActivated
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1228
         keepLinkedMenu sendToOriginator showBusyCursorWhilePerforming triggerOnDown
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1229
         hasMenuIndicator horizontalLayout isButton isMenuSlice translateLabel)
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1230
4163
54d6a48b4655 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  1231
    "
54d6a48b4655 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  1232
     self new literalArrayEncoding
54d6a48b4655 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  1233
     self new ignoreMnemonicKeys:true; literalArrayEncoding
54d6a48b4655 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  1234
     (self new ignoreMnemonicKeys:true; literalArrayEncoding) decodeAsLiteralArray
54d6a48b4655 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  1235
    "
54d6a48b4655 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4162
diff changeset
  1236
4162
26578918c9cf #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4161
diff changeset
  1237
    "Created: / 09-08-2018 / 17:24:19 / Claus Gittinger"
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1238
! !
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1239
1329
b56172875855 nicer displayString
Claus Gittinger <cg@exept.de>
parents: 1328
diff changeset
  1240
!MenuItem methodsFor:'printing & storing'!
b56172875855 nicer displayString
Claus Gittinger <cg@exept.de>
parents: 1328
diff changeset
  1241
2736
4798b0251087 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2548
diff changeset
  1242
printOn:aStream
4798b0251087 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2548
diff changeset
  1243
    aStream nextPutAll:self classNameWithArticle.
4798b0251087 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2548
diff changeset
  1244
    aStream nextPutAll:'('.
4798b0251087 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2548
diff changeset
  1245
    aStream nextPutAll:label storeString.
4798b0251087 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2548
diff changeset
  1246
    aStream nextPutAll:')'
1329
b56172875855 nicer displayString
Claus Gittinger <cg@exept.de>
parents: 1328
diff changeset
  1247
! !
b56172875855 nicer displayString
Claus Gittinger <cg@exept.de>
parents: 1328
diff changeset
  1248
1761
18ec27a0300e method category rename
Claus Gittinger <cg@exept.de>
parents: 1664
diff changeset
  1249
!MenuItem methodsFor:'private-accessing'!
458
729ffdbd2b13 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 455
diff changeset
  1250
973
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1251
filteredLabel
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1252
    "return the label without any &-chars"
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1253
3212
a5ee318ee18d class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3178
diff changeset
  1254
    |rawLabel l in out c emp e|
985
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1255
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1256
    rawLabel := self rawLabel.
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1257
    rawLabel isString ifFalse:[^ rawLabel].
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1258
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1259
    "/ be careful to preserve any emphasis ...
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1260
    "/ bad kludge ...
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1261
    rawLabel isText ifTrue:[
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1262
        emp := RunArray new.
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1263
    ].
973
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1264
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1265
    out := WriteStream on:''.
985
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1266
    in := rawLabel readStream.
973
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1267
    [in atEnd] whileFalse:[
985
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1268
        emp notNil ifTrue:[
3212
a5ee318ee18d class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3178
diff changeset
  1269
            e := rawLabel emphasisAt:(in position + 1).
985
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1270
        ].
973
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1271
        c := in next.
2040
98d3508fd6e1 care for Unicode-Strings.
Claus Gittinger <cg@exept.de>
parents: 2036
diff changeset
  1272
        c bitsPerCharacter > out collection bitsPerCharacter ifTrue:[
98d3508fd6e1 care for Unicode-Strings.
Claus Gittinger <cg@exept.de>
parents: 2036
diff changeset
  1273
            out setCollection:(c stringSpecies fromString:out collection).
98d3508fd6e1 care for Unicode-Strings.
Claus Gittinger <cg@exept.de>
parents: 2036
diff changeset
  1274
        ].
973
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1275
        c == $& ifTrue:[
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1276
            in peek == $& ifTrue:[
985
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1277
                out nextPut:c.
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1278
                emp notNil ifTrue:[
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1279
                    emp add:e
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1280
                ]
973
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1281
            ]
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1282
        ] ifFalse:[
985
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1283
            out nextPut:c.
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1284
            emp notNil ifTrue:[
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1285
                emp add:e
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1286
            ]
973
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1287
        ]
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1288
    ].
985
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1289
    l := out contents.
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1290
    emp notNil ifTrue:[
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1291
        ^ Text string:l emphasisCollection:emp
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1292
    ].
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1293
    ^ l.
973
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1294
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1295
    "Created: / 19.6.1998 / 00:02:10 / cg"
985
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1296
    "Modified: / 20.6.1998 / 17:15:18 / cg"
458
729ffdbd2b13 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 455
diff changeset
  1297
! !
729ffdbd2b13 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 455
diff changeset
  1298
579
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1299
!MenuItem methodsFor:'queries'!
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1300
1041
d28f0375cd26 added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
  1301
hasChoice
d28f0375cd26 added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
  1302
    "test whether choice exists
d28f0375cd26 added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
  1303
    "
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1304
    ^ self choice notNil
1041
d28f0375cd26 added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
  1305
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1306
    "Created: / 14-08-1998 / 14:34:29 / cg"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1307
    "Modified (format): / 09-08-2018 / 16:50:14 / Claus Gittinger"
1041
d28f0375cd26 added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
  1308
!
d28f0375cd26 added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
  1309
590
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1310
hasIndication
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1311
    "test whether indication on/off exists
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1312
    "
2875
eb6fea74e5e6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  1313
    ^ self indication notNil
eb6fea74e5e6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  1314
eb6fea74e5e6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  1315
    "Modified: / 28-10-2010 / 23:30:52 / cg"
590
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1316
!
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1317
579
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1318
hasSubmenu
584
9a4c30f7586f ST-80 compatible features addded
ca
parents: 581
diff changeset
  1319
    ^ self submenu notNil
579
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1320
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1321
    "Created: 25.2.1997 / 20:56:20 / cg"
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1322
!
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1323
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1324
isEnabled
581
0080d12b5758 enabled can be something not only a boolean
ca
parents: 580
diff changeset
  1325
    ^ enabled value ? true
579
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1326
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1327
    "Created: 25.2.1997 / 19:39:17 / cg"
590
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1328
!
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1329
724
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
  1330
isHidden
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
  1331
    "not yet supported"
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
  1332
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
  1333
    ^ false
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
  1334
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
  1335
    "Created: / 27.10.1997 / 15:13:43 / cg"
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
  1336
!
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
  1337
1648
d49c84402011 add query #isMenuItem
ca
parents: 1647
diff changeset
  1338
isMenuItem
d49c84402011 add query #isMenuItem
ca
parents: 1647
diff changeset
  1339
    ^ true
d49c84402011 add query #isMenuItem
ca
parents: 1647
diff changeset
  1340
!
d49c84402011 add query #isMenuItem
ca
parents: 1647
diff changeset
  1341
590
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1342
isOff
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1343
    "test whether indication on/off exists and is off
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1344
    "
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1345
    |indication|
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1346
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1347
    indication := self indication.
2875
eb6fea74e5e6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  1348
    ^ indication value == false
eb6fea74e5e6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  1349
eb6fea74e5e6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  1350
    "Modified: / 28-10-2010 / 23:30:57 / cg"
590
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1351
!
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1352
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1353
isOn
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1354
    "test whether indication on/off exists and is on
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1355
    "
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1356
    |indication|
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1357
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1358
    indication := self indication.
2875
eb6fea74e5e6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  1359
    ^ indication value == true
eb6fea74e5e6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  1360
eb6fea74e5e6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  1361
    "Modified: / 28-10-2010 / 23:31:02 / cg"
2122
4a0a8af7bd71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2112
diff changeset
  1362
!
4a0a8af7bd71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2112
diff changeset
  1363
4a0a8af7bd71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2112
diff changeset
  1364
isSeparatorItem
4a0a8af7bd71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2112
diff changeset
  1365
    ^ #('' '-' '=') includes:label
4a0a8af7bd71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2112
diff changeset
  1366
4a0a8af7bd71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2112
diff changeset
  1367
    "Created: 25.2.1997 / 19:39:17 / cg"
579
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1368
! !
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1369
2966
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1370
!MenuItem methodsFor:'utilities'!
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1371
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1372
replaceArgument: oldValue with: newValue
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1373
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1374
    "Recusively Replace argument in menu items where
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1375
     current argument is equal to oldValue by newValue"
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1376
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1377
    argument = oldValue ifTrue:[
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1378
        argument := newValue.
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1379
    ].
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1380
    submenu notNil ifTrue:[
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1381
        submenu replaceArgument: oldValue with: newValue
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1382
    ].
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1383
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1384
    "Created: / 12-10-2011 / 20:12:28 / Jan Vrany <jan.vrany@fit.cvut.cz>"
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1385
! !
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1386
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1387
!MenuItem class methodsFor:'documentation'!
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1388
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1389
version
3843
52c875014c46 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3353
diff changeset
  1390
    ^ '$Header$'
2755
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  1391
!
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  1392
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  1393
version_CVS
3843
52c875014c46 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3353
diff changeset
  1394
    ^ '$Header$'
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1395
! !
3178
ced60e8c83fe class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  1396
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1397
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1398
MenuItem initialize!