ShareX/ShareX/TaskSettings.cs

325 lines
12 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-01-12 20:25:51 +13:00
Copyright (C) 2008-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 HelpersLib;
using ImageEffectsLib;
using IndexerLib;
using Newtonsoft.Json;
using ScreenCaptureLib;
2013-11-03 23:53:49 +13:00
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
2013-11-03 23:53:49 +13:00
using UploadersLib;
namespace ShareX
{
public class TaskSettings
{
public string Description = string.Empty;
public HotkeyType Job = HotkeyType.None;
public bool UseDefaultAfterCaptureJob = true;
public AfterCaptureTasks AfterCaptureJob = AfterCaptureTasks.CopyImageToClipboard | AfterCaptureTasks.SaveImageToFile | AfterCaptureTasks.UploadImageToHost;
public bool UseDefaultAfterUploadJob = true;
public AfterUploadTasks AfterUploadJob = AfterUploadTasks.CopyURLToClipboard;
public bool UseDefaultDestinations = true;
public ImageDestination ImageDestination = ImageDestination.Imgur;
public TextDestination TextDestination = TextDestination.Pastebin;
public FileDestination FileDestination = FileDestination.Dropbox;
public UrlShortenerType URLShortenerDestination = UrlShortenerType.BITLY;
public SocialNetworkingService SocialNetworkingServiceDestination = SocialNetworkingService.Twitter;
public bool OverrideFTP = false;
2013-11-09 05:12:56 +13:00
public int FTPIndex = 0;
2013-11-03 23:53:49 +13:00
public bool UseDefaultGeneralSettings = true;
public TaskSettingsGeneral GeneralSettings = new TaskSettingsGeneral();
public bool UseDefaultImageSettings = true;
public TaskSettingsImage ImageSettings = new TaskSettingsImage();
public bool UseDefaultCaptureSettings = true;
public TaskSettingsCapture CaptureSettings = new TaskSettingsCapture();
public bool UseDefaultUploadSettings = true;
public TaskSettingsUpload UploadSettings = new TaskSettingsUpload();
public bool UseDefaultActions = true;
public List<ExternalProgram> ExternalPrograms = new List<ExternalProgram>();
public bool UseDefaultIndexerSettings = true;
public IndexerSettings IndexerSettings = new IndexerSettings();
public bool UseDefaultAdvancedSettings = true;
public TaskSettingsAdvanced AdvancedSettings = new TaskSettingsAdvanced();
public bool WatchFolderEnabled = false;
public List<WatchFolderSettings> WatchFolderList = new List<WatchFolderSettings>();
[JsonIgnore]
public TaskSettings TaskSettingsReference { get; private set; }
public override string ToString()
{
if (!string.IsNullOrEmpty(Description))
{
return Description;
}
return Job.GetDescription();
}
public bool IsUsingDefaultSettings
{
get
{
return UseDefaultAfterCaptureJob && UseDefaultAfterUploadJob && UseDefaultDestinations && UseDefaultGeneralSettings &&
UseDefaultImageSettings && UseDefaultCaptureSettings && UseDefaultUploadSettings && UseDefaultActions &&
UseDefaultIndexerSettings && UseDefaultAdvancedSettings && !WatchFolderEnabled;
}
}
public static TaskSettings GetDefaultTaskSettings()
{
TaskSettings taskSettings = new TaskSettings();
taskSettings.SetDefaultSettings();
return taskSettings;
}
public static TaskSettings GetSafeTaskSettings(TaskSettings taskSettings)
{
TaskSettings taskSettingsCopy;
if (taskSettings.IsUsingDefaultSettings && Program.DefaultTaskSettings != null)
{
taskSettingsCopy = Program.DefaultTaskSettings.Copy();
taskSettingsCopy.Description = taskSettings.Description;
taskSettingsCopy.Job = taskSettings.Job;
}
else
{
taskSettingsCopy = taskSettings.Copy();
taskSettingsCopy.SetDefaultSettings();
}
taskSettingsCopy.TaskSettingsReference = taskSettings;
return taskSettingsCopy;
}
private void SetDefaultSettings()
{
if (Program.DefaultTaskSettings != null)
{
TaskSettings defaultTaskSettings = Program.DefaultTaskSettings.Copy();
if (UseDefaultAfterCaptureJob)
{
AfterCaptureJob = defaultTaskSettings.AfterCaptureJob;
}
if (UseDefaultAfterUploadJob)
{
AfterUploadJob = defaultTaskSettings.AfterUploadJob;
}
if (UseDefaultDestinations)
{
ImageDestination = defaultTaskSettings.ImageDestination;
TextDestination = defaultTaskSettings.TextDestination;
FileDestination = defaultTaskSettings.FileDestination;
URLShortenerDestination = defaultTaskSettings.URLShortenerDestination;
SocialNetworkingServiceDestination = defaultTaskSettings.SocialNetworkingServiceDestination;
}
if (UseDefaultGeneralSettings)
{
GeneralSettings = defaultTaskSettings.GeneralSettings;
}
if (UseDefaultImageSettings)
{
ImageSettings = defaultTaskSettings.ImageSettings;
}
if (UseDefaultCaptureSettings)
{
CaptureSettings = defaultTaskSettings.CaptureSettings;
}
2013-11-03 23:53:49 +13:00
if (UseDefaultUploadSettings)
{
UploadSettings = defaultTaskSettings.UploadSettings;
}
if (UseDefaultActions)
{
ExternalPrograms = defaultTaskSettings.ExternalPrograms;
}
if (UseDefaultIndexerSettings)
{
IndexerSettings = defaultTaskSettings.IndexerSettings;
}
if (UseDefaultAdvancedSettings)
{
AdvancedSettings = defaultTaskSettings.AdvancedSettings;
}
}
}
}
public class TaskSettingsGeneral
{
public bool PlaySoundAfterCapture = true;
public bool ShowAfterCaptureTasksForm = false;
2013-11-03 23:53:49 +13:00
public bool PlaySoundAfterUpload = true;
public bool TrayBalloonTipAfterUpload = true;
public bool ShowToastWindowAfterTask = false;
2013-11-03 23:53:49 +13:00
public bool ShowAfterUploadForm = false;
public bool SaveHistory = true;
}
public class TaskSettingsImage
{
#region Image / Quality
public EImageFormat ImageFormat = EImageFormat.PNG;
public int ImageJPEGQuality = 90;
public GIFQuality ImageGIFQuality = GIFQuality.Default;
public int ImageSizeLimit = 1024;
public EImageFormat ImageFormat2 = EImageFormat.JPEG;
#endregion Image / Quality
#region Image / Effects
[JsonProperty(ItemTypeNameHandling = TypeNameHandling.All)]
public List<ImageEffect> ImageEffects = new List<ImageEffect>();
public bool ShowImageEffectsWindowAfterCapture = false;
public bool ImageEffectOnlyRegionCapture = true;
public WatermarkConfig WatermarkConfig = new WatermarkConfig();
2013-11-03 23:53:49 +13:00
#endregion Image / Effects
}
public class TaskSettingsCapture
{
#region Capture / General
public bool ShowCursor = true;
public bool CaptureTransparent = true;
public bool CaptureShadow = true;
public int CaptureShadowOffset = 20;
public bool CaptureClientArea = false;
public bool IsDelayScreenshot = false;
public decimal DelayScreenshot = 2.0m;
public bool CaptureAutoHideTaskbar = false;
#endregion Capture / General
#region Capture / Shape capture
public SurfaceOptions SurfaceOptions = new SurfaceOptions();
#endregion Capture / Shape capture
#region Capture / Screen recorder
public ScreenRecordOutput ScreenRecordOutput = ScreenRecordOutput.GIF;
public int ScreenRecordFPS = 5;
public bool ScreenRecordFixedDuration = true;
public float ScreenRecordDuration = 3f;
public float ScreenRecordStartDelay = 0.1f;
public string ScreenRecordCommandLinePath = "x264.exe";
public string ScreenRecordCommandLineArgs = "--output %output %input";
public string ScreenRecordCommandLineOutputExtension = "mp4";
#endregion Capture / Screen recorder
}
public class TaskSettingsUpload
{
#region Upload / Name pattern
public string NameFormatPattern = "%y-%mo-%d_%h-%mi-%s"; // Test: %y %mo %mon %mon2 %d %h %mi %s %ms %w %w2 %pm %rn %ra %width %height %app %ver
public string NameFormatPatternActiveWindow = "%t_%y-%mo-%d_%h-%mi-%s";
public bool FileUploadUseNamePattern = false;
#endregion Upload / Name pattern
#region Upload / Clipboard upload
public bool ClipboardUploadAutoDetectURL = true;
#endregion Upload / Clipboard upload
}
public class TaskSettingsAdvanced
{
[Category("General"), DefaultValue(false), Description("Allow after capture tasks for image files by treating them as images when files are handled during file upload, clipboard upload, drag & drop, watch folder and other tasks.")]
public bool ProcessImagesDuringFileUpload { get; set; }
[Category("General"), DefaultValue(false), Description("Use after capture tasks for clipboard image upload.")]
public bool ProcessImagesDuringClipboardUpload { get; set; }
[Category("After upload"), DefaultValue(""),
Description("Clipboard content format after uploading. Supported variables: $result, $url, $shorturl, $thumbnailurl, $deletionurl, $filepath, $filename, $filenamenoext, $folderpath, $foldername, $uploadtime and other variables such as %y-%mo-%d etc.")]
public string ClipboardContentFormat { get; set; }
[Category("After upload"), DefaultValue(""), Description("Balloon tip content format after uploading. Supported variables: $result, $url, $shorturl, $thumbnailurl, $deletionurl, $filepath, $filename, $filenamenoext, $folderpath, $foldername, $uploadtime and other variables such as %y-%mo-%d etc.")]
public string BalloonTipContentFormat { get; set; }
[Category("After upload"), DefaultValue(4f), Description("How much toast window will stay on screen.")]
public float ToastWindowDuration { get; set; }
[Category("After upload"), DefaultValue(typeof(Size), "400, 300"), Description("Maximum toast window size.")]
public Size ToastWindowSize { get; set; }
2013-11-03 23:53:49 +13:00
[Category("After upload"), DefaultValue(false), Description("After upload form will be automatically closed after 60 seconds.")]
public bool AutoCloseAfterUploadForm { get; set; }
[Category("Capture"), DefaultValue(false), Description("Light version of rectangle region for better performance.")]
public bool UseLightRectangleCrop { get; set; }
[Category("Interaction"), DefaultValue(false), Description("Disable notifications")]
public bool DisableNotifications { get; set; }
[Category("Upload text"), DefaultValue("txt"), Description("File extension when saving text to the local hard disk.")]
public string TextFileExtension { get; set; }
[Category("Upload text"), DefaultValue("text"), Description("Text format e.g. csharp, cpp, etc.")]
public string TextFormat { get; set; }
public TaskSettingsAdvanced()
{
this.ApplyDefaultPropertyValues();
}
}
}