HierarchicalItemWithLabelAndIcon.st
author Claus Gittinger <cg@exept.de>
Tue, 02 Nov 2010 22:00:38 +0100
changeset 3961 6cd0b3929aa2
parent 2943 8f42783f6e38
child 4694 7f830911e3aa
permissions -rw-r--r--
added: #preselectAllWhenOpeningEditor:

"
 COPYRIGHT (c) 2006 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"

"{ Package: 'stx:libwidg2' }"

HierarchicalItemWithLabel subclass:#HierarchicalItemWithLabelAndIcon
	instanceVariableNames:'icon'
	classVariableNames:''
	poolDictionaries:''
	category:'Views-Support'
!

!HierarchicalItemWithLabelAndIcon class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2006 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
! !

!HierarchicalItemWithLabelAndIcon methodsFor:'accessing'!

icon
    "returns the icon"

    ^ icon
!

icon:something
    "set the value of the instance variable 'icon' (automatically generated)"

    icon := something.
!

label:aLabel icon:anIcon
    label := aLabel.
    icon  := anIcon.
!

labeled:aLabel icon:anIcon
    label := aLabel.
    icon  := anIcon.


! !

!HierarchicalItemWithLabelAndIcon class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libwidg2/HierarchicalItemWithLabelAndIcon.st,v 1.1 2006-03-14 13:08:56 cg Exp $'
! !