ShareX/ShareX.ScreenCaptureLib/Shapes/Drawing/StickerDrawingShape.cs

125 lines
3.7 KiB
C#
Raw Normal View History

2018-02-06 21:25:15 +13:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2024-01-03 12:57:14 +13:00
Copyright (c) 2007-2024 ShareX Team
2018-02-06 21:25:15 +13:00
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.Windows.Forms;
namespace ShareX.ScreenCaptureLib
{
public class StickerDrawingShape : ImageDrawingShape
{
public override ShapeType ShapeType { get; } = ShapeType.DrawingSticker;
public override void OnConfigLoad()
{
ImageInterpolationMode = ImageInterpolationMode.NearestNeighbor;
}
public override void OnConfigSave()
{
}
2018-02-06 21:25:15 +13:00
public override void ShowNodes()
{
}
public override void OnCreating()
{
PointF pos = Manager.Form.ScaledClientMousePosition;
Rectangle = new RectangleF(pos.X, pos.Y, 1, 1);
if (Manager.IsCtrlModifier && LoadSticker(AnnotationOptions.LastStickerPath, AnnotationOptions.StickerSize))
{
OnCreated();
Manager.IsMoving = true;
}
else if (OpenStickerForm())
{
OnCreated();
}
else
{
Remove();
}
}
public override void OnDoubleClicked()
{
OpenStickerForm();
}
public override void Resize(int x, int y, bool fromBottomRight)
{
Move(x, y);
}
private bool OpenStickerForm()
2018-02-06 21:25:15 +13:00
{
Manager.Form.Pause();
try
{
2018-02-08 01:03:45 +13:00
using (StickerForm stickerForm = new StickerForm(AnnotationOptions.StickerPacks, AnnotationOptions.SelectedStickerPack, AnnotationOptions.StickerSize))
2018-02-06 21:25:15 +13:00
{
2018-03-17 08:46:34 +13:00
if (stickerForm.ShowDialog(Manager.Form) == DialogResult.OK)
2018-02-06 21:25:15 +13:00
{
2018-02-08 01:03:45 +13:00
AnnotationOptions.SelectedStickerPack = stickerForm.SelectedStickerPack;
2018-02-06 23:16:42 +13:00
AnnotationOptions.StickerSize = stickerForm.StickerSize;
2018-02-06 22:39:42 +13:00
return LoadSticker(stickerForm.SelectedImageFile, stickerForm.StickerSize);
2018-02-06 21:25:15 +13:00
}
}
}
finally
{
Manager.Form.Resume();
}
return false;
2018-02-06 21:25:15 +13:00
}
2018-02-07 23:45:56 +13:00
2018-02-15 10:04:00 +13:00
private bool LoadSticker(string filePath, int stickerSize)
{
if (!string.IsNullOrEmpty(filePath))
{
Bitmap bmp = ImageHelpers.LoadImage(filePath);
2018-02-15 10:04:00 +13:00
if (bmp != null)
2018-02-15 10:04:00 +13:00
{
AnnotationOptions.LastStickerPath = filePath;
2018-02-15 10:04:00 +13:00
bmp = ImageHelpers.ResizeImageLimit(bmp, stickerSize);
2018-02-15 10:04:00 +13:00
SetImage(bmp, true);
2018-02-15 10:04:00 +13:00
return true;
}
}
return false;
}
2018-02-06 21:25:15 +13:00
}
}