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