Inheritance: System.Windows.Forms.Panel
Example #1
0
        private void gradientFloatTrackbarControlb_ValueChanged(FloatTrackbarControl _Sender, float _fFormerValue)
        {
            float3 Lab = AdobeColors.RGB2Lab_D65((float3)m_RGB);

            Lab.z = _Sender.Value;
            RGB   = AdobeColors.HSB2RGB(Lab);
        }
Example #2
0
        private void floatTrackbarControlLuminance_ValueChanged(FloatTrackbarControl _Sender, float _fFormerValue)
        {
            float3 HSL = AdobeColors.RGB2HSB((float3)m_RGB);

            HSL.z = _Sender.Value;
            RGB   = AdobeColors.HSB2RGB(HSL);
        }
Example #3
0
 private void floatTrackbarControlThetaMax_ValueChanged(Nuaj.Cirrus.Utility.FloatTrackbarControl _Sender, float _fFormerValue)
 {
     if (radioButtonCoeffs.Checked)
     {
         UpdateGraph();
     }
 }
Example #4
0
 void ReadValue( XmlElement _parent, string _key, FloatTrackbarControl _trackbar )
 {
     XmlElement	Child = _parent[_key];
     float		value = float.Parse( Child.GetAttribute( "Value" ) );
     _trackbar.Value = value;
 }
Example #5
0
 private void floatTrackbarControlTest_ValueChanged( FloatTrackbarControl _Sender, float _fFormerValue )
 {
     outputPanelFilmic_Insomniac.ToeStrength = ComputeToeStrength();
 }
Example #6
0
 private void floatTrackbarControlIG_WhitePoint_ValueChanged( FloatTrackbarControl _Sender, float _fFormerValue )
 {
     outputPanelFilmic_Insomniac.WhitePoint = _Sender.Value;
 }
Example #7
0
 private void floatTrackbarControlIG_ShoulderStrength_ValueChanged( FloatTrackbarControl _Sender, float _fFormerValue )
 {
     outputPanelFilmic_Insomniac.ShoulderStrength = ComputeShoulderStrength();
 }
Example #8
0
 private void floatTrackbarControlDebugLuminanceLevel_ValueChanged( FloatTrackbarControl _Sender, float _fFormerValue )
 {
     panelGraph_Hable.DebugLuminance = _Sender.Value;
 }
Example #9
0
 void AppendValue( XmlElement _parent, string _key, FloatTrackbarControl _trackbar )
 {
     XmlElement	Child = _parent.OwnerDocument.CreateElement( _key );
     _parent.AppendChild( Child );
     Child.SetAttribute( "Value", _trackbar.Value.ToString() );
 }
Example #10
0
 private void floatTrackbarControlF_ValueChanged(Nuaj.Cirrus.Utility.FloatTrackbarControl _Sender, float _fFormerValue)
 {
     panelGraph_Hable.F = _Sender.Value;
 }
Example #11
0
 private void floatTrackbarControlScaleY_ValueChanged(Nuaj.Cirrus.Utility.FloatTrackbarControl _Sender, float _fFormerValue)
 {
     panelGraph_Hable.ScaleY            = _Sender.Value;
     outputPanelFilmic_Insomniac.ScaleY = _Sender.Value;
 }
Example #12
0
 private void floatTrackbarControlColorTemperature_ValueChanged(FloatTrackbarControl _Sender, float _fFormerValue)
 {
 }
Example #13
0
 private void floatTrackbarControlAlpha_ValueChanged(FloatTrackbarControl _Sender, float _fFormerValue)
 {
     m_RGB.w  = _Sender.Value;
     ColorHDR = m_RGB;
 }
Example #14
0
        private void floatTrackbarControlBeckmannRoughness_ValueChanged( FloatTrackbarControl _Sender, float _fFormerValue )
        {
            if ( m_internalChange )
                return;

            try {
                m_pauseRendering = true;
                BuildBeckmannSurfaceTexture( floatTrackbarControlBeckmannRoughness.Value );
            } catch ( Exception ) {
            } finally {
                m_pauseRendering = false;
            }
        }