mirror of
https://github.com/greenshot/greenshot
synced 2025-08-19 13:10:00 -07:00
Fixed most adorner related drawing issues, need to test a few more (freehand)
This commit is contained in:
parent
31db071394
commit
5b2d5b1397
7 changed files with 223 additions and 160 deletions
147
Greenshot/Drawing/Adorners/AbstractAdorner.cs
Normal file
147
Greenshot/Drawing/Adorners/AbstractAdorner.cs
Normal file
|
@ -0,0 +1,147 @@
|
||||||
|
/*
|
||||||
|
* Greenshot - a free and open source screenshot tool
|
||||||
|
* Copyright (C) 2007-2015 Thomas Braun, Jens Klingen, Robin Krom
|
||||||
|
*
|
||||||
|
* For more information see: http://getgreenshot.org/
|
||||||
|
* The Greenshot project is hosted on Sourceforge: http://sourceforge.net/projects/greenshot/
|
||||||
|
*
|
||||||
|
* 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 1 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, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
using Greenshot.Plugin.Drawing;
|
||||||
|
using Greenshot.Plugin.Drawing.Adorners;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Drawing.Drawing2D;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
using System;
|
||||||
|
|
||||||
|
namespace Greenshot.Drawing.Adorners
|
||||||
|
{
|
||||||
|
public class AbstractAdorner : IAdorner
|
||||||
|
{
|
||||||
|
public virtual EditStatus EditStatus { get; protected set; } = EditStatus.IDLE;
|
||||||
|
|
||||||
|
protected Size _size = new Size(4, 4);
|
||||||
|
|
||||||
|
public AbstractAdorner(IDrawableContainer owner)
|
||||||
|
{
|
||||||
|
Owner = owner;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns the cursor for when the mouse is over the adorner
|
||||||
|
/// </summary>
|
||||||
|
public virtual Cursor Cursor
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return Cursors.SizeAll;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public virtual IDrawableContainer Owner
|
||||||
|
{
|
||||||
|
get;
|
||||||
|
set;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Test if the point is inside the adorner
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="point"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public virtual bool HitTest(Point point)
|
||||||
|
{
|
||||||
|
Rectangle hitBounds = Bounds;
|
||||||
|
hitBounds.Inflate(3, 3);
|
||||||
|
return hitBounds.Contains(point);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Handle the mouse down
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="sender"></param>
|
||||||
|
/// <param name="mouseEventArgs"></param>
|
||||||
|
public virtual void MouseDown(object sender, MouseEventArgs mouseEventArgs)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Handle the mouse move
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="sender"></param>
|
||||||
|
/// <param name="mouseEventArgs"></param>
|
||||||
|
public virtual void MouseMove(object sender, MouseEventArgs mouseEventArgs)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Handle the mouse up
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="sender"></param>
|
||||||
|
/// <param name="mouseEventArgs"></param>
|
||||||
|
public virtual void MouseUp(object sender, MouseEventArgs mouseEventArgs)
|
||||||
|
{
|
||||||
|
EditStatus = EditStatus.IDLE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Return the location of the adorner
|
||||||
|
/// </summary>
|
||||||
|
public virtual Point Location
|
||||||
|
{
|
||||||
|
get;
|
||||||
|
set;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Return the bounds of the Adorner
|
||||||
|
/// </summary>
|
||||||
|
public virtual Rectangle Bounds
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
Point location = Location;
|
||||||
|
return new Rectangle(location.X - (_size.Width / 2), location.Y - (_size.Height / 2), _size.Width, _size.Height);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The adorner is active if the edit status is not idle or undrawn
|
||||||
|
/// </summary>
|
||||||
|
public virtual bool IsActive
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return EditStatus != EditStatus.IDLE && EditStatus != EditStatus.UNDRAWN;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Draw the adorner
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="paintEventArgs">PaintEventArgs</param>
|
||||||
|
public virtual void Paint(PaintEventArgs paintEventArgs)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// We ignore the Transform, as the coordinates are directly bound to those of the owner
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="matrix"></param>
|
||||||
|
public virtual void Transform(Matrix matrix)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -20,49 +20,49 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
using Greenshot.Helpers;
|
using Greenshot.Helpers;
|
||||||
using Greenshot.Plugin;
|
|
||||||
using Greenshot.Plugin.Drawing;
|
using Greenshot.Plugin.Drawing;
|
||||||
using Greenshot.Plugin.Drawing.Adorners;
|
using Greenshot.Plugin.Drawing.Adorners;
|
||||||
using System;
|
|
||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
using System.Windows.Forms;
|
|
||||||
using System.Drawing.Drawing2D;
|
using System.Drawing.Drawing2D;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
|
||||||
namespace Greenshot.Drawing.Adorners
|
namespace Greenshot.Drawing.Adorners
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// This is the default "legacy" gripper adorner, not the one used for the tail in the speech-bubble
|
/// This is the default "legacy" gripper adorner, not the one used for the tail in the speech-bubble
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class GripperAdorner : IAdorner
|
public class GripperAdorner : AbstractAdorner
|
||||||
{
|
{
|
||||||
private Rectangle _boundsBeforeResize = Rectangle.Empty;
|
private Rectangle _boundsBeforeResize = Rectangle.Empty;
|
||||||
private RectangleF _boundsAfterResize = RectangleF.Empty;
|
private RectangleF _boundsAfterResize = RectangleF.Empty;
|
||||||
private EditStatus _editStatus;
|
|
||||||
|
|
||||||
public Positions Position { get; private set; }
|
public Positions Position { get; private set; }
|
||||||
|
|
||||||
public GripperAdorner(IDrawableContainer owner, Positions position)
|
public GripperAdorner(IDrawableContainer owner, Positions position) : base(owner)
|
||||||
{
|
{
|
||||||
Owner = owner;
|
|
||||||
Position = position;
|
Position = position;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the cursor for when the mouse is over the adorner
|
/// Returns the cursor for when the mouse is over the adorner
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Cursor Cursor
|
public override Cursor Cursor
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
bool horizontalSwitched = Owner.Width < 0;
|
bool isNotSwitched = Owner.Width >= 0;
|
||||||
|
if (Owner.Height < 0)
|
||||||
|
{
|
||||||
|
isNotSwitched = !isNotSwitched;
|
||||||
|
}
|
||||||
switch (Position)
|
switch (Position)
|
||||||
{
|
{
|
||||||
case Positions.TopLeft:
|
case Positions.TopLeft:
|
||||||
case Positions.BottomRight:
|
case Positions.BottomRight:
|
||||||
return horizontalSwitched ? Cursors.SizeNWSE : Cursors.SizeNESW;
|
return isNotSwitched ? Cursors.SizeNWSE : Cursors.SizeNESW;
|
||||||
case Positions.TopRight:
|
case Positions.TopRight:
|
||||||
case Positions.BottomLeft:
|
case Positions.BottomLeft:
|
||||||
return horizontalSwitched ? Cursors.SizeNESW : Cursors.SizeNWSE;
|
return isNotSwitched ? Cursors.SizeNESW : Cursors.SizeNWSE;
|
||||||
case Positions.MiddleLeft:
|
case Positions.MiddleLeft:
|
||||||
case Positions.MiddleRight:
|
case Positions.MiddleRight:
|
||||||
return Cursors.SizeWE;
|
return Cursors.SizeWE;
|
||||||
|
@ -75,30 +75,14 @@ namespace Greenshot.Drawing.Adorners
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public IDrawableContainer Owner
|
|
||||||
{
|
|
||||||
get;
|
|
||||||
set;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test if the point is inside the adorner
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="point"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public bool HitTest(Point point)
|
|
||||||
{
|
|
||||||
return Bounds.Contains(point);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Handle the mouse down
|
/// Handle the mouse down
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="sender"></param>
|
/// <param name="sender"></param>
|
||||||
/// <param name="mouseEventArgs"></param>
|
/// <param name="mouseEventArgs"></param>
|
||||||
public void MouseDown(object sender, MouseEventArgs mouseEventArgs)
|
public override void MouseDown(object sender, MouseEventArgs mouseEventArgs)
|
||||||
{
|
{
|
||||||
_editStatus = EditStatus.RESIZING;
|
EditStatus = EditStatus.RESIZING;
|
||||||
_boundsBeforeResize = new Rectangle(Owner.Left, Owner.Top, Owner.Width, Owner.Height);
|
_boundsBeforeResize = new Rectangle(Owner.Left, Owner.Top, Owner.Width, Owner.Height);
|
||||||
_boundsAfterResize = _boundsBeforeResize;
|
_boundsAfterResize = _boundsBeforeResize;
|
||||||
}
|
}
|
||||||
|
@ -108,51 +92,39 @@ namespace Greenshot.Drawing.Adorners
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="sender"></param>
|
/// <param name="sender"></param>
|
||||||
/// <param name="mouseEventArgs"></param>
|
/// <param name="mouseEventArgs"></param>
|
||||||
public void MouseMove(object sender, MouseEventArgs mouseEventArgs)
|
public override void MouseMove(object sender, MouseEventArgs mouseEventArgs)
|
||||||
{
|
{
|
||||||
Owner.Invalidate();
|
if (EditStatus != EditStatus.RESIZING)
|
||||||
int absX = Owner.Left + mouseEventArgs.X;
|
|
||||||
int absY = Owner.Top + mouseEventArgs.Y;
|
|
||||||
|
|
||||||
if (_editStatus.Equals(EditStatus.RESIZING))
|
|
||||||
{
|
{
|
||||||
Owner.MakeBoundsChangeUndoable(false);
|
return;
|
||||||
|
|
||||||
//SuspendLayout();
|
|
||||||
|
|
||||||
// reset "workbench" rectangle to current bounds
|
|
||||||
_boundsAfterResize.X = _boundsBeforeResize.X;
|
|
||||||
_boundsAfterResize.Y = _boundsBeforeResize.Y;
|
|
||||||
_boundsAfterResize.Width = _boundsBeforeResize.Width;
|
|
||||||
_boundsAfterResize.Height = _boundsBeforeResize.Height;
|
|
||||||
|
|
||||||
// calculate scaled rectangle
|
|
||||||
ScaleHelper.Scale(ref _boundsAfterResize, Position, new PointF(absX, absY), ScaleHelper.GetScaleOptions());
|
|
||||||
|
|
||||||
// apply scaled bounds to this DrawableContainer
|
|
||||||
Owner.ApplyBounds(_boundsAfterResize);
|
|
||||||
|
|
||||||
//ResumeLayout();
|
|
||||||
Owner.DoLayout();
|
|
||||||
}
|
}
|
||||||
Owner.Invalidate();
|
Owner.Invalidate();
|
||||||
}
|
Owner.MakeBoundsChangeUndoable(false);
|
||||||
|
|
||||||
|
//SuspendLayout();
|
||||||
|
|
||||||
|
// reset "workbench" rectangle to current bounds
|
||||||
|
_boundsAfterResize.X = _boundsBeforeResize.X;
|
||||||
|
_boundsAfterResize.Y = _boundsBeforeResize.Y;
|
||||||
|
_boundsAfterResize.Width = _boundsBeforeResize.Width;
|
||||||
|
_boundsAfterResize.Height = _boundsBeforeResize.Height;
|
||||||
|
|
||||||
|
// calculate scaled rectangle
|
||||||
|
ScaleHelper.Scale(ref _boundsAfterResize, Position, new PointF(mouseEventArgs.X, mouseEventArgs.Y), ScaleHelper.GetScaleOptions());
|
||||||
|
|
||||||
|
// apply scaled bounds to this DrawableContainer
|
||||||
|
Owner.ApplyBounds(_boundsAfterResize);
|
||||||
|
|
||||||
|
//ResumeLayout();
|
||||||
|
Owner.DoLayout();
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Handle the mouse up
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="sender"></param>
|
|
||||||
/// <param name="mouseEventArgs"></param>
|
|
||||||
public void MouseUp(object sender, MouseEventArgs mouseEventArgs)
|
|
||||||
{
|
|
||||||
_editStatus = EditStatus.IDLE;
|
|
||||||
Owner.Invalidate();
|
Owner.Invalidate();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Return the location of the adorner
|
/// Return the location of the adorner
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Point Location {
|
public override Point Location {
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
int x = 0,y = 0;
|
int x = 0,y = 0;
|
||||||
|
@ -195,38 +167,26 @@ namespace Greenshot.Drawing.Adorners
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Return the bounds of the Adorner
|
|
||||||
/// </summary>
|
|
||||||
public Rectangle Bounds
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
Point location = Location;
|
|
||||||
Size size = new Size(10, 10);
|
|
||||||
return new Rectangle(location.X - (size.Width / 2), location.Y - (size.Height / 2), size.Width, size.Height);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Draw the adorner
|
/// Draw the adorner
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="paintEventArgs">PaintEventArgs</param>
|
/// <param name="paintEventArgs">PaintEventArgs</param>
|
||||||
public void Paint(PaintEventArgs paintEventArgs)
|
public override void Paint(PaintEventArgs paintEventArgs)
|
||||||
{
|
{
|
||||||
Graphics targetGraphics = paintEventArgs.Graphics;
|
Graphics targetGraphics = paintEventArgs.Graphics;
|
||||||
Rectangle clipRectangle = paintEventArgs.ClipRectangle;
|
Rectangle clipRectangle = paintEventArgs.ClipRectangle;
|
||||||
|
|
||||||
var bounds = Bounds;
|
var bounds = Bounds;
|
||||||
targetGraphics.DrawRectangle(Pens.Black, bounds.X, bounds.Y, bounds.Width , bounds.Height);
|
GraphicsState state = targetGraphics.Save();
|
||||||
}
|
|
||||||
|
targetGraphics.SmoothingMode = SmoothingMode.None;
|
||||||
|
targetGraphics.CompositingMode = CompositingMode.SourceCopy;
|
||||||
|
targetGraphics.PixelOffsetMode = PixelOffsetMode.Half;
|
||||||
|
targetGraphics.InterpolationMode = InterpolationMode.NearestNeighbor;
|
||||||
|
|
||||||
|
targetGraphics.FillRectangle(Brushes.Black, bounds.X, bounds.Y, bounds.Width , bounds.Height);
|
||||||
|
targetGraphics.Restore(state);
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// We ignore the Transform, as the coordinates are directly bound to those of the owner
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="matrix"></param>
|
|
||||||
public void Transform(Matrix matrix)
|
|
||||||
{
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,51 +30,22 @@ namespace Greenshot.Drawing.Adorners
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// This implements the special "gripper" for the Speech-Bubble tail
|
/// This implements the special "gripper" for the Speech-Bubble tail
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class TargetAdorner : IAdorner
|
public class TargetAdorner : AbstractAdorner
|
||||||
{
|
{
|
||||||
private EditStatus _editStatus;
|
|
||||||
|
|
||||||
public TargetAdorner(IDrawableContainer owner, Point location)
|
public TargetAdorner(IDrawableContainer owner, Point location) : base(owner)
|
||||||
{
|
{
|
||||||
Owner = owner;
|
|
||||||
Location = location;
|
Location = location;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Returns the cursor for when the mouse is over the adorner
|
|
||||||
/// </summary>
|
|
||||||
public Cursor Cursor
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
return Cursors.SizeAll;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public IDrawableContainer Owner
|
|
||||||
{
|
|
||||||
get;
|
|
||||||
set;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test if the point is inside the adorner
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="point"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public bool HitTest(Point point)
|
|
||||||
{
|
|
||||||
return Bounds.Contains(point);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Handle the mouse down
|
/// Handle the mouse down
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="sender"></param>
|
/// <param name="sender"></param>
|
||||||
/// <param name="mouseEventArgs"></param>
|
/// <param name="mouseEventArgs"></param>
|
||||||
public void MouseDown(object sender, MouseEventArgs mouseEventArgs)
|
public override void MouseDown(object sender, MouseEventArgs mouseEventArgs)
|
||||||
{
|
{
|
||||||
_editStatus = EditStatus.MOVING;
|
EditStatus = EditStatus.MOVING;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -82,8 +53,13 @@ namespace Greenshot.Drawing.Adorners
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="sender"></param>
|
/// <param name="sender"></param>
|
||||||
/// <param name="mouseEventArgs"></param>
|
/// <param name="mouseEventArgs"></param>
|
||||||
public void MouseMove(object sender, MouseEventArgs mouseEventArgs)
|
public override void MouseMove(object sender, MouseEventArgs mouseEventArgs)
|
||||||
{
|
{
|
||||||
|
if (EditStatus != EditStatus.MOVING)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
Owner.Invalidate();
|
Owner.Invalidate();
|
||||||
Point newGripperLocation = new Point(mouseEventArgs.X, mouseEventArgs.Y);
|
Point newGripperLocation = new Point(mouseEventArgs.X, mouseEventArgs.Y);
|
||||||
Rectangle surfaceBounds = new Rectangle(0, 0, Owner.Parent.Width, Owner.Parent.Height);
|
Rectangle surfaceBounds = new Rectangle(0, 0, Owner.Parent.Width, Owner.Parent.Height);
|
||||||
|
@ -113,57 +89,24 @@ namespace Greenshot.Drawing.Adorners
|
||||||
Owner.Invalidate();
|
Owner.Invalidate();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Handle the mouse up
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="sender"></param>
|
|
||||||
/// <param name="mouseEventArgs"></param>
|
|
||||||
public void MouseUp(object sender, MouseEventArgs mouseEventArgs)
|
|
||||||
{
|
|
||||||
_editStatus = EditStatus.IDLE;
|
|
||||||
Owner.Invalidate();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Return the location of the adorner
|
|
||||||
/// </summary>
|
|
||||||
public Point Location
|
|
||||||
{
|
|
||||||
get;
|
|
||||||
set;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Return the bounds of the Adorner
|
|
||||||
/// </summary>
|
|
||||||
public Rectangle Bounds
|
|
||||||
{
|
|
||||||
get
|
|
||||||
{
|
|
||||||
Point location = Location;
|
|
||||||
Size size = new Size(10, 10);
|
|
||||||
return new Rectangle(location.X - (size.Width / 2), location.Y - (size.Height / 2), size.Width, size.Height);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Draw the adorner
|
/// Draw the adorner
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="paintEventArgs">PaintEventArgs</param>
|
/// <param name="paintEventArgs">PaintEventArgs</param>
|
||||||
public void Paint(PaintEventArgs paintEventArgs)
|
public override void Paint(PaintEventArgs paintEventArgs)
|
||||||
{
|
{
|
||||||
Graphics targetGraphics = paintEventArgs.Graphics;
|
Graphics targetGraphics = paintEventArgs.Graphics;
|
||||||
Rectangle clipRectangle = paintEventArgs.ClipRectangle;
|
Rectangle clipRectangle = paintEventArgs.ClipRectangle;
|
||||||
|
|
||||||
var bounds = Bounds;
|
var bounds = Bounds;
|
||||||
targetGraphics.DrawRectangle(Pens.Green, bounds.X, bounds.Y, bounds.Width, bounds.Height);
|
targetGraphics.FillRectangle(Brushes.Green, bounds.X, bounds.Y, bounds.Width, bounds.Height);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Made sure this adorner is transformed
|
/// Made sure this adorner is transformed
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="matrix">Matrix</param>
|
/// <param name="matrix">Matrix</param>
|
||||||
public void Transform(Matrix matrix)
|
public override void Transform(Matrix matrix)
|
||||||
{
|
{
|
||||||
if (matrix == null)
|
if (matrix == null)
|
||||||
{
|
{
|
||||||
|
|
|
@ -331,6 +331,7 @@ namespace Greenshot.Drawing
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protected void InitTargetGripper(Color gripperColor, Point location) {
|
protected void InitTargetGripper(Color gripperColor, Point location) {
|
||||||
_targetGripper = new TargetAdorner(this, location);
|
_targetGripper = new TargetAdorner(this, location);
|
||||||
|
Adorners.Add(_targetGripper);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void InitGrippers() {
|
protected void InitGrippers() {
|
||||||
|
|
|
@ -998,13 +998,14 @@ namespace Greenshot.Drawing {
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="mouseEventArgs">MouseEventArgs</param>
|
/// <param name="mouseEventArgs">MouseEventArgs</param>
|
||||||
/// <returns>IAdorner</returns>
|
/// <returns>IAdorner</returns>
|
||||||
private IAdorner AdornersHitTest(MouseEventArgs mouseEventArgs)
|
private IAdorner FindActiveAdorner(MouseEventArgs mouseEventArgs)
|
||||||
{
|
{
|
||||||
foreach(IDrawableContainer drawableContainer in selectedElements)
|
foreach(IDrawableContainer drawableContainer in selectedElements)
|
||||||
{
|
{
|
||||||
foreach(IAdorner adorner in drawableContainer.Adorners)
|
foreach(IAdorner adorner in drawableContainer.Adorners)
|
||||||
{
|
{
|
||||||
if (adorner.HitTest(mouseEventArgs.Location))
|
|
||||||
|
if (adorner.IsActive || adorner.HitTest(mouseEventArgs.Location))
|
||||||
{
|
{
|
||||||
if (adorner.Cursor != null)
|
if (adorner.Cursor != null)
|
||||||
{
|
{
|
||||||
|
@ -1025,7 +1026,7 @@ namespace Greenshot.Drawing {
|
||||||
void SurfaceMouseDown(object sender, MouseEventArgs e) {
|
void SurfaceMouseDown(object sender, MouseEventArgs e) {
|
||||||
|
|
||||||
// Handle Adorners
|
// Handle Adorners
|
||||||
var adorner = AdornersHitTest(e);
|
var adorner = FindActiveAdorner(e);
|
||||||
if (adorner != null)
|
if (adorner != null)
|
||||||
{
|
{
|
||||||
adorner.MouseDown(sender, e);
|
adorner.MouseDown(sender, e);
|
||||||
|
@ -1102,7 +1103,7 @@ namespace Greenshot.Drawing {
|
||||||
void SurfaceMouseUp(object sender, MouseEventArgs e) {
|
void SurfaceMouseUp(object sender, MouseEventArgs e) {
|
||||||
|
|
||||||
// Handle Adorners
|
// Handle Adorners
|
||||||
var adorner = AdornersHitTest(e);
|
var adorner = FindActiveAdorner(e);
|
||||||
if (adorner != null)
|
if (adorner != null)
|
||||||
{
|
{
|
||||||
adorner.MouseUp(sender, e);
|
adorner.MouseUp(sender, e);
|
||||||
|
@ -1171,7 +1172,7 @@ namespace Greenshot.Drawing {
|
||||||
/// <param name="e"></param>
|
/// <param name="e"></param>
|
||||||
void SurfaceMouseMove(object sender, MouseEventArgs e) {
|
void SurfaceMouseMove(object sender, MouseEventArgs e) {
|
||||||
// Handle Adorners
|
// Handle Adorners
|
||||||
var adorner = AdornersHitTest(e);
|
var adorner = FindActiveAdorner(e);
|
||||||
if (adorner != null)
|
if (adorner != null)
|
||||||
{
|
{
|
||||||
adorner.MouseMove(sender, e);
|
adorner.MouseMove(sender, e);
|
||||||
|
|
|
@ -75,6 +75,7 @@
|
||||||
<Compile Include="Destinations\FileWithDialogDestination.cs" />
|
<Compile Include="Destinations\FileWithDialogDestination.cs" />
|
||||||
<Compile Include="Destinations\PickerDestination.cs" />
|
<Compile Include="Destinations\PickerDestination.cs" />
|
||||||
<Compile Include="Destinations\PrinterDestination.cs" />
|
<Compile Include="Destinations\PrinterDestination.cs" />
|
||||||
|
<Compile Include="Drawing\Adorners\AbstractAdorner.cs" />
|
||||||
<Compile Include="Drawing\Adorners\GripperAdorner.cs" />
|
<Compile Include="Drawing\Adorners\GripperAdorner.cs" />
|
||||||
<Compile Include="Drawing\Adorners\TargetAdorner.cs" />
|
<Compile Include="Drawing\Adorners\TargetAdorner.cs" />
|
||||||
<Compile Include="Drawing\ArrowContainer.cs" />
|
<Compile Include="Drawing\ArrowContainer.cs" />
|
||||||
|
|
|
@ -27,6 +27,16 @@ namespace Greenshot.Plugin.Drawing.Adorners
|
||||||
{
|
{
|
||||||
public interface IAdorner
|
public interface IAdorner
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Returns if this adorner is active
|
||||||
|
/// </summary>
|
||||||
|
bool IsActive { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The current edit status, this is needed to locate the adorner to send events to
|
||||||
|
/// </summary>
|
||||||
|
EditStatus EditStatus { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The owner of this adorner
|
/// The owner of this adorner
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue