HierarchicalItemWithLabelAndIcon.st
author Claus Gittinger <cg@exept.de>
Tue, 13 Jan 2015 11:31:50 +0100
changeset 4694 7f830911e3aa
parent 2943 8f42783f6e38
child 4945 dde70d8f3913
permissions -rw-r--r--
change messages when icon or label changes

"
 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' }"

"{ NameSpace: Smalltalk }"

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:anIcon
    "set the value of the instance variable 'icon' (automatically generated)"

    icon ~= anIcon ifTrue:[
        icon := anIcon.
        self iconChanged
    ].
!

label:aLabel icon:anIcon
    |anyChange|

    anyChange := false.
    (icon ~= anIcon) ifTrue:[
        icon := anIcon.
        anyChange := true
    ].
    (label ~= anIcon) ifTrue:[
        icon := anIcon.
        anyChange := true
    ].
    anyChange ifTrue:[ self changed ].
!

labeled:aLabel icon:anIcon
    "backward compatibility"

    self label:aLabel icon:anIcon
! !

!HierarchicalItemWithLabelAndIcon class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libwidg2/HierarchicalItemWithLabelAndIcon.st,v 1.2 2015-01-13 10:31:50 cg Exp $'
! !