ComboBoxButton.st
author Claus Gittinger <cg@exept.de>
Tue, 11 May 2004 14:50:21 +0200
changeset 2704 0a09fd78eb54
parent 1716 0e31e721d4ab
child 3496 36bb2c61cc61
permissions -rw-r--r--
ColorEditDialog made public
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1716
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
     1
"
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
     2
 COPYRIGHT (c) 1996 by eXept Software AG / Claus Gittinger
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
     3
              All Rights Reserved
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
     4
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
     5
 This software is furnished under a license and may be used
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
     6
 only in accordance with the terms of that license and with the
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
     8
 be provided or otherwise made available to, or used by, any
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
     9
 other person.  No title to or ownership of the software is
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    10
 hereby transferred.
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    11
"
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    12
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    13
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    14
512
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
Toggle subclass:#ComboBoxButton
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	instanceVariableNames:''
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	classVariableNames:''
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	poolDictionaries:''
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	category:'Views-Interactors'
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
!
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
!ComboBoxButton class methodsFor:'documentation'!
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
1716
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    24
copyright
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    25
"
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    26
 COPYRIGHT (c) 1996 by eXept Software AG / Claus Gittinger
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    27
              All Rights Reserved
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    28
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    29
 This software is furnished under a license and may be used
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    30
 only in accordance with the terms of that license and with the
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    32
 be provided or otherwise made available to, or used by, any
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    33
 other person.  No title to or ownership of the software is
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    34
 hereby transferred.
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    35
"
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    36
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    37
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    38
!
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    39
512
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
documentation
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
"
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
    for ST-80 compatibility, a place to add mimicri protocol.
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
"
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
! !
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
!ComboBoxButton methodsFor:'accessing'!
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
lastSelection:selectionIndex
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
    "ignored for now"
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    50
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
    "Modified: 30.8.1997 / 02:45:43 / cg"
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
! !
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
1292
12d0a583010d dont catch the focus with button press.
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
    54
!ComboBoxButton methodsFor:'focus control'!
12d0a583010d dont catch the focus with button press.
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
    55
12d0a583010d dont catch the focus with button press.
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
    56
wantsFocusWithButtonPress
12d0a583010d dont catch the focus with button press.
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
    57
    "no, do not catch the keyboard focus on button click"
12d0a583010d dont catch the focus with button press.
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
    58
12d0a583010d dont catch the focus with button press.
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
    59
    ^ false
12d0a583010d dont catch the focus with button press.
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
    60
12d0a583010d dont catch the focus with button press.
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
    61
! !
12d0a583010d dont catch the focus with button press.
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
    62
512
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
!ComboBoxButton class methodsFor:'documentation'!
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
version
1716
0e31e721d4ab copyrights
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
    66
    ^ '$Header: /cvs/stx/stx/libwidg2/ComboBoxButton.st,v 1.4 2000-02-18 14:31:26 cg Exp $'
512
97beb6e8acbe ST-80 compatible ComboBoxButton
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
! !