mattercontrol/MatterControlLib/CustomWidgets/SolidSlider.cs
2021-02-25 23:06:42 -08:00

400 lines
No EOL
9.9 KiB
C#

/*
Copyright (c) 2014, Kevin Pope
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
The views and conclusions contained in the software and documentation are those
of the authors and should not be interpreted as representing official policies,
either expressed or implied, of the FreeBSD Project.
*/
using System;
using MatterHackers.Agg;
using MatterHackers.Agg.Font;
using MatterHackers.Agg.UI;
using MatterHackers.Agg.VertexSource;
using MatterHackers.VectorMath;
namespace MatterHackers.MatterControl
{
public class SolidSlideView
{
private SolidSlider sliderAttachedTo;
public Color FillColor { get; set; }
public Color TrackColor { get; set; }
public double TrackHeight { get; set; }
public TickPlacement TextPlacement { get; set; }
public Color TextColor { get; set; }
public StyledTypeFace TextStyle { get; set; }
public Color ThumbColor { get; set; }
public TickPlacement TickPlacement { get; set; }
public Color TickColor { get; set; }
public SolidSlideView(SolidSlider sliderWidget, ThemeConfig theme)
{
sliderAttachedTo = sliderWidget;
TrackHeight = 10;
TextColor = Color.Black;
TrackColor = new Color(220, 220, 220);
ThumbColor = theme.PrimaryAccentColor;
}
private RectangleDouble GetTrackBounds()
{
RectangleDouble trackBounds;
var sliderBounds = sliderAttachedTo.LocalBounds;
if (sliderAttachedTo.Orientation == Orientation.Horizontal)
{
var yCenter = sliderBounds.YCenter;
trackBounds = new RectangleDouble(sliderBounds.Left, (int)(yCenter - TrackHeight / 2 + .5), sliderBounds.Right, (int)(yCenter + TrackHeight / 2 + .5));
}
else
{
var xCenter = sliderBounds.XCenter;
trackBounds = new RectangleDouble((int)(xCenter - TrackHeight / 2 + .5), sliderBounds.Bottom, (int)(xCenter + TrackHeight / 2 + .5), sliderBounds.Top);
}
return trackBounds;
}
private RectangleDouble GetThumbBounds()
{
return sliderAttachedTo.GetThumbHitBounds();
}
public RectangleDouble GetTotalBounds()
{
RectangleDouble totalBounds = GetTrackBounds();
totalBounds.ExpandToInclude(GetThumbBounds());
return totalBounds;
}
public double TrackRadius { get; set; } = 0;
public void DrawTrackAndThumb(Graphics2D graphics2D)
{
var track = new RoundedRect(GetTrackBounds(), this.TrackRadius);
// draw the track
graphics2D.Render(track, TrackColor);
// now do the thumb
RectangleDouble thumbBounds = sliderAttachedTo.GetThumbHitBounds();
var thumbOutside = new RoundedRect(thumbBounds, 2 * GuiWidget.DeviceScale);
graphics2D.Render(thumbOutside, this.ThumbColor); // ColorF.GetTweenColor(ThumbColor.ToColorF(), ColorF.Black.ToColorF(), .2).ToColor());
}
}
public class SolidSlider : GuiWidget
{
public event EventHandler ValueChanged;
public event EventHandler SliderReleased;
public SolidSlideView View { get; set; }
private double mouseDownOffsetFromThumbCenter;
private bool downOnThumb = false;
private double position0To1;
private double thumbHeight;
private int numTicks = 0;
public double Position0To1
{
get
{
return position0To1;
}
set
{
position0To1 = Math.Max(0, Math.Min(value, 1));
}
}
public double Value
{
get
{
return Minimum + (Maximum - Minimum) * Position0To1;
}
set
{
double newPosition0To1 = Minimum;
if (Maximum - Minimum != 0)
{
newPosition0To1 = Math.Max(0, Math.Min((value - Minimum) / (Maximum - Minimum), 1));
}
if (newPosition0To1 != Position0To1)
{
Position0To1 = newPosition0To1;
ValueChanged?.Invoke(this, null);
Invalidate();
}
}
}
public double PositionPixelsFromFirstValue
{
get
{
return ThumbWidth / 2 + TrackWidth * Position0To1;
}
set
{
Position0To1 = (value - ThumbWidth / 2) / TrackWidth;
}
}
public Orientation Orientation { get; set; }
public double ThumbWidth { get; set; }
public double ThumbHeight
{
get
{
return Math.Max(thumbHeight, ThumbWidth);
}
set
{
thumbHeight = value;
}
}
public double TotalWidthInPixels { get; set; }
public double TrackWidth
{
get
{
return TotalWidthInPixels - ThumbWidth;
}
}
/// <summary>
/// There will always be 0 or at least two ticks, one at the start and one at the end.
/// </summary>
public int NumTicks
{
get
{
return numTicks;
}
set
{
numTicks = value;
if (numTicks == 1)
{
numTicks = 2;
}
}
}
public bool SnapToTicks { get; set; }
public double Minimum { get; set; }
public double Maximum { get; set; }
public bool SmallChange { get; set; }
public bool LargeChange { get; set; }
public SolidSlider(Vector2 positionOfTrackFirstValue, double thumbWidth, ThemeConfig theme, double minimum = 0, double maximum = 1, Orientation orientation = Orientation.Horizontal)
{
View = new SolidSlideView(this, theme);
View.TrackHeight = thumbWidth;
OriginRelativeParent = positionOfTrackFirstValue;
Orientation = orientation;
Minimum = minimum;
Maximum = maximum;
ThumbWidth = thumbWidth;
ThumbHeight = thumbWidth * 1.4;
//VAnchor = VAnchor.Stretch;
//HAnchor = HAnchor.Stretch;
MinimumSize = new Vector2(ThumbHeight, ThumbHeight);
}
public override RectangleDouble LocalBounds
{
get
{
return base.LocalBounds;
}
set
{
if (HAnchor == HAnchor.Stretch)
{
TotalWidthInPixels = value.Right - value.Left;
}
base.LocalBounds = value;
}
}
public void SetRange(double minimum, double maximum)
{
Minimum = minimum;
Maximum = maximum;
}
public override void OnDraw(Graphics2D graphics2D)
{
View.DrawTrackAndThumb(graphics2D);
base.OnDraw(graphics2D);
}
public RectangleDouble GetThumbHitBounds()
{
if (Orientation == Orientation.Horizontal)
{
return new RectangleDouble(LocalBounds.Left - ThumbWidth / 2 + PositionPixelsFromFirstValue,
(int)(LocalBounds.YCenter - ThumbHeight / 2 + .5),
LocalBounds.Left + ThumbWidth / 2 + PositionPixelsFromFirstValue,
(int)(LocalBounds.YCenter + ThumbHeight / 2 + .5));
}
else
{
return new RectangleDouble((int)(LocalBounds.XCenter - ThumbHeight / 2 + .5),
LocalBounds.Bottom - ThumbWidth / 2 + PositionPixelsFromFirstValue,
(int)(LocalBounds.XCenter + ThumbHeight / 2 + .5),
LocalBounds.Bottom + ThumbWidth / 2 + PositionPixelsFromFirstValue);
}
}
public double GetPosition0To1FromValue(double value)
{
return (value - Minimum) / (Maximum - Minimum);
}
public double GetPositionPixelsFromValue(double value)
{
return ThumbWidth / 2 + TrackWidth * GetPosition0To1FromValue(value);
}
public RectangleDouble GetTrackHitBounds()
{
if (Orientation == Orientation.Horizontal)
{
return new RectangleDouble(0, -ThumbHeight / 2,
TotalWidthInPixels, ThumbHeight / 2);
}
else
{
return new RectangleDouble(-ThumbHeight / 2, 0, ThumbHeight / 2, TotalWidthInPixels);
}
}
private double valueOnMouseDown;
public override void OnMouseDown(MouseEventArgs mouseEvent)
{
valueOnMouseDown = Value;
double oldValue = Value;
Vector2 mousePos = mouseEvent.Position;
RectangleDouble thumbBounds = GetThumbHitBounds();
if (thumbBounds.Contains(mousePos))
{
if (Orientation == Orientation.Horizontal)
{
mouseDownOffsetFromThumbCenter = mousePos.X - PositionPixelsFromFirstValue;
}
else
{
mouseDownOffsetFromThumbCenter = mousePos.Y - PositionPixelsFromFirstValue;
}
downOnThumb = true;
}
else // let's check if we are on the track
{
RectangleDouble trackHitBounds = GetTrackHitBounds();
if (trackHitBounds.Contains(mousePos))
{
if (Orientation == Orientation.Horizontal)
{
PositionPixelsFromFirstValue = mousePos.X;
}
else
{
PositionPixelsFromFirstValue = mousePos.Y;
}
}
}
if (oldValue != Value)
{
ValueChanged?.Invoke(this, mouseEvent);
Invalidate();
}
base.OnMouseDown(mouseEvent);
}
public override void OnMouseMove(MouseEventArgs mouseEvent)
{
Vector2 mousePos = mouseEvent.Position;
if (downOnThumb)
{
double oldValue = Value;
if (Orientation == Orientation.Horizontal)
{
PositionPixelsFromFirstValue = mousePos.X - mouseDownOffsetFromThumbCenter;
}
else
{
PositionPixelsFromFirstValue = mousePos.Y - mouseDownOffsetFromThumbCenter;
}
if (oldValue != Value)
{
ValueChanged?.Invoke(this, mouseEvent);
Invalidate();
}
}
base.OnMouseMove(mouseEvent);
}
public override void OnMouseUp(MouseEventArgs mouseEvent)
{
downOnThumb = false;
base.OnMouseUp(mouseEvent);
if (valueOnMouseDown != Value)
{
SliderReleased?.Invoke(this, mouseEvent);
}
}
}
}