ShareX/ShareX.MediaLib/Forms/ImageCombinerForm.cs

201 lines
6 KiB
C#
Raw Normal View History

2015-10-01 01:44:19 +13:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2019-01-02 20:43:52 +13:00
Copyright (c) 2007-2019 ShareX Team
2015-10-01 01:44:19 +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;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
2015-10-01 01:44:19 +13:00
using System.Windows.Forms;
2017-07-10 09:50:10 +12:00
namespace ShareX.MediaLib
2015-10-01 01:44:19 +13:00
{
public partial class ImageCombinerForm : Form
2015-10-01 01:44:19 +13:00
{
2015-10-01 02:35:45 +13:00
public event Action<Image> ProcessRequested;
2015-10-01 01:44:19 +13:00
public ImageCombinerOptions Options { get; private set; }
public ImageCombinerForm(ImageCombinerOptions options)
{
Options = options;
2015-10-01 01:44:19 +13:00
InitializeComponent();
ShareXResources.ApplyThemeToForm(this);
2015-10-01 02:35:45 +13:00
cbOrientation.Items.AddRange(Enum.GetNames(typeof(Orientation)));
cbOrientation.SelectedIndex = (int)Options.Orientation;
nudSpace.SetValue(Options.Space);
2015-10-01 01:44:19 +13:00
}
public ImageCombinerForm(ImageCombinerOptions options, IEnumerable<string> imageFiles) : this(options)
{
if (imageFiles != null)
{
foreach (string image in imageFiles)
{
lvImages.Items.Add(image);
}
}
}
2015-10-01 01:44:19 +13:00
private void btnAdd_Click(object sender, EventArgs e)
{
2015-10-01 02:35:45 +13:00
string[] images = ImageHelpers.OpenImageFileDialog(true);
if (images != null)
{
foreach (string image in images)
{
lvImages.Items.Add(image);
}
}
2015-10-01 01:44:19 +13:00
}
private void btnRemove_Click(object sender, EventArgs e)
{
2015-10-01 02:35:45 +13:00
if (lvImages.SelectedItems.Count > 0)
{
foreach (ListViewItem lvi in lvImages.SelectedItems)
{
lvImages.Items.Remove(lvi);
}
}
2015-10-01 01:44:19 +13:00
}
private void btnMoveUp_Click(object sender, EventArgs e)
{
2015-10-01 02:35:45 +13:00
if (lvImages.SelectedItems.Count > 0)
{
lvImages.SelectedItems[0].MoveUp();
}
2015-10-01 01:44:19 +13:00
}
private void btnMoveDown_Click(object sender, EventArgs e)
{
2015-10-01 02:35:45 +13:00
if (lvImages.SelectedItems.Count > 0)
{
lvImages.SelectedItems[0].MoveDown();
}
}
private void cbOrientation_SelectedIndexChanged(object sender, EventArgs e)
{
Options.Orientation = (Orientation)cbOrientation.SelectedIndex;
}
private void nudSpace_ValueChanged(object sender, EventArgs e)
{
Options.Space = (int)nudSpace.Value;
2015-10-01 01:44:19 +13:00
}
private void btnCombine_Click(object sender, EventArgs e)
{
2015-10-01 02:35:45 +13:00
if (lvImages.Items.Count > 0)
{
List<Image> images = new List<Image>();
2015-10-01 02:35:45 +13:00
try
{
foreach (ListViewItem lvi in lvImages.Items)
{
string filePath = lvi.Text;
if (File.Exists(filePath))
{
Image img = ImageHelpers.LoadImage(filePath);
if (img != null)
{
images.Add(img);
}
}
}
if (images.Count > 1)
{
Image output = ImageHelpers.CombineImages(images, Options.Orientation, Options.Space);
OnProcessRequested(output);
}
2015-10-01 02:35:45 +13:00
}
catch (Exception ex)
{
DebugHelper.WriteException(ex);
2017-04-22 08:42:52 +12:00
ex.ShowError();
2015-10-01 02:35:45 +13:00
}
finally
{
if (images != null)
{
foreach (Image image in images)
{
if (image != null)
{
image.Dispose();
}
}
}
}
}
}
protected void OnProcessRequested(Image image)
{
if (ProcessRequested != null)
{
ProcessRequested(image);
}
2015-10-01 01:44:19 +13:00
}
private void ImageCombinerForm_DragEnter(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop, false))
{
e.Effect = DragDropEffects.Copy;
}
else
{
e.Effect = DragDropEffects.None;
}
}
private void ImageCombinerForm_DragDrop(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(DataFormats.FileDrop, false))
{
string[] files = e.Data.GetData(DataFormats.FileDrop, false) as string[];
if (files != null)
{
foreach (string file in files)
{
lvImages.Items.Add(file);
}
}
}
}
2015-10-01 01:44:19 +13:00
}
}