ShareX/ShareX.HelpersLib/Helpers/ClipboardHelpers.cs

227 lines
6.6 KiB
C#
Raw Normal View History

2013-11-03 23:53:49 +13:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2014-05-13 21:06:40 +12:00
Copyright (C) 2007-2014 ShareX Developers
2013-11-03 23:53:49 +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 System;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Text;
using System.Windows.Forms;
namespace HelpersLib
{
public static class ClipboardHelpers
{
private const int RetryTimes = 20, RetryDelay = 100;
private static readonly object ClipboardLock = new object();
public static bool UseAlternativeCopyImage = false;
private static bool CopyData(IDataObject data, bool copy = true)
{
if (data != null)
{
lock (ClipboardLock)
{
Clipboard.SetDataObject(data, copy, RetryTimes, RetryDelay);
}
return true;
}
return false;
}
public static bool Clear()
{
try
{
IDataObject data = new DataObject();
CopyData(data, false);
}
catch (Exception e)
{
DebugHelper.WriteException(e, "Clipboard clear failed.");
}
return false;
}
public static bool CopyText(string text)
{
if (!string.IsNullOrEmpty(text))
{
try
{
IDataObject data = new DataObject();
string dataFormat;
if (Environment.OSVersion.Platform != PlatformID.Win32NT || Environment.OSVersion.Version.Major < 5)
{
dataFormat = DataFormats.Text;
}
else
{
dataFormat = DataFormats.UnicodeText;
}
data.SetData(dataFormat, false, text);
return CopyData(data);
}
catch (Exception e)
{
DebugHelper.WriteException(e, "Clipboard copy text failed.");
}
}
return false;
}
public static bool CopyImage(Image img)
{
if (UseAlternativeCopyImage)
{
return CopyImageAlternative(img);
}
return CopyImageDefault(img);
}
private static bool CopyImageDefault(Image img)
{
if (img != null)
{
try
{
IDataObject data = new DataObject();
data.SetData(DataFormats.Bitmap, true, img);
return CopyData(data);
}
catch (Exception e)
{
DebugHelper.WriteException(e, "Clipboard copy image failed.");
}
}
return false;
}
private static bool CopyImageAlternative(Image img)
{
if (img != null)
{
try
{
IDataObject data = new DataObject();
using (MemoryStream msPNG = new MemoryStream())
using (MemoryStream msBMP = new MemoryStream())
using (MemoryStream msDIB = new MemoryStream())
{
img.Save(msPNG, ImageFormat.Png);
data.SetData("PNG", false, msPNG);
img.Save(msBMP, ImageFormat.Bmp);
msBMP.CopyStreamTo(msDIB, 14, (int)msBMP.Length - 14);
data.SetData(DataFormats.Dib, true, msDIB);
return CopyData(data);
}
}
catch (Exception e)
{
DebugHelper.WriteException(e, "Clipboard copy image alternative failed.");
}
}
return false;
}
public static bool CopyFile(string path)
{
if (!string.IsNullOrEmpty(path))
{
return CopyFile(new string[] { path });
}
return false;
}
public static bool CopyFile(string[] paths)
{
if (paths != null && paths.Length > 0)
{
try
{
IDataObject data = new DataObject();
data.SetData(DataFormats.FileDrop, true, paths);
return CopyData(data);
}
catch (Exception e)
{
DebugHelper.WriteException(e, "Clipboard copy file failed.");
}
}
return false;
}
public static bool CopyTextFromFile(string path)
{
if (!string.IsNullOrEmpty(path) && File.Exists(path))
{
try
{
string text = File.ReadAllText(path, Encoding.UTF8);
return CopyText(text);
}
catch (Exception e)
{
DebugHelper.WriteException(e, "Clipboard copy text from file failed.");
}
}
return false;
}
public static bool CopyImageFromFile(string path)
{
if (!string.IsNullOrEmpty(path) && File.Exists(path))
{
try
{
2013-11-21 06:59:00 +13:00
using (Image img = ImageHelpers.LoadImage(path))
2013-11-03 23:53:49 +13:00
{
return CopyImage(img);
}
}
catch (Exception e)
{
DebugHelper.WriteException(e, "Clipboard copy image from file failed.");
}
}
return false;
}
}
}