ShareX/ShareX.ScreenCaptureLib/Shapes/Drawing/LineDrawingShape.cs
2016-08-05 16:35:44 +03:00

111 lines
3.5 KiB
C#

#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
Copyright (c) 2007-2016 ShareX Team
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Optionally you can also view the license at <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
using ShareX.HelpersLib;
using System.Drawing;
using System.Drawing.Drawing2D;
namespace ShareX.ScreenCaptureLib
{
public class LineDrawingShape : BaseDrawingShape
{
public override ShapeType ShapeType { get; } = ShapeType.DrawingLine;
public override NodeType NodeType { get; } = NodeType.Line;
public override bool IsValidShape
{
get
{
return MathHelpers.Distance(StartPosition, EndPosition) > MinimumSize;
}
}
public override void OnDraw(Graphics g)
{
if (BorderSize > 0 && BorderColor.A > 0)
{
g.SmoothingMode = SmoothingMode.HighQuality;
using (Pen pen = new Pen(BorderColor, BorderSize))
{
DrawLine(g, pen);
}
g.SmoothingMode = SmoothingMode.None;
}
}
protected virtual void DrawLine(Graphics g, Pen pen)
{
g.DrawLine(pen, StartPosition, EndPosition);
}
public override void Move(int x, int y)
{
StartPosition = StartPosition.Add(x, y);
EndPosition = EndPosition.Add(x, y);
}
public override void Resize(int x, int y, bool fromBottomRight)
{
if (fromBottomRight)
{
StartPosition = StartPosition.Add(x, y);
}
else
{
EndPosition = EndPosition.Add(x, y);
}
}
public override void OnNodeVisible()
{
Manager.Nodes[(int)NodePosition.TopLeft].Shape = Manager.Nodes[(int)NodePosition.BottomRight].Shape = NodeShape.Circle;
Manager.Nodes[(int)NodePosition.TopLeft].Visible = Manager.Nodes[(int)NodePosition.BottomRight].Visible = true;
}
public override void OnNodeUpdate()
{
if (Manager.Nodes[(int)NodePosition.TopLeft].IsDragging)
{
Manager.IsResizing = true;
StartPosition = InputManager.MousePosition0Based;
}
else if (Manager.Nodes[(int)NodePosition.BottomRight].IsDragging)
{
Manager.IsResizing = true;
EndPosition = InputManager.MousePosition0Based;
}
}
public override void OnNodePositionUpdate()
{
Manager.Nodes[(int)NodePosition.TopLeft].Position = StartPosition;
Manager.Nodes[(int)NodePosition.BottomRight].Position = EndPosition;
}
}
}