SelectionBrowser.st
author tz
Mon, 30 Mar 1998 14:47:36 +0200
changeset 755 cfbbec0a33c6
parent 647 4a16c0a3be56
child 772 6cf444ab3cf5
permissions -rw-r--r--
some cleans for grid, etc.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
402
246e36541b1b intitial checkin
tz
parents:
diff changeset
     1
"
504
1ff52096d1d3 copyright changed
tz
parents: 402
diff changeset
     2
 COPYRIGHT (c) 1997 by eXept Software AG
402
246e36541b1b intitial checkin
tz
parents:
diff changeset
     3
              All Rights Reserved
246e36541b1b intitial checkin
tz
parents:
diff changeset
     4
246e36541b1b intitial checkin
tz
parents:
diff changeset
     5
 This software is furnished under a license and may be used
246e36541b1b intitial checkin
tz
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
246e36541b1b intitial checkin
tz
parents:
diff changeset
     7
 inclusion of the above copyright notice. This software may not
246e36541b1b intitial checkin
tz
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
246e36541b1b intitial checkin
tz
parents:
diff changeset
     9
 other person. No title to or ownership of the software is
246e36541b1b intitial checkin
tz
parents:
diff changeset
    10
 hereby transferred.
246e36541b1b intitial checkin
tz
parents:
diff changeset
    11
"
246e36541b1b intitial checkin
tz
parents:
diff changeset
    12
246e36541b1b intitial checkin
tz
parents:
diff changeset
    13
246e36541b1b intitial checkin
tz
parents:
diff changeset
    14
246e36541b1b intitial checkin
tz
parents:
diff changeset
    15
SimpleDialog subclass:#SelectionBrowser
246e36541b1b intitial checkin
tz
parents:
diff changeset
    16
	instanceVariableNames:'title'
246e36541b1b intitial checkin
tz
parents:
diff changeset
    17
	classVariableNames:''
246e36541b1b intitial checkin
tz
parents:
diff changeset
    18
	poolDictionaries:''
619
36c9d07f7dc3 class category changed
tz
parents: 504
diff changeset
    19
	category:'Interface-Dialogs'
402
246e36541b1b intitial checkin
tz
parents:
diff changeset
    20
!
246e36541b1b intitial checkin
tz
parents:
diff changeset
    21
246e36541b1b intitial checkin
tz
parents:
diff changeset
    22
SelectionBrowser class instanceVariableNames:'lastSelection'
246e36541b1b intitial checkin
tz
parents:
diff changeset
    23
246e36541b1b intitial checkin
tz
parents:
diff changeset
    24
"
246e36541b1b intitial checkin
tz
parents:
diff changeset
    25
 The following class instance variables are inherited by this class:
246e36541b1b intitial checkin
tz
parents:
diff changeset
    26
246e36541b1b intitial checkin
tz
parents:
diff changeset
    27
	SimpleDialog - 
246e36541b1b intitial checkin
tz
parents:
diff changeset
    28
	ApplicationModel - ClassResources
246e36541b1b intitial checkin
tz
parents:
diff changeset
    29
	Model - 
246e36541b1b intitial checkin
tz
parents:
diff changeset
    30
	Object - 
246e36541b1b intitial checkin
tz
parents:
diff changeset
    31
"
246e36541b1b intitial checkin
tz
parents:
diff changeset
    32
!
246e36541b1b intitial checkin
tz
parents:
diff changeset
    33
246e36541b1b intitial checkin
tz
parents:
diff changeset
    34
!SelectionBrowser class methodsFor:'documentation'!
246e36541b1b intitial checkin
tz
parents:
diff changeset
    35
246e36541b1b intitial checkin
tz
parents:
diff changeset
    36
copyright
246e36541b1b intitial checkin
tz
parents:
diff changeset
    37
"
504
1ff52096d1d3 copyright changed
tz
parents: 402
diff changeset
    38
 COPYRIGHT (c) 1997 by eXept Software AG
402
246e36541b1b intitial checkin
tz
parents:
diff changeset
    39
              All Rights Reserved
246e36541b1b intitial checkin
tz
parents:
diff changeset
    40
246e36541b1b intitial checkin
tz
parents:
diff changeset
    41
 This software is furnished under a license and may be used
246e36541b1b intitial checkin
tz
parents:
diff changeset
    42
 only in accordance with the terms of that license and with the
246e36541b1b intitial checkin
tz
parents:
diff changeset
    43
 inclusion of the above copyright notice. This software may not
246e36541b1b intitial checkin
tz
parents:
diff changeset
    44
 be provided or otherwise made available to, or used by, any
246e36541b1b intitial checkin
tz
parents:
diff changeset
    45
 other person. No title to or ownership of the software is
246e36541b1b intitial checkin
tz
parents:
diff changeset
    46
 hereby transferred.
246e36541b1b intitial checkin
tz
parents:
diff changeset
    47
"
246e36541b1b intitial checkin
tz
parents:
diff changeset
    48
246e36541b1b intitial checkin
tz
parents:
diff changeset
    49
246e36541b1b intitial checkin
tz
parents:
diff changeset
    50
!
246e36541b1b intitial checkin
tz
parents:
diff changeset
    51
246e36541b1b intitial checkin
tz
parents:
diff changeset
    52
documentation
246e36541b1b intitial checkin
tz
parents:
diff changeset
    53
"
246e36541b1b intitial checkin
tz
parents:
diff changeset
    54
    documentation to be added.
504
1ff52096d1d3 copyright changed
tz
parents: 402
diff changeset
    55
1ff52096d1d3 copyright changed
tz
parents: 402
diff changeset
    56
    [author:]
1ff52096d1d3 copyright changed
tz
parents: 402
diff changeset
    57
       Thomas Zwick
402
246e36541b1b intitial checkin
tz
parents:
diff changeset
    58
"
246e36541b1b intitial checkin
tz
parents:
diff changeset
    59
! !
246e36541b1b intitial checkin
tz
parents:
diff changeset
    60
246e36541b1b intitial checkin
tz
parents:
diff changeset
    61
!SelectionBrowser class methodsFor:'accessing'!
246e36541b1b intitial checkin
tz
parents:
diff changeset
    62
246e36541b1b intitial checkin
tz
parents:
diff changeset
    63
lastSelection
246e36541b1b intitial checkin
tz
parents:
diff changeset
    64
246e36541b1b intitial checkin
tz
parents:
diff changeset
    65
    ^lastSelection
246e36541b1b intitial checkin
tz
parents:
diff changeset
    66
!
246e36541b1b intitial checkin
tz
parents:
diff changeset
    67
246e36541b1b intitial checkin
tz
parents:
diff changeset
    68
lastSelection: aString
246e36541b1b intitial checkin
tz
parents:
diff changeset
    69
246e36541b1b intitial checkin
tz
parents:
diff changeset
    70
    lastSelection := aString
246e36541b1b intitial checkin
tz
parents:
diff changeset
    71
! !
246e36541b1b intitial checkin
tz
parents:
diff changeset
    72
246e36541b1b intitial checkin
tz
parents:
diff changeset
    73
!SelectionBrowser methodsFor:'accessing'!
246e36541b1b intitial checkin
tz
parents:
diff changeset
    74
246e36541b1b intitial checkin
tz
parents:
diff changeset
    75
title: aString
246e36541b1b intitial checkin
tz
parents:
diff changeset
    76
246e36541b1b intitial checkin
tz
parents:
diff changeset
    77
    title := aString
246e36541b1b intitial checkin
tz
parents:
diff changeset
    78
246e36541b1b intitial checkin
tz
parents:
diff changeset
    79
! !
246e36541b1b intitial checkin
tz
parents:
diff changeset
    80
647
4a16c0a3be56 checkin from browser
tz
parents: 631
diff changeset
    81
!SelectionBrowser methodsFor:'startup / release'!
402
246e36541b1b intitial checkin
tz
parents:
diff changeset
    82
246e36541b1b intitial checkin
tz
parents:
diff changeset
    83
postBuildWith:aBuilder
246e36541b1b intitial checkin
tz
parents:
diff changeset
    84
631
52824496093d *** empty log message ***
tz
parents: 619
diff changeset
    85
    builder window label: title ? builder window label.
402
246e36541b1b intitial checkin
tz
parents:
diff changeset
    86
246e36541b1b intitial checkin
tz
parents:
diff changeset
    87
    ^super postBuildWith:aBuilder
246e36541b1b intitial checkin
tz
parents:
diff changeset
    88
246e36541b1b intitial checkin
tz
parents:
diff changeset
    89
! !
246e36541b1b intitial checkin
tz
parents:
diff changeset
    90
246e36541b1b intitial checkin
tz
parents:
diff changeset
    91
!SelectionBrowser class methodsFor:'documentation'!
246e36541b1b intitial checkin
tz
parents:
diff changeset
    92
246e36541b1b intitial checkin
tz
parents:
diff changeset
    93
version
246e36541b1b intitial checkin
tz
parents:
diff changeset
    94
    ^ '$Header$'
246e36541b1b intitial checkin
tz
parents:
diff changeset
    95
! !