#region License Information (GPL v3) /* ShareX - A program that allows you to take screenshots and share any file type Copyright (c) 2007-2024 ShareX Team 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 . */ #endregion License Information (GPL v3) using ShareX.HelpersLib; using ShareX.HistoryLib; using ShareX.UploadersLib; using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Drawing.Design; namespace ShareX { public class ApplicationConfig : SettingsBase { public TaskSettings DefaultTaskSettings = new TaskSettings(); public DateTime FirstTimeRunDate = DateTime.Now; public string FileUploadDefaultDirectory = ""; public int NameParserAutoIncrementNumber = 0; public List QuickTaskPresets = QuickTaskInfo.DefaultPresets; // Main window public bool FirstTimeMinimizeToTray = true; public List TaskListViewColumnWidths = new List(); public int PreviewSplitterDistance = 335; public ApplicationConfig() { this.ApplyDefaultPropertyValues(); } #region Settings Form #region General public SupportedLanguage Language = SupportedLanguage.Automatic; public bool ShowTray = true; public bool SilentRun = false; public bool TrayIconProgressEnabled = true; public bool TaskbarProgressEnabled = true; public bool UseWhiteShareXIcon = false; public bool RememberMainFormPosition = false; public Point MainFormPosition = Point.Empty; public bool RememberMainFormSize = false; public Size MainFormSize = Size.Empty; public HotkeyType TrayLeftClickAction = HotkeyType.RectangleRegion; public HotkeyType TrayLeftDoubleClickAction = HotkeyType.OpenMainWindow; public HotkeyType TrayMiddleClickAction = HotkeyType.ClipboardUploadWithContentViewer; public bool AutoCheckUpdate = true; public UpdateChannel UpdateChannel = UpdateChannel.Release; // TEMP: For backward compatibility public bool CheckPreReleaseUpdates = false; #endregion General #region Theme public bool UseCustomTheme = true; public List Themes = ShareXTheme.GetDefaultThemes(); public int SelectedTheme = 0; #endregion #region Paths public bool UseCustomScreenshotsPath = false; public string CustomScreenshotsPath = ""; public string SaveImageSubFolderPattern = "%y-%mo"; public string SaveImageSubFolderPatternWindow = ""; #endregion Paths #region Main window public bool ShowMenu = true; public TaskViewMode TaskViewMode = TaskViewMode.ThumbnailView; // Thumbnail view public bool ShowThumbnailTitle = true; public ThumbnailTitleLocation ThumbnailTitleLocation = ThumbnailTitleLocation.Top; public Size ThumbnailSize = new Size(200, 150); public ThumbnailViewClickAction ThumbnailClickAction = ThumbnailViewClickAction.Default; // List view public bool ShowColumns = true; public ImagePreviewVisibility ImagePreview = ImagePreviewVisibility.Automatic; public ImagePreviewLocation ImagePreviewLocation = ImagePreviewLocation.Side; #endregion Main window #region Settings public bool AutoCleanupBackupFiles = false; public bool AutoCleanupLogFiles = false; public int CleanupKeepFileCount = 10; #endregion #region Proxy public ProxyInfo ProxySettings = new ProxyInfo(); #endregion Proxy #region Upload public int UploadLimit = 5; public int BufferSizePower = 5; public List ClipboardContentFormats = new List(); public int MaxUploadFailRetry = 1; public bool UseSecondaryUploaders = false; public List SecondaryImageUploaders = new List(); public List SecondaryTextUploaders = new List(); public List SecondaryFileUploaders = new List(); #endregion Upload #region History public bool HistorySaveTasks = true; public bool HistoryCheckURL = false; public RecentTask[] RecentTasks = null; public bool RecentTasksSave = false; public int RecentTasksMaxCount = 10; public bool RecentTasksShowInMainWindow = true; public bool RecentTasksShowInTrayMenu = true; public bool RecentTasksTrayMenuMostRecentFirst = false; public HistorySettings HistorySettings = new HistorySettings(); public ImageHistorySettings ImageHistorySettings = new ImageHistorySettings(); #endregion History #region Print public bool DontShowPrintSettingsDialog = false; public PrintSettings PrintSettings = new PrintSettings(); #endregion Print #region Advanced [Category("Application"), DefaultValue(false), Description("Calculate and show file sizes in binary units (KiB, MiB etc.)")] public bool BinaryUnits { get; set; } [Category("Application"), DefaultValue(false), Description("Show most recent task first in main window.")] public bool ShowMostRecentTaskFirst { get; set; } [Category("Application"), DefaultValue(false), Description("Show only customized tasks in main window workflows.")] public bool WorkflowsOnlyShowEdited { get; set; } [Category("Application"), DefaultValue(false), Description("Automatically expand capture menu when you open the tray menu.")] public bool TrayAutoExpandCaptureMenu { get; set; } [Category("Application"), DefaultValue(true), Description("Show tips and hotkeys in main window when task list is empty.")] public bool ShowMainWindowTip { get; set; } [Category("Application"), DefaultValue(""), Description("URLs will open using this path instead of default browser. Example path: chrome.exe")] [Editor(typeof(ExeFileNameEditor), typeof(UITypeEditor))] public string BrowserPath { get; set; } [Category("Application"), DefaultValue(false), Description("Save settings after task completed but only if there is no other active tasks.")] public bool SaveSettingsAfterTaskCompleted { get; set; } [Category("Application"), DefaultValue(false), Description("In main window when task is completed automatically select it.")] public bool AutoSelectLastCompletedTask { get; set; } [Category("Application"), DefaultValue(false), Description("")] public bool DevMode { get; set; } [Category("Hotkey"), DefaultValue(false), Description("Disables hotkeys.")] public bool DisableHotkeys { get; set; } [Category("Hotkey"), DefaultValue(false), Description("If active window is fullscreen then hotkeys won't be executed.")] public bool DisableHotkeysOnFullscreen { get; set; } private int hotkeyRepeatLimit; [Category("Hotkey"), DefaultValue(500), Description("If you hold hotkeys then it will only trigger every this milliseconds.")] public int HotkeyRepeatLimit { get { return hotkeyRepeatLimit; } set { hotkeyRepeatLimit = Math.Max(value, 200); } } [Category("Clipboard"), DefaultValue(true), Description("Show clipboard content viewer when using clipboard upload in main window.")] public bool ShowClipboardContentViewer { get; set; } [Category("Clipboard"), DefaultValue(true), Description("Because default .NET image copying not supports alpha channel, background of image will be black. This option will fill background white.")] public bool DefaultClipboardCopyImageFillBackground { get; set; } [Category("Clipboard"), DefaultValue(false), Description("Default .NET method can't copy image with alpha channel to clipboard. When this setting is true, ShareX copies \"PNG\" and 32 bit \"DIB\" to clipboard in order to retain image transparency.")] public bool UseAlternativeClipboardCopyImage { get; set; } [Category("Clipboard"), DefaultValue(false), Description("Default .NET method can't get image with alpha channel from clipboard. When this setting is true, ShareX checks if clipboard contains \"PNG\" or 32 bit \"DIB\" in order to retain image transparency.")] public bool UseAlternativeClipboardGetImage { get; set; } [Category("Image"), DefaultValue(true), Description("If JPEG exif contains orientation data then rotate image accordingly.")] public bool RotateImageByExifOrientationData { get; set; } [Category("Image"), DefaultValue(false), Description("Strip color space information chunks from PNG image.")] public bool PNGStripColorSpaceInformation { get; set; } [Category("Upload"), DefaultValue(false), Description("Can be used to disable uploading application wide.")] public bool DisableUpload { get; set; } [Category("Upload"), DefaultValue(false), Description("Accept invalid SSL certificates when uploading.")] public bool AcceptInvalidSSLCertificates { get; set; } [Category("Upload"), DefaultValue(true), Description("Ignore emojis while URL encoding upload results.")] public bool URLEncodeIgnoreEmoji { get; set; } [Category("Upload"), DefaultValue(true), Description("Show first time upload warning.")] public bool ShowUploadWarning { get; set; } [Category("Upload"), DefaultValue(true), Description("Show more than 10 files upload warning.")] public bool ShowMultiUploadWarning { get; set; } [Category("Upload"), DefaultValue(100), Description("Large file size defined in MB. ShareX will warn before uploading large files. 0 disables this feature.")] public int ShowLargeFileSizeWarning { get; set; } [Category("Paths"), Description("Custom uploaders configuration path. If you have already configured this setting in another device and you are attempting to use the same location, then backup the file before configuring this setting and restore after exiting ShareX.")] [Editor(typeof(DirectoryNameEditor), typeof(UITypeEditor))] public string CustomUploadersConfigPath { get; set; } [Category("Paths"), Description("Custom hotkeys configuration path. If you have already configured this setting in another device and you are attempting to use the same location, then backup the file before configuring this setting and restore after exiting ShareX.")] [Editor(typeof(DirectoryNameEditor), typeof(UITypeEditor))] public string CustomHotkeysConfigPath { get; set; } [Category("Paths"), Description("Custom screenshot path (secondary location). If custom screenshot path is temporarily unavailable (e.g. network share), ShareX will use this location (recommended to be a local path).")] [Editor(typeof(DirectoryNameEditor), typeof(UITypeEditor))] public string CustomScreenshotsPath2 { get; set; } [Category("Drag and drop window"), DefaultValue(150), Description("Size of drop window.")] public int DropSize { get; set; } [Category("Drag and drop window"), DefaultValue(5), Description("Position offset of drop window.")] public int DropOffset { get; set; } [Category("Drag and drop window"), DefaultValue(ContentAlignment.BottomRight), Description("Where drop window will open.")] public ContentAlignment DropAlignment { get; set; } [Category("Drag and drop window"), DefaultValue(100), Description("Opacity of drop window.")] public int DropOpacity { get; set; } [Category("Drag and drop window"), DefaultValue(255), Description("When you drag file to drop window then opacity will change to this.")] public int DropHoverOpacity { get; set; } #endregion Advanced #endregion Settings Form #region AutoCapture Form public Rectangle AutoCaptureRegion = Rectangle.Empty; public decimal AutoCaptureRepeatTime = 60; public bool AutoCaptureMinimizeToTray = true; public bool AutoCaptureWaitUpload = true; #endregion AutoCapture Form #region ScreenRecord Form public Rectangle ScreenRecordRegion = Rectangle.Empty; #endregion ScreenRecord Form #region Actions toolbar public List ActionsToolbarList = new List() { HotkeyType.RectangleRegion, HotkeyType.PrintScreen, HotkeyType.ScreenRecorder, HotkeyType.None, HotkeyType.FileUpload, HotkeyType.ClipboardUploadWithContentViewer }; public bool ActionsToolbarRunAtStartup = false; public Point ActionsToolbarPosition = Point.Empty; public bool ActionsToolbarLockPosition = false; public bool ActionsToolbarStayTopMost = true; #endregion Actions toolbar #region Color Picker Form public List RecentColors = new List(); #endregion Color Picker Form } }