ConvertedValue.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 19 Feb 2016 09:35:22 +0000
branchjv
changeset 3567 278c744dff7b
parent 2222 e376d56f37a5
child 3855 1db7742d33ad
permissions -rw-r--r--
Use standard configure & make to build libjpeg-9 under Windows/MinGW There's no mingwmake.bat in libjpeg-9 (as of today, eXept seem not to bother with MinGW builds). Besides, this is cleaner solution.

"{ Package: 'stx:libview2' }"

ValueHolder subclass:#ConvertedValue
	instanceVariableNames:'conversion'
	classVariableNames:''
	poolDictionaries:''
	category:'Interface-Support-Models'
!

!ConvertedValue class methodsFor:'documentation'!

documentation
"
    a ConvertedValue translates changes on input via a conversion block
    to the output. For example, if you want to have a toggle to change the
    color inputs of some other labels, use a convertedValue which translates
    true/false into colors:

	|toggle label converter|

	converter := ConvertedValue new
			conversion:[:input | input == true
						ifTrue:[Color red]
						ifFalse:[Color blue]];
			value:false.


	toggle := Toggle label:'change color'.
	toggle controller pressChannel:converter.

	label := Label label:'see me changing'.
	label foregroundChannel:converter.

	toggle open.
	label open.
"
!

examples
"
    examples to be added.
"
! !

!ConvertedValue methodsFor:'accessing'!

conversion:aBlock
    conversion := aBlock
!

initialValue:someValue
    self value:someValue
!

value:input
    ^ super value:(conversion value:input)
! !

!ConvertedValue class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libview2/ConvertedValue.st,v 1.5 2006-09-15 18:02:35 cg Exp $'
! !