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