Overview

Tooltips have been added to most of the photolab post-processing options. Additionally, the help dialog has been updated to reflect some new post-processing options.

Compile Time Changes

cm.std.photo.labBox.cm

Old: final public CheckBox makeToggle(str key, str label, Object value) {}
New: final public CheckBox makeToggle(str key, str label, Object value, str toolTip) {}

Runtime/Behavior Changes

cm.std.photo.labFilters.cm

Some of the props added now support tooltips.

Old: 
    public GProp[] initProps() {
	GProp[] seq();
	DoubleRange span(-1, 1);
	seq << GProp("toneMapping", $toneMappingLabel, Bool(true));
	seq << GProp("toneMapBackground", $toneMapBackgroundLabel, Bool(true));
	seq << GProp("opendenoise", $openDenoiseLabel, Bool(true));
        (...)

New:
    public GProp[] initProps() {
	GProp[] seq();
	DoubleRange span(-1, 1);
	seq << TooltipGProp("toneMapping", $toneMappingLabel, Bool(true), $toneMappingTip);
	seq << TooltipGProp("toneMapBackground", $toneMapBackgroundLabel, Bool(true), null, $toneMapBackgroundTip);
	seq << TooltipGProp("opendenoise", $openDenoiseLabel, Bool(true), $openDenoiseTip);
        (...)