MenuItem.st
author Claus Gittinger <cg@exept.de>
Thu, 09 Aug 2018 17:19:34 +0200
changeset 4161 a97047ee60f8
parent 4159 4a2fc4aa5730
child 4162 26578918c9cf
permissions -rw-r--r--
#OTHER by cg comment
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
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    19
	instanceVariableNames:'flags activeHelpKey enabled label itemValue nameKey
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    20
		translateLabel startGroup isVisible indication submenu
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    21
		submenuChannel submenuProvider shortcutKey labelImage
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    22
		accessCharacterPosition argument choice choiceValue font auxValue
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    23
		uuid'
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    24
	classVariableNames:'FLAG_FORCE_MENUINDICATOR FLAG_TRANSLATE_LABEL FLAG_ISBUTTON
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    25
		FLAG_HIDE_ONACTIVATED FLAG_TRIGGER_ONDOWN
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    26
		FLAG_SHOW_BUSYCURSOR_WHILE_PERFORMING FLAG_KEEP_LINKEDMENU
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    27
		FLAG_SEND_TO_ORIGINATOR FLAG_IGNORE_MNEMONIC_KEYS
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
    28
		FLAG_IGNORE_SHORTCUTS FLAG_IS_MENUSLICE FLAG_HORIZONTAL_LAYOUT'
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
	poolDictionaries:''
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
	category:'Views-Support'
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
!
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
!MenuItem class methodsFor:'documentation'!
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
1196
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    35
copyright
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    36
"
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    37
 COPYRIGHT (c) 1998 by eXept Software AG
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    38
              All Rights Reserved
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    39
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    40
 This software is furnished under a license and may be used
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    41
 only in accordance with the terms of that license and with the
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    42
 inclusion of the above copyright notice.   This software may not
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    43
 be provided or otherwise made available to, or used by, any
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    44
 other person.  No title to or ownership of the software is
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    45
 hereby transferred.
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    46
"
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    47
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    48
!
27897663fc97 docu & copyright
Claus Gittinger <cg@exept.de>
parents: 1044
diff changeset
    49
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
documentation
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
"
4034
1e94a92845a1 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4033
diff changeset
    52
    This together with MenuPanel will eventually replace
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    most of the MenuView and PopUpMenu stuff.
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
    (and hopefully be ST-80 compatible ...)
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
    For now, only a subset of the full protocol is implemented.
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
4034
1e94a92845a1 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4033
diff changeset
    58
    new:
1e94a92845a1 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4033
diff changeset
    59
        %(xx) in label text will be expanded by asking the application
1e94a92845a1 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4033
diff changeset
    60
        for the xx labelFor:-aspect.
1e94a92845a1 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4033
diff changeset
    61
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
    [author:]
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
        Claus Gittinger
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
    65
    [instance variables:]
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
    66
        label: MUST be a CharacterArray.
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
    67
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
    [see also:]
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
        MenuItem
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
        PopUpMenu
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
"
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
! !
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
490
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
    74
!MenuItem class methodsFor:'instance creation'!
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
    75
1044
5ecf46d0f1b7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
    76
label:aString
5ecf46d0f1b7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
    77
    "create and return a new menuItem, given a label string"
5ecf46d0f1b7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
    78
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
    79
    ^ self new
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
    80
        label:aString;
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
    81
        yourself
1044
5ecf46d0f1b7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
    82
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
    83
    "Created: / 14-08-1998 / 19:19:14 / cg"
1044
5ecf46d0f1b7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
    84
!
5ecf46d0f1b7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1041
diff changeset
    85
2813
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
    86
label:labelString choice:choiceAspect choiceValue:selectorOrValue
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
    87
    "create and return a new menuItem, given its label and choice/value.
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
    88
     This will create a Radio-Button-like item."
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
    89
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
    90
    ^ (self new)
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
    91
        label:labelString; choice:choiceAspect; choiceValue:selectorOrValue;
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
    92
        yourself
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
    93
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
    94
    "Modified (format): / 26-04-2012 / 12:06:41 / cg"
2813
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
    95
!
Claus Gittinger <cg@exept.de>
parents: 2755
diff changeset
    96
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
    97
label:labelString itemValue:selectorOrValue
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
    98
    "create and return a new menuItem, given its label and value"
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
    99
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   100
    ^ (self new)
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   101
        label:labelString itemValue:selectorOrValue;
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   102
        yourself
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   103
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   104
    "Created: / 09-09-2012 / 13:21:48 / cg"
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   105
!
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   106
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   107
label:labelString itemValue:selectorOrValue argument:messageArg
3353
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   108
    "create and return a new menuItem, given its label and value
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   109
     and an argument to be passed with the action"
1030
3684379a1ac8 added inst-creation #label:value:
Claus Gittinger <cg@exept.de>
parents: 985
diff changeset
   110
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   111
    ^ (self new)
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   112
        label:labelString;
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   113
        itemValue:selectorOrValue argument:messageArg;
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   114
        yourself
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   115
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   116
    "Created: / 09-09-2012 / 13:22:31 / cg"
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   117
!
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   118
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   119
label:labelString itemValue:selectorOrValue enabled:enabledHolder
3353
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   120
    "create and return a new menuItem, given its label, value
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   121
     and enabled holder, which can be a boolean, a boolean valueHolder,
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   122
     a block or a selector (to be sent to the application)"
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   123
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   124
    ^ (self new)
3352
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   125
        label:labelString itemValue:selectorOrValue enabled:enabledHolder
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   126
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   127
    "Created: / 09-09-2012 / 13:23:05 / cg"
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   128
!
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   129
3352
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   130
label:labelString itemValue:selectorOrValue translateLabel:translateLabel
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   131
    "create and return a new menuItem, given its label, value and translateLabel flag"
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   132
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   133
    ^ (self new)
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   134
        label:labelString
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   135
        itemValue:selectorOrValue
3352
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   136
        translateLabel:translateLabel
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   137
!
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   138
3221
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   139
label:labelString submenuChannel:aSymbolOrValueHolder
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   140
    "create and return a new menuItem, given its label and value"
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   141
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   142
    ^ (self new)
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   143
        label:labelString submenuChannel:aSymbolOrValueHolder;
3221
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   144
        yourself
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   145
!
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   146
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   147
label:labelString value:selectorOrValue
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   148
    <resource: #obsolete>
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   149
    "create and return a new menuItem, given its label and value"
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   150
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   151
    ^ self label:labelString itemValue:selectorOrValue
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   152
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   153
    "Created: / 04-08-1998 / 17:34:18 / cg"
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   154
!
1030
3684379a1ac8 added inst-creation #label:value:
Claus Gittinger <cg@exept.de>
parents: 985
diff changeset
   155
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   156
label:labelString value:selectorOrValue argument:messageArg
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   157
    <resource: #obsolete>
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   158
    "create and return a new menuItem, given its label and value"
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   159
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   160
    ^ (self new)
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   161
        label:labelString; value:selectorOrValue; argument:messageArg;
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   162
        yourself
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   163
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   164
    "Created: / 26-04-2012 / 12:06:34 / cg"
1030
3684379a1ac8 added inst-creation #label:value:
Claus Gittinger <cg@exept.de>
parents: 985
diff changeset
   165
!
3684379a1ac8 added inst-creation #label:value:
Claus Gittinger <cg@exept.de>
parents: 985
diff changeset
   166
2876
de49b76ae355 added: #label:value:enabled:
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   167
label:labelString value:selectorOrValue enabled:enabledHolder
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   168
    <resource: #obsolete>
2876
de49b76ae355 added: #label:value:enabled:
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   169
    "create and return a new menuItem, given its label and value"
de49b76ae355 added: #label:value:enabled:
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   170
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   171
    ^ (self new)
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   172
        label:labelString; value:selectorOrValue;
2876
de49b76ae355 added: #label:value:enabled:
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   173
        enabled:enabledHolder;
de49b76ae355 added: #label:value:enabled:
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   174
        yourself
de49b76ae355 added: #label:value:enabled:
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   175
de49b76ae355 added: #label:value:enabled:
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   176
    "Created: / 29-10-2010 / 12:21:27 / cg"
de49b76ae355 added: #label:value:enabled:
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   177
!
de49b76ae355 added: #label:value:enabled:
Claus Gittinger <cg@exept.de>
parents: 2875
diff changeset
   178
490
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
   179
labeled:aString
3225
7cfefeb97495 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   180
    <resource: #obsolete>
7cfefeb97495 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   181
1030
3684379a1ac8 added inst-creation #label:value:
Claus Gittinger <cg@exept.de>
parents: 985
diff changeset
   182
    "create and return a new menuItem, given a label string"
3684379a1ac8 added inst-creation #label:value:
Claus Gittinger <cg@exept.de>
parents: 985
diff changeset
   183
3225
7cfefeb97495 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3221
diff changeset
   184
    ^ self label:aString
1030
3684379a1ac8 added inst-creation #label:value:
Claus Gittinger <cg@exept.de>
parents: 985
diff changeset
   185
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   186
    "Modified: / 26-04-2012 / 12:07:12 / cg"
1486
251879696655 *** empty log message ***
martin
parents: 1468
diff changeset
   187
!
251879696655 *** empty log message ***
martin
parents: 1468
diff changeset
   188
251879696655 *** empty log message ***
martin
parents: 1468
diff changeset
   189
separator
3964
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   190
    "create and return a new menuItem for a '----' separator"
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   191
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   192
    ^ self separator:'-'
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   193
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   194
    "Modified: / 19-07-2017 / 09:17:30 / cg"
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   195
!
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   196
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   197
separator2
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   198
    "create and return a new menuItem for a '====' separator"
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   199
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   200
    ^ self separator:'='
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   201
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   202
    "Created: / 19-07-2017 / 09:16:54 / cg"
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   203
!
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   204
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   205
separator:sepString
1486
251879696655 *** empty log message ***
martin
parents: 1468
diff changeset
   206
    "create and return a new menuItem for a separator"
251879696655 *** empty log message ***
martin
parents: 1468
diff changeset
   207
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   208
    ^ self new
3964
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   209
        label:sepString; translateLabel:false;
3003
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   210
        yourself
e2177537ecb8 added: #label:value:argument:
Claus Gittinger <cg@exept.de>
parents: 2987
diff changeset
   211
3964
6badb85f429d #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3844
diff changeset
   212
    "Created: / 19-07-2017 / 09:17:21 / cg"
490
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
   213
! !
ebe88e50b29a *** empty log message ***
ca
parents: 458
diff changeset
   214
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   215
!MenuItem class methodsFor:'class initialization'!
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   216
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   217
initialize
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   218
    FLAG_HORIZONTAL_LAYOUT                := 16r0001.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   219
    FLAG_TRANSLATE_LABEL                  := 16r0002.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   220
    FLAG_ISBUTTON                         := 16r0004.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   221
    FLAG_HIDE_ONACTIVATED                 := 16r0008.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   222
    FLAG_TRIGGER_ONDOWN                   := 16r0010.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   223
    FLAG_SHOW_BUSYCURSOR_WHILE_PERFORMING := 16r0020.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   224
    FLAG_KEEP_LINKEDMENU                  := 16r0040.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   225
    FLAG_SEND_TO_ORIGINATOR               := 16r0080.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   226
    FLAG_IGNORE_MNEMONIC_KEYS             := 16r0100.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   227
    FLAG_IGNORE_SHORTCUTS                 := 16r0200.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   228
    FLAG_IS_MENUSLICE                     := 16r0400.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   229
    FLAG_FORCE_MENUINDICATOR              := 16r0800.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   230
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   231
    "Created: / 09-08-2018 / 16:36:25 / Claus Gittinger"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   232
! !
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   233
2264
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   234
!MenuItem class methodsFor:'constants'!
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   235
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   236
supportedStartGroupValues
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   237
    "start group #left #right #conditionalRight ...
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   238
     At the moment only #left/nil, #right/#conditionalRight are implemented.
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   239
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   240
     The meanings are:
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   241
        nil                 - default under control of the menu
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   242
        #left               - left align
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   243
        #right              - place at the right far end
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   244
        #conditionalRight   - controlled by a styleSheet variable;
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   245
                              like #right under all non-win32 systems,
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   246
                              ignored on win32.
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   247
                              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
   248
                              viewStyles, but not under win32."
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   249
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   250
    ^ #(nil #left #right #conditionalRight)
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   251
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   252
    "Created: / 16-10-2006 / 13:09:27 / cg"
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   253
! !
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   254
1763
fabe0b506e33 method category rename
Claus Gittinger <cg@exept.de>
parents: 1761
diff changeset
   255
!MenuItem methodsFor:'Compatibility-ST80'!
724
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
   256
2755
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   257
enablementSelector:aSymbol
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   258
    "dummy for now - for visualworks compatibility (specs)"
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   259
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   260
    "/ self halt.
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   261
!
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   262
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   263
helpText:aString
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   264
    "dummy for now - for visualworks compatibility (specs)"
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   265
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   266
    activeHelpKey := aString.
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   267
!
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   268
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   269
indicationSelector:aSymbol
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   270
    "dummy for now - for visualworks compatibility (specs)"
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   271
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   272
    "/ self halt.
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   273
!
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   274
724
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
   275
isEnabled:aBoolean
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
   276
    self enabled:aBoolean
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
   277
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
   278
    "Created: / 27.10.1997 / 16:34:55 / cg"
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   279
!
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   280
2755
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   281
shortcutModifiers:something
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   282
    "dummy for now - for visualworks compatibility (specs)"
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   283
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   284
    "/ self halt.
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   285
!
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
   286
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   287
value
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   288
    "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
   289
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   290
    ^ itemValue
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   291
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   292
    "Created: 25.2.1997 / 19:50:14 / cg"
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
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   295
value:something
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   296
    "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
   297
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   298
    itemValue := something
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   299
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
   300
    "Created: 25.2.1997 / 19:11:13 / cg"
724
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
   301
! !
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
   302
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   303
!MenuItem methodsFor:'accessing'!
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   304
579
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
   305
accessCharacterPosition
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   306
    "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
   307
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   308
    ^ accessCharacterPosition
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   309
!
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   310
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   311
accessCharacterPosition:index 
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   312
    "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
   313
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   314
    accessCharacterPosition := index
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   315
!
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   316
640
4e1c0d0a633b add active help for items
ca
parents: 590
diff changeset
   317
activeHelpKey
4045
1671de832c2e #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   318
    "the key used as index (and argument) to the helpSpec"
3215
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   319
640
4e1c0d0a633b add active help for items
ca
parents: 590
diff changeset
   320
    ^ activeHelpKey
4e1c0d0a633b add active help for items
ca
parents: 590
diff changeset
   321
!
4e1c0d0a633b add active help for items
ca
parents: 590
diff changeset
   322
4e1c0d0a633b add active help for items
ca
parents: 590
diff changeset
   323
activeHelpKey:aKey
4045
1671de832c2e #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4037
diff changeset
   324
    "the key used as index (and argument) to the helpSpec"
3215
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   325
4158
8dca33d57bb6 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4147
diff changeset
   326
    aKey isAssociation ifTrue:[
8dca33d57bb6 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4147
diff changeset
   327
        self halt:'someone provides a bad key to me'.
8dca33d57bb6 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4147
diff changeset
   328
        activeHelpKey := aKey key
8dca33d57bb6 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4147
diff changeset
   329
    ] ifFalse:[    
8dca33d57bb6 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4147
diff changeset
   330
        activeHelpKey := aKey
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
8dca33d57bb6 #QUALITY by cg
Claus Gittinger <cg@exept.de>
parents: 4147
diff changeset
   333
    "Modified: / 09-08-2018 / 15:50:45 / Claus Gittinger"
640
4e1c0d0a633b add active help for items
ca
parents: 590
diff changeset
   334
!
4e1c0d0a633b add active help for items
ca
parents: 590
diff changeset
   335
684
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   336
argument
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   337
    "get argument given to the value (selector)"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   338
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   339
    ^ argument
684
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   340
!
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   341
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   342
argument:something
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   343
    "set argument given to the value (selector)"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   344
684
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   345
    |arg|
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   346
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   347
    (arg := something) notNil ifTrue:[
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   348
        arg isString ifTrue:[
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   349
            (arg size == 0 or:[ (arg indexOfNonSeparatorStartingAt:1) == 0 ]) ifTrue:[
684
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   350
                arg := nil
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   351
            ]
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   352
        ]
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   353
    ].
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   354
    argument := arg
684
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   355
!
184dd159d02e support of arguments
ca
parents: 666
diff changeset
   356
1213
a80ce81d2944 auxValue added
tm
parents: 1203
diff changeset
   357
auxValue
a80ce81d2944 auxValue added
tm
parents: 1203
diff changeset
   358
    "an additional, arbitrary value"
a80ce81d2944 auxValue added
tm
parents: 1203
diff changeset
   359
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   360
    ^ auxValue
1213
a80ce81d2944 auxValue added
tm
parents: 1203
diff changeset
   361
!
a80ce81d2944 auxValue added
tm
parents: 1203
diff changeset
   362
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   363
auxValue:something
2112
3c4dd2e9203f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
   364
    "set the auxValue - an arbitrary user value"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   365
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   366
    auxValue := something
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   367
!
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   368
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
    choice := something.
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   371
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   372
    "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
   373
!
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   374
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
    ^ choiceValue
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   377
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   378
    "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
   379
!
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   380
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
    choiceValue := something.
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   383
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   384
    "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
   385
!
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   386
2548
07251b4e7ac9 changed #hierarchicalUUID
fm
parents: 2533
diff changeset
   387
hierarchicalUUID
07251b4e7ac9 changed #hierarchicalUUID
fm
parents: 2533
diff changeset
   388
07251b4e7ac9 changed #hierarchicalUUID
fm
parents: 2533
diff changeset
   389
    ^ self uuid
07251b4e7ac9 changed #hierarchicalUUID
fm
parents: 2533
diff changeset
   390
!
07251b4e7ac9 changed #hierarchicalUUID
fm
parents: 2533
diff changeset
   391
1884
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   392
ignoreMnemonicKeys
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   393
    "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
   394
     Set this to speedup accelerator key processing for slow dynamci menus.
e9074e9333fa comment: #ignoreMnemonicKeys
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
   395
     The default is set to false"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   396
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   397
    ^ (flags ? 0) bitTest:FLAG_IGNORE_MNEMONIC_KEYS "/ ignoreMnemonicKeys ? false
2938
e9074e9333fa comment: #ignoreMnemonicKeys
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
   398
e9074e9333fa comment: #ignoreMnemonicKeys
Claus Gittinger <cg@exept.de>
parents: 2876
diff changeset
   399
    "Modified (comment): / 08-09-2011 / 04:30:19 / cg"
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   400
    "Modified: / 09-08-2018 / 16:41:53 / Claus Gittinger"
1884
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   401
!
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   402
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   403
ignoreMnemonicKeys:aBoolean
1884
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   404
    "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
   405
     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
   406
     The default is false"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   407
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   408
    "/ ignoreMnemonicKeys := aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   409
    flags := (flags ? 0) changeMask:FLAG_IGNORE_MNEMONIC_KEYS to:aBoolean.
2939
c04e85910837 comment: #ignoreMnemonicKeys:
Claus Gittinger <cg@exept.de>
parents: 2938
diff changeset
   410
c04e85910837 comment: #ignoreMnemonicKeys:
Claus Gittinger <cg@exept.de>
parents: 2938
diff changeset
   411
    "Modified (comment): / 08-09-2011 / 04:52:23 / cg"
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   412
    "Modified: / 09-08-2018 / 16:43:08 / Claus Gittinger"
1884
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   413
!
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   414
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   415
ignoreShortcutKeys
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   416
    "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
   417
     the default is set to false"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   418
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   419
    ^ (flags ? 0) bitTest:FLAG_IGNORE_SHORTCUTS "/ ignoreShortcutKeys ? false
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   420
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   421
    "Modified: / 09-08-2018 / 16:43:26 / Claus Gittinger"
1884
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   422
!
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   423
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   424
ignoreShortcutKeys:aBoolean
1884
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   425
    "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
   426
     the default is set to false"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   427
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   428
    "/ ignoreShortcutKeys := aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   429
    flags := (flags ? 0) changeMask:FLAG_IGNORE_SHORTCUTS to:aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   430
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   431
    "Modified: / 09-08-2018 / 16:43:49 / Claus Gittinger"
1884
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   432
!
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
   433
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   434
indication
3178
ced60e8c83fe class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
   435
    "value of the items on/off indicator (CheckToggle).
ced60e8c83fe class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
   436
     Usually a valueHolder"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   437
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   438
    ^ indication
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   439
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   440
    "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
   441
!
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   442
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   443
indication:someValueHolder
3178
ced60e8c83fe class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
   444
    "value of the items on/off indicator (CheckToggle).
ced60e8c83fe class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
   445
     someValueHolder is usually a value holder"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   446
3178
ced60e8c83fe class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
   447
    indication := someValueHolder.
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   448
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   449
    "Created: 25.2.1997 / 20:59:28 / cg"
1213
a80ce81d2944 auxValue added
tm
parents: 1203
diff changeset
   450
!
a80ce81d2944 auxValue added
tm
parents: 1203
diff changeset
   451
798
8a27a879ff23 support of visible/invisible items
ca
parents: 794
diff changeset
   452
isVisible
3215
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   453
    "a visibility holder; either a block, boolean or value holder.
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   454
     If the menu is permanently visible, it should be a valueHolder,
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   455
     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
   456
1663
00afd9631d8c isVisible - default is true
Claus Gittinger <cg@exept.de>
parents: 1658
diff changeset
   457
    ^ isVisible ? true
798
8a27a879ff23 support of visible/invisible items
ca
parents: 794
diff changeset
   458
!
8a27a879ff23 support of visible/invisible items
ca
parents: 794
diff changeset
   459
8a27a879ff23 support of visible/invisible items
ca
parents: 794
diff changeset
   460
isVisible:something
3215
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   461
    "a visibility holder; either a block, boolean or value holder.
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   462
     If the menu is permanently visible, it should be a valueHolder,
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   463
     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
   464
798
8a27a879ff23 support of visible/invisible items
ca
parents: 794
diff changeset
   465
    isVisible := something
8a27a879ff23 support of visible/invisible items
ca
parents: 794
diff changeset
   466
!
8a27a879ff23 support of visible/invisible items
ca
parents: 794
diff changeset
   467
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   468
itemValue
3215
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   469
    "the item's action; if it is a block, that is evaluated;
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   470
     if a symbol, that message is sent to the menu's receiver"
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   471
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   472
    ^ itemValue
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   473
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   474
    "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
   475
!
1370
4d2a3cc1d3c7 allow views in subMenus
ca
parents: 1369
diff changeset
   476
3215
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   477
itemValue:aBlockOrSymbol
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   478
    "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
   479
     if a symbol, that message is sent to the menu's receiver"
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   480
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   481
    itemValue := aBlockOrSymbol
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   482
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   483
    "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
   484
!
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   485
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   486
itemValue:selectorOrBlock argument:anArgument
3215
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   487
    "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
   488
     if a symbol, that message is sent to the menu's receiver"
0b3ad7144d4f class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3212
diff changeset
   489
3023
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   490
    itemValue := selectorOrBlock.
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   491
    argument := anArgument
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   492
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   493
    "Created: / 09-09-2012 / 13:05:14 / cg"
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   494
!
763ad69e9832 menuitem protocol
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
   495
3221
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   496
label:aString icon:anImage
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   497
    self label:aString.
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   498
    self resourceRetriever: (ResourceRetriever icon:anImage string:'')
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
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   501
label:labelString itemValue:selectorOrBlock
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   502
    label := labelString.
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   503
    itemValue := selectorOrBlock.
3221
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   504
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   505
    "Created: / 09-09-2012 / 13:18:34 / cg"
4067
910d95fb5292 #QUALITY by mawalch
mawalch
parents: 4056
diff changeset
   506
    "Modified (comment): / 14-02-2018 / 12:55:40 / mawalch"
3221
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
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   509
label:labelString itemValue:selectorOrBlock argument:something
3353
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   510
    "define label, value and an argument to be passed with the action"
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   511
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   512
    self assert:(labelString isNil or:[labelString isString]).
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   513
3221
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   514
    label := labelString.
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   515
    itemValue := selectorOrBlock.
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   516
    argument := something.
3221
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   517
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   518
    "Created: / 09-09-2012 / 13:19:36 / cg"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   519
    "Modified: / 24-01-2018 / 14:34:10 / mawalch"
3221
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   520
!
fe5d6ca2dfd9 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3215
diff changeset
   521
3352
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   522
label:labelString itemValue:selectorOrBlock enabled:enabledHolder
3353
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   523
    "define label, value
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   524
     and enabled holder, which can be a boolean, a boolean valueHolder,
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   525
     a block or a selector (to be sent to the application)"
6a6ab96a3720 class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3352
diff changeset
   526
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   527
    self assert:(labelString isNil or:[labelString isString]).
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   528
3352
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   529
    label := labelString.
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   530
    itemValue := selectorOrBlock.
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   531
    enabled := enabledHolder.
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   532
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   533
    "Modified: / 24-01-2018 / 14:34:18 / mawalch"
3352
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
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   536
label:labelString itemValue:selectorOrBlock translateLabel:translateLabelBoolean
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   537
    self assert:(labelString isNil or:[labelString isString]).
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   538
3352
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   539
    label := labelString.
244d68f2382e class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3305
diff changeset
   540
    itemValue := selectorOrBlock.
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   541
    translateLabel := translateLabelBoolean.
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   542
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   543
    "Modified: / 24-01-2018 / 14:34:24 / mawalch"
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
2412
3f11e716f802 Do not try to translate separators
Stefan Vogel <sv@exept.de>
parents: 2293
diff changeset
   832
    ^ translateLabel ? true
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   833
!
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   834
2082
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   835
translateLabel:aBoolean
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   836
    "sets whether label is translated"
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   837
2082
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   838
    translateLabel := aBoolean
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   839
!
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   840
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   841
triggerOnDown
3843
52c875014c46 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3353
diff changeset
   842
   "returns true if the action is triggered when pressed.
52c875014c46 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3353
diff changeset
   843
    The default is false (trigger when released)"
2082
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   844
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   845
    ^ (flags ? 0) bitTest:FLAG_TRIGGER_ONDOWN "/ triggerOnDown ? false
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   846
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   847
    "Modified: / 09-08-2018 / 16:53:49 / Claus Gittinger"
1595
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
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   850
triggerOnDown:aBoolean
2082
cab2f7b1f938 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
   851
   "controls if the action is triggered when pressed or released"
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
    "/ triggerOnDown := aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   854
    flags := (flags ? 0) changeMask:FLAG_TRIGGER_ONDOWN to:aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   855
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   856
    "Modified: / 09-08-2018 / 16:54:10 / Claus Gittinger"
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   857
! !
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   858
4029
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   859
!MenuItem methodsFor:'accessing-channels'!
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   860
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   861
label:labelString submenuChannel:aSymbolOrValueHolder
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   862
    self assert:(labelString isNil or:[labelString isString]).
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   863
4029
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   864
    label := labelString.
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   865
    submenuChannel := aSymbolOrValueHolder.
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   866
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   867
    "Modified: / 24-01-2018 / 14:36:54 / mawalch"
4029
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
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   870
submenuChannel
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   871
    "get the submenuChannel or nil"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   872
4029
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   873
    ^ submenuChannel
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   874
!
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   875
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   876
submenuChannel:aMenuHolder
4029
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   877
    "set the submenuChannel or nil"
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   878
4029
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   879
    submenuChannel := aMenuHolder.
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   880
! !
14e3074dd294 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4019
diff changeset
   881
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   882
!MenuItem methodsFor:'accessing-look'!
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   883
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   884
font
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   885
    "get the specific font for an item or nil"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   886
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   887
    ^ font
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   888
!
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   889
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   890
font:aFont
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   891
    "set a specific font for an item"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   892
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   893
    font := aFont.
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
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   896
hasMenuIndicator
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   897
    "returns whether item should always show a menu-indicator (arrow)"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   898
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   899
    ^ (flags ? 0) bitTest:FLAG_FORCE_MENUINDICATOR "/ forceMenuIndicator ? false
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
    "Created: / 09-08-2018 / 16:35:05 / Claus Gittinger"
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:aBoolean
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   905
    "force the item to 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 := (flags ? 0) changeMask:FLAG_FORCE_MENUINDICATOR to:aBoolean.
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:49:11 / 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
horizontalLayout
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   913
    "by default, submenus have a vertical layout;
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   914
     if true, the submenu has a horizontal layout."
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   915
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   916
    ^ (flags ? 0) bitTest:FLAG_HORIZONTAL_LAYOUT "/ horizontalLayout ? false
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   917
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   918
    "Modified: / 09-08-2018 / 16:46:50 / Claus Gittinger"
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
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   921
horizontalLayout:aBoolean
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   922
    "by default, submenus have a vertical layout;
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   923
     if true, the submenu has a horizontal layout."
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   924
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   925
    "/ horizontalLayout := aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   926
    flags := (flags ? 0) changeMask:FLAG_HORIZONTAL_LAYOUT to:aBoolean.
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
    "Modified: / 09-08-2018 / 16:47:05 / Claus Gittinger"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   929
!
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   930
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   931
icon:anImage
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
   932
    self resourceRetriever: (ResourceRetriever icon:anImage)
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   933
!
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   934
752
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   935
isButton
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   936
    "returns whether item looks like a Button
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   937
    "
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   938
    ^ (flags ? 0) bitTest:FLAG_ISBUTTON "/ isButton ? false
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   939
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   940
    "Modified: / 09-08-2018 / 16:49:32 / Claus Gittinger"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   941
!
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   942
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   943
isButton:aBoolean
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   944
    "sets whether item looks like a Button
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   945
    "
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   946
    "/ isButton := aBoolean
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   947
    flags := (flags ? 0) changeMask:FLAG_ISBUTTON to:aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   948
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   949
    "Modified: / 09-08-2018 / 16:49:56 / Claus Gittinger"
752
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   950
!
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   951
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   952
isMenuSlice
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   953
    "returns true if the menu is a slice,
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   954
     building its items into its container menu
752
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   955
    "
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   956
    ^ submenuChannel notNil 
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   957
    and:[ (flags ? 0) bitTest:FLAG_IS_MENUSLICE "isMenuSlice == true"].
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   958
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   959
    "Modified: / 09-08-2018 / 16:44:37 / Claus Gittinger"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   960
!
752
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   961
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   962
isMenuSlice:aBoolean
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   963
    "/ isMenuSlice := aBoolean.
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   964
    flags := (flags ? 0) changeMask:FLAG_IS_MENUSLICE to:aBoolean.
752
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   965
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
   966
    "Modified: / 09-08-2018 / 16:44:58 / Claus Gittinger"
752
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   967
!
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   968
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   969
label
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   970
    ^ self filteredLabel "/ label
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   971
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   972
    "Created: / 25.2.1997 / 19:48:16 / cg"
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   973
    "Modified: / 19.6.1998 / 00:02:55 / cg"
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   974
!
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   975
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   976
label:aString
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   977
    label := aString.
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   978
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
   979
    "Created: / 25-02-1997 / 19:55:16 / cg"
4067
910d95fb5292 #QUALITY by mawalch
mawalch
parents: 4056
diff changeset
   980
    "Modified: / 14-02-2018 / 12:23:41 / mawalch"
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   981
!
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   982
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   983
startGroup
2264
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   984
    "start group #left #right #conditionalRight ... or nil
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   985
     at the moment only #right and #conditionalRight are implemented"
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   986
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   987
    ^ startGroup ? #left
2264
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   988
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   989
    "Modified: / 16-10-2006 / 13:05:52 / cg"
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   990
!
752
93690dcd1b75 button and label translation support added.
tz
parents: 724
diff changeset
   991
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
   992
startGroup:aSymbol
2264
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   993
    "start group #left #right #conditionalRight ...
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   994
     at the moment only #right and #conditionalRight are implemented.
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   995
     The meanings are:
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   996
        nil                 - default under control of the menu
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   997
        #left               - left align
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   998
        #right              - place at the right far end
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
   999
        #conditionalRight   - controlled by a styleSheet variable;
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1000
                              like #right under all non-win32 systems,
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1001
                              ignored on win32.
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1002
                              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
  1003
                              viewStyles, but not under win32.
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1004
    "
2264
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1005
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1006
    (self class supportedStartGroupValues includes:aSymbol) ifTrue:[
1595
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1007
        startGroup := aSymbol
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1008
    ] ifFalse:[
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1009
        self warn:('unsupported group: ', aSymbol printString ).
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1010
        startGroup := #left
0595db55a829 preps for delayedMenu
Claus Gittinger <cg@exept.de>
parents: 1568
diff changeset
  1011
    ]
2263
30cf468f47ca new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
  1012
2264
8736ee5ec90e new startGroup value: #conditionalRight
Claus Gittinger <cg@exept.de>
parents: 2263
diff changeset
  1013
    "Modified: / 16-10-2006 / 13:09:45 / cg"
581
0080d12b5758 enabled can be something not only a boolean
ca
parents: 580
diff changeset
  1014
! !
0080d12b5758 enabled can be something not only a boolean
ca
parents: 580
diff changeset
  1015
1333
423b4b4404c4 avoid creating an adornment (when nil adornment values are stored)
Claus Gittinger <cg@exept.de>
parents: 1329
diff changeset
  1016
!MenuItem methodsFor:'accessing-resource'!
581
0080d12b5758 enabled can be something not only a boolean
ca
parents: 580
diff changeset
  1017
584
9a4c30f7586f ST-80 compatible features addded
ca
parents: 581
diff changeset
  1018
findGuiResourcesIn:aResourceContainerOrApplication
4033
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1019
    "resolve national language translations from aResourceContainerOrApplication"
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1020
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1021
    self
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1022
        findGuiResourcesIn:aResourceContainerOrApplication
4033
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1023
        rememberResourcesIn:nil
1401
0fda9891ba4a only ask once for resources (remember locally)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1024
!
0fda9891ba4a only ask once for resources (remember locally)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1025
0fda9891ba4a only ask once for resources (remember locally)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1026
findGuiResourcesIn:aResourceContainerOrApplication rememberResourcesIn:aValueHolderOrNil
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
     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
  1029
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1030
    |retriever m itemFont|
1401
0fda9891ba4a only ask once for resources (remember locally)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1031
1986
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1032
    (aResourceContainerOrApplication isNil or:[self isMenuSlice]) ifTrue:[
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1033
        ^ self.
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1034
    ].
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1035
3305
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1036
    "while traversing all the menus, resolve symbolic fonts too"
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1037
    itemFont := self font.
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1038
    itemFont isSymbol ifTrue:[
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1039
        itemFont := aResourceContainerOrApplication resolveFont:itemFont.
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1040
        self font:itemFont.
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1041
    ].
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1042
2412
3f11e716f802 Do not try to translate separators
Stefan Vogel <sv@exept.de>
parents: 2293
diff changeset
  1043
    (self translateLabel and:[label ~= '-']) ifTrue:[
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1044
        label := ResourceRetriever
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1045
                        findResourceLabel:label
1401
0fda9891ba4a only ask once for resources (remember locally)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1046
                        in:aResourceContainerOrApplication
2018
5a6446cf5079 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1990
diff changeset
  1047
                        rememberResourcesIn:aValueHolderOrNil.
1401
0fda9891ba4a only ask once for resources (remember locally)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1048
    ].
4037
eecd873be684 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4034
diff changeset
  1049
    (label notNil and:[label includesString:'%(']) ifTrue:[
4033
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1050
        |fetchDict|
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1051
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1052
        fetchDict := VirtualDictionary new.
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1053
        fetchDict
4033
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1054
            fetchBlock:[:key |
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1055
                (aResourceContainerOrApplication labelFor:key asSymbol) value
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1056
            ].
4033
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1057
        label := label bindWithArguments:fetchDict.
87e5649b7dea #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 4029
diff changeset
  1058
    ].
1401
0fda9891ba4a only ask once for resources (remember locally)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1059
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1060
    (retriever := self resourceRetriever) notNil ifTrue:[
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1061
        retriever findGuiResourcesIn:aResourceContainerOrApplication.
3305
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1062
        retriever labelText notNil ifTrue: [retriever labelText:label].
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1063
    ].
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1064
    (m := self submenu) notNil ifTrue:[
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1065
        m := m value.
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1066
        m notNil ifTrue:[
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1067
            m findGuiResourcesIn:aResourceContainerOrApplication rememberResourcesIn:aValueHolderOrNil
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1068
        ]
1401
0fda9891ba4a only ask once for resources (remember locally)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1069
    ]
0fda9891ba4a only ask once for resources (remember locally)
Claus Gittinger <cg@exept.de>
parents: 1370
diff changeset
  1070
4037
eecd873be684 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4034
diff changeset
  1071
    "Modified: / 18-06-1998 / 16:54:25 / cg"
eecd873be684 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 4034
diff changeset
  1072
    "Modified: / 28-12-2017 / 18:36:31 / stefan"
1986
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1073
!
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1074
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1075
receiver:aReceiver perform:aSelector with:anArgument ifNone:aBlock
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1076
    "send the one-arg-message aSelector to the application;
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1077
     the result returned from the send or nil is returned
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1078
    "
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1079
    |result|
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1080
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1081
    MessageNotUnderstood handle:[:ex|
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1082
        ex selector ~~ aSelector ifTrue:[
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1083
            ex reject
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1084
        ].
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1085
        result := aBlock value.
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1086
    ] do:[
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1087
        aSelector numArgs == 0 ifTrue:[
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1088
            result := aReceiver perform:aSelector.
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1089
        ] ifFalse:[
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1090
            result := aReceiver perform:aSelector with:anArgument.
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1091
        ].
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1092
    ].
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1093
    ^ result
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1094
!
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1095
3966
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1096
resolveSliceMenuItemsIn:aReceiver for:originalReceiver rememberResourcesIn:aValueHolderOrNil
1986
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1097
    |menu|
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1098
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1099
    self isMenuSlice ifFalse:[
3305
06a3d26394de class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3225
diff changeset
  1100
        self error:'not a slice menu' mayProceed:true.
1986
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1101
        ^ Array with:self.
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1102
    ].
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1103
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1104
    aReceiver isNil ifTrue:[
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1105
        ^ nil
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1106
    ].
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1107
    menu := self
3966
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1108
                receiver:aReceiver perform:submenuChannel with:argument
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1109
                ifNone:[
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1110
                    self
3966
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1111
                        receiver:(aReceiver class) perform:submenuChannel with:argument 
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1112
                        ifNone:[
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1113
                            "/ ('MenuItem [info]: no aspect for slice ',submenuChannel) infoPrintCR.
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1114
                            nil
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1115
                        ].
2036
f8e99bb346e4 *** empty log message ***
penk
parents: 2033
diff changeset
  1116
                ].
1986
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1117
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1118
    menu := menu value.
2033
a9ed3856e834 *** empty log message ***
james
parents: 2018
diff changeset
  1119
    menu isNil ifTrue:[^ nil].
1986
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1120
2292
d7b06b31d72b use decodeFromLiteralArray
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
  1121
    menu isCollection ifTrue:[
d7b06b31d72b use decodeFromLiteralArray
Claus Gittinger <cg@exept.de>
parents: 2268
diff changeset
  1122
        menu := Menu decodeFromLiteralArray:menu.
1986
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1123
    ].
3966
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1124
    menu findGuiResourcesIn:originalReceiver rememberResourcesIn:aValueHolderOrNil.
1986
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1125
    ^ menu items
2268
a947e7f7a28f resolveGUIResources no longer sets the receiver recursively
Claus Gittinger <cg@exept.de>
parents: 2264
diff changeset
  1126
3966
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1127
    "Created: / 21-07-2017 / 19:46:54 / cg"
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1128
!
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1129
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1130
resolveSliceMenuItemsIn:aReceiver rememberResourcesIn:aValueHolderOrNil
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1131
    ^ self resolveSliceMenuItemsIn:aReceiver for:aReceiver rememberResourcesIn:aValueHolderOrNil
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1132
be0d53f65bb3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 3964
diff changeset
  1133
    "Modified: / 21-07-2017 / 19:48:45 / cg"
579
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1134
! !
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1135
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1136
!MenuItem methodsFor:'converting'!
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1137
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1138
skippedInLiteralEncoding
4161
a97047ee60f8 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4159
diff changeset
  1139
    "define the inst-slots which are skipped when generating a literalArrayEncoding;
a97047ee60f8 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4159
diff changeset
  1140
     (to skip the ones with default values.)"
a97047ee60f8 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4159
diff changeset
  1141
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1142
    |coll|
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1143
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1144
    coll := super skippedInLiteralEncoding asOrderedCollection.
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1145
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1146
    label isNil ifTrue:[ coll add:#label ].
3021
39995ec958eb changed: #skippedInLiteralEncoding
Claus Gittinger <cg@exept.de>
parents: 3003
diff changeset
  1147
    (translateLabel isNil or:[translateLabel == true or:[#('' '-' '=') includes:label]]) ifTrue:[ coll add:#translateLabel ].
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1148
    self isButton ifFalse:[ coll add:#isButton ].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1149
    self triggerOnDown ifFalse:[ coll add:#triggerOnDown ].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1150
    self hideMenuOnActivated ifTrue:[ coll add:#hideMenuOnActivated].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1151
    nameKey isNil ifTrue:[ coll add:#nameKey ].
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1152
    (self isVisible == true) ifTrue:[coll add:#isVisible].
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1153
    (startGroup isNil or:[startGroup == #left]) ifTrue:[coll add:#startGroup].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1154
    itemValue isNil ifTrue:[ coll add:#itemValue].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1155
    activeHelpKey isNil ifTrue:[ coll add:#activeHelpKey].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1156
    enabled == true "could be a symbol" ifTrue:[ coll add:#enabled].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1157
    shortcutKey isNil ifTrue:[ coll add:#shortcutKeyCharacter].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1158
    font isNil ifTrue:[ coll add:#font].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1159
    accessCharacterPosition isNil ifTrue:[coll add:#accessCharacterPosition].
1990
dca233a39477 horizontalLayout bug
Claus Gittinger <cg@exept.de>
parents: 1986
diff changeset
  1160
    self horizontalLayout ifFalse:[coll add:#horizontalLayout].
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1161
    self showBusyCursorWhilePerforming ifFalse:[ coll add:#showBusyCursorWhilePerforming ].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1162
    argument isNil ifTrue:[ coll add:#argument].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1163
    self resourceRetriever isNil ifTrue:[ coll add:#resourceRetriever].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1164
    indication isNil ifTrue:[ coll add:#indication].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1165
    choice isNil ifTrue:[coll add:#choice].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1166
    choiceValue isNil ifTrue:[ coll add:#choiceValue].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1167
    auxValue isNil ifTrue:[ coll add:#auxValue ].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1168
    submenuChannel isNil ifTrue:[ coll add:#submenuChannel].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1169
    self keepLinkedMenu ifFalse:[ coll add:#keepLinkedMenu].
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1170
    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
  1171
    self sendToOriginator ifFalse:[coll add:#sendToOriginator ].
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1172
1885
860b47f2535f support ignoreShortcutKeys and ignoreMnemonicKeys in Editor
ca
parents: 1884
diff changeset
  1173
    self ignoreShortcutKeys ifFalse:[coll add:#ignoreShortcutKeys ].
860b47f2535f support ignoreShortcutKeys and ignoreMnemonicKeys in Editor
ca
parents: 1884
diff changeset
  1174
    self ignoreMnemonicKeys ifFalse:[coll add:#ignoreMnemonicKeys ].
1884
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
  1175
1986
f819e439d917 *** empty log message ***
ca
parents: 1885
diff changeset
  1176
    self isMenuSlice ifFalse:[coll add:#isMenuSlice].
1884
4b317db4d387 support of ignoreShortcutKeys and ignoreMnemonicKeys
ca
parents: 1763
diff changeset
  1177
1646
da8d044c7c0d value - itemValue
Claus Gittinger <cg@exept.de>
parents: 1643
diff changeset
  1178
    ^ coll
3021
39995ec958eb changed: #skippedInLiteralEncoding
Claus Gittinger <cg@exept.de>
parents: 3003
diff changeset
  1179
39995ec958eb changed: #skippedInLiteralEncoding
Claus Gittinger <cg@exept.de>
parents: 3003
diff changeset
  1180
    "Modified: / 22-08-2012 / 21:22:20 / cg"
4161
a97047ee60f8 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 4159
diff changeset
  1181
    "Modified (comment): / 09-08-2018 / 17:17:52 / Claus Gittinger"
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1182
! !
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1183
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1184
!MenuItem methodsFor:'encoding & decoding'!
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1185
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1186
fromLiteralArrayEncoding:aLiteralEncodedArray
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1187
    "read my contents from a aLiteralEncodedArray"
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1188
2047
f3b5fa8cd08e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  1189
    |selector value retriever|
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1190
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1191
    2 to:aLiteralEncodedArray size by:2 do:[:i |
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1192
        selector := aLiteralEncodedArray at:i.
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1193
        value    := (aLiteralEncodedArray at:i+1).
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1194
        selector == #argument: ifFalse:[
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1195
            value := value decodeAsLiteralArray
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1196
        ].
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1197
        self perform:selector with:value
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1198
    ].
2047
f3b5fa8cd08e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  1199
    "/ kludge in case someone forgets to call findGUIResourcesIn:
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1200
    (retriever := self resourceRetriever) notNil ifTrue:[
2047
f3b5fa8cd08e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2040
diff changeset
  1201
        retriever labelText notNil ifTrue: [retriever labelText: label].
4056
a4fafec15105 #QUALITY by mawalch
mawalch
parents: 4054
diff changeset
  1202
    ].
1643
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1203
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1204
    "
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1205
     #( #MenuItem #rawLabel: 'left' #nameKey: 'identifier'  #value: #left )
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1206
         decodeAsLiteralArray
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1207
    "
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1208
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1209
    "Modified: / 4.2.2000 / 12:50:28 / cg"
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1210
! !
e1148c53ad3c got rid of adornment; ResourceRetriever code cleaned up.
Claus Gittinger <cg@exept.de>
parents: 1625
diff changeset
  1211
1329
b56172875855 nicer displayString
Claus Gittinger <cg@exept.de>
parents: 1328
diff changeset
  1212
!MenuItem methodsFor:'printing & storing'!
b56172875855 nicer displayString
Claus Gittinger <cg@exept.de>
parents: 1328
diff changeset
  1213
2736
4798b0251087 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2548
diff changeset
  1214
printOn:aStream
4798b0251087 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2548
diff changeset
  1215
    aStream nextPutAll:self classNameWithArticle.
4798b0251087 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2548
diff changeset
  1216
    aStream nextPutAll:'('.
4798b0251087 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2548
diff changeset
  1217
    aStream nextPutAll:label storeString.
4798b0251087 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2548
diff changeset
  1218
    aStream nextPutAll:')'
1329
b56172875855 nicer displayString
Claus Gittinger <cg@exept.de>
parents: 1328
diff changeset
  1219
! !
b56172875855 nicer displayString
Claus Gittinger <cg@exept.de>
parents: 1328
diff changeset
  1220
1761
18ec27a0300e method category rename
Claus Gittinger <cg@exept.de>
parents: 1664
diff changeset
  1221
!MenuItem methodsFor:'private-accessing'!
458
729ffdbd2b13 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 455
diff changeset
  1222
973
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1223
filteredLabel
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1224
    "return the label without any &-chars"
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1225
3212
a5ee318ee18d class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3178
diff changeset
  1226
    |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
  1227
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1228
    rawLabel := self rawLabel.
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1229
    rawLabel isString ifFalse:[^ rawLabel].
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1230
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1231
    "/ be careful to preserve any emphasis ...
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1232
    "/ bad kludge ...
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1233
    rawLabel isText ifTrue:[
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1234
        emp := RunArray new.
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1235
    ].
973
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1236
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1237
    out := WriteStream on:''.
985
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1238
    in := rawLabel readStream.
973
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1239
    [in atEnd] whileFalse:[
985
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1240
        emp notNil ifTrue:[
3212
a5ee318ee18d class: MenuItem
Stefan Vogel <sv@exept.de>
parents: 3178
diff changeset
  1241
            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
  1242
        ].
973
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1243
        c := in next.
2040
98d3508fd6e1 care for Unicode-Strings.
Claus Gittinger <cg@exept.de>
parents: 2036
diff changeset
  1244
        c bitsPerCharacter > out collection bitsPerCharacter ifTrue:[
98d3508fd6e1 care for Unicode-Strings.
Claus Gittinger <cg@exept.de>
parents: 2036
diff changeset
  1245
            out setCollection:(c stringSpecies fromString:out collection).
98d3508fd6e1 care for Unicode-Strings.
Claus Gittinger <cg@exept.de>
parents: 2036
diff changeset
  1246
        ].
973
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1247
        c == $& ifTrue:[
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1248
            in peek == $& ifTrue:[
985
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1249
                out nextPut:c.
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1250
                emp notNil ifTrue:[
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1251
                    emp add:e
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1252
                ]
973
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1253
            ]
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1254
        ] ifFalse:[
985
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1255
            out nextPut:c.
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1256
            emp notNil ifTrue:[
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1257
                emp add:e
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1258
            ]
973
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1259
        ]
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1260
    ].
985
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1261
    l := out contents.
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1262
    emp notNil ifTrue:[
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1263
        ^ Text string:l emphasisCollection:emp
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1264
    ].
5a5b476cfd6b care for Text & images in rawLabel, when filtering.
Claus Gittinger <cg@exept.de>
parents: 973
diff changeset
  1265
    ^ l.
973
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1266
cd6b8d08c9c9 submenu item send #value.
Claus Gittinger <cg@exept.de>
parents: 960
diff changeset
  1267
    "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
  1268
    "Modified: / 20.6.1998 / 17:15:18 / cg"
458
729ffdbd2b13 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 455
diff changeset
  1269
! !
729ffdbd2b13 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 455
diff changeset
  1270
579
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1271
!MenuItem methodsFor:'queries'!
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1272
1041
d28f0375cd26 added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
  1273
hasChoice
d28f0375cd26 added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
  1274
    "test whether choice exists
d28f0375cd26 added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
  1275
    "
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1276
    ^ self choice notNil
1041
d28f0375cd26 added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
  1277
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1278
    "Created: / 14-08-1998 / 14:34:29 / cg"
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1279
    "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
  1280
!
d28f0375cd26 added choice type menu items (i.e. radioButton behavior)
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
  1281
590
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1282
hasIndication
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1283
    "test whether indication on/off exists
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1284
    "
2875
eb6fea74e5e6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  1285
    ^ self indication notNil
eb6fea74e5e6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  1286
eb6fea74e5e6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  1287
    "Modified: / 28-10-2010 / 23:30:52 / cg"
590
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1288
!
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1289
579
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1290
hasSubmenu
584
9a4c30f7586f ST-80 compatible features addded
ca
parents: 581
diff changeset
  1291
    ^ self submenu notNil
579
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1292
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1293
    "Created: 25.2.1997 / 20:56:20 / cg"
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1294
!
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1295
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1296
isEnabled
581
0080d12b5758 enabled can be something not only a boolean
ca
parents: 580
diff changeset
  1297
    ^ enabled value ? true
579
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1298
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1299
    "Created: 25.2.1997 / 19:39:17 / cg"
590
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1300
!
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1301
724
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
  1302
isHidden
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
  1303
    "not yet supported"
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
  1304
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
  1305
    ^ false
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
  1306
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
  1307
    "Created: / 27.10.1997 / 15:13:43 / cg"
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
  1308
!
898519684261 more VW comaptibility
Claus Gittinger <cg@exept.de>
parents: 684
diff changeset
  1309
1648
d49c84402011 add query #isMenuItem
ca
parents: 1647
diff changeset
  1310
isMenuItem
d49c84402011 add query #isMenuItem
ca
parents: 1647
diff changeset
  1311
    ^ true
d49c84402011 add query #isMenuItem
ca
parents: 1647
diff changeset
  1312
!
d49c84402011 add query #isMenuItem
ca
parents: 1647
diff changeset
  1313
590
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1314
isOff
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1315
    "test whether indication on/off exists and is off
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1316
    "
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1317
    |indication|
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1318
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1319
    indication := self indication.
2875
eb6fea74e5e6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  1320
    ^ indication value == false
eb6fea74e5e6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  1321
eb6fea74e5e6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  1322
    "Modified: / 28-10-2010 / 23:30:57 / cg"
590
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1323
!
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1324
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1325
isOn
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1326
    "test whether indication on/off exists and is on
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1327
    "
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1328
    |indication|
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1329
fb2c55428c52 ST-80 compatibility
ca
parents: 584
diff changeset
  1330
    indication := self indication.
2875
eb6fea74e5e6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  1331
    ^ indication value == true
eb6fea74e5e6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  1332
eb6fea74e5e6 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 2866
diff changeset
  1333
    "Modified: / 28-10-2010 / 23:31:02 / cg"
2122
4a0a8af7bd71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2112
diff changeset
  1334
!
4a0a8af7bd71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2112
diff changeset
  1335
4a0a8af7bd71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2112
diff changeset
  1336
isSeparatorItem
4a0a8af7bd71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2112
diff changeset
  1337
    ^ #('' '-' '=') includes:label
4a0a8af7bd71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2112
diff changeset
  1338
4a0a8af7bd71 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2112
diff changeset
  1339
    "Created: 25.2.1997 / 19:39:17 / cg"
579
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1340
! !
77f6d490f1ac so far, so good
ca
parents: 578
diff changeset
  1341
2966
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1342
!MenuItem methodsFor:'utilities'!
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1343
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1344
replaceArgument: oldValue with: newValue
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1345
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1346
    "Recusively Replace argument in menu items where
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1347
     current argument is equal to oldValue by newValue"
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1348
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1349
    argument = oldValue ifTrue:[
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1350
        argument := newValue.
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1351
    ].
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1352
    submenu notNil ifTrue:[
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1353
        submenu replaceArgument: oldValue with: newValue
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1354
    ].
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1355
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1356
    "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
  1357
! !
5f538729ab69 Added #replaceArgument:with:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2939
diff changeset
  1358
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1359
!MenuItem class methodsFor:'documentation'!
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1360
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1361
version
3843
52c875014c46 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3353
diff changeset
  1362
    ^ '$Header$'
2755
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  1363
!
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  1364
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  1365
version_CVS
3843
52c875014c46 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3353
diff changeset
  1366
    ^ '$Header$'
451
95064b26ded1 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
  1367
! !
3178
ced60e8c83fe class: MenuItem
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  1368
4159
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1369
4a2fc4aa5730 #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 4158
diff changeset
  1370
MenuItem initialize!