diff --git a/ShareX.ScreenCaptureLib/RegionCaptureOptions.cs b/ShareX.ScreenCaptureLib/RegionCaptureOptions.cs index fcdbc270b..43dbcd625 100644 --- a/ShareX.ScreenCaptureLib/RegionCaptureOptions.cs +++ b/ShareX.ScreenCaptureLib/RegionCaptureOptions.cs @@ -31,8 +31,6 @@ namespace ShareX.ScreenCaptureLib { public class RegionCaptureOptions { - // Settings in task settings window - public bool QuickCrop = true; public RegionCaptureAction MouseRightClickAction = RegionCaptureAction.OpenOptionsMenu; public RegionCaptureAction MouseMiddleClickAction = RegionCaptureAction.CancelCapture; @@ -52,8 +50,6 @@ public class RegionCaptureOptions new SnapSize(1920, 1080) // 1080p }; - // Settings in region capture right click menu - public AnnotationOptions AnnotationOptions = new AnnotationOptions(); public bool ShowTips = true; public bool ShowInfo = true; @@ -66,8 +62,6 @@ public class RegionCaptureOptions public Size FixedSize = new Size(250, 250); public bool ShowFPS = false; - // Settings not changeable from UI - public ShapeType LastRegionTool = ShapeType.RegionRectangle; public ShapeType LastAnnotationTool = ShapeType.DrawingRectangle; public bool ShowMenuTip = true; diff --git a/ShareX.ScreenCaptureLib/Shapes/ShapeManager.cs b/ShareX.ScreenCaptureLib/Shapes/ShapeManager.cs index 7753d50aa..bea8e63c2 100644 --- a/ShareX.ScreenCaptureLib/Shapes/ShapeManager.cs +++ b/ShareX.ScreenCaptureLib/Shapes/ShapeManager.cs @@ -638,7 +638,7 @@ private void CreateContextMenu() tsmiOptions.DropDownItems.Add(tsmiFixedSize); ToolStripDoubleLabeledNumericUpDown tslnudFixedSize = new ToolStripDoubleLabeledNumericUpDown("Width:", "Height:"); - tslnudFixedSize.Content.Minimum = 5; + tslnudFixedSize.Content.Minimum = 10; tslnudFixedSize.Content.Maximum = 10000; tslnudFixedSize.Content.Increment = 10; tslnudFixedSize.Content.Value = Config.FixedSize.Width; diff --git a/ShareX/Forms/AboutForm.cs b/ShareX/Forms/AboutForm.cs index 41ebfc347..922b05d73 100644 --- a/ShareX/Forms/AboutForm.cs +++ b/ShareX/Forms/AboutForm.cs @@ -76,7 +76,6 @@ public AboutForm() https://github.com/ShareX/ShareX/graphs/contributors Mega, Gist and Jira support: https://github.com/gpailler -Web site: https://github.com/dmxt Amazon S3 and DreamObjects support: https://github.com/alanedwardes Gfycat support: https://github.com/Dinnerbone AdFly support: https://github.com/LRNAB diff --git a/ShareX/Forms/TaskSettingsForm.Designer.cs b/ShareX/Forms/TaskSettingsForm.Designer.cs index 48fbe4d1b..110a04072 100644 --- a/ShareX/Forms/TaskSettingsForm.Designer.cs +++ b/ShareX/Forms/TaskSettingsForm.Designer.cs @@ -120,11 +120,11 @@ private void InitializeComponent() this.cbScreenshotDelay = new System.Windows.Forms.CheckBox(); this.chkUseDefaultCaptureSettings = new System.Windows.Forms.CheckBox(); this.tpRegionCapture = new System.Windows.Forms.TabPage(); + this.btnRegionCaptureSnapSizesRemove = new System.Windows.Forms.Button(); + this.btnRegionCaptureSnapSizesAdd = new System.Windows.Forms.Button(); this.cbRegionCaptureSnapSizes = new System.Windows.Forms.ComboBox(); this.lblRegionCaptureSnapSizes = new System.Windows.Forms.Label(); - this.txtRegionCaptureCustomInfoText = new System.Windows.Forms.TextBox(); this.cbRegionCaptureUseCustomInfoText = new System.Windows.Forms.CheckBox(); - this.cbRegionCaptureUseDimming = new System.Windows.Forms.CheckBox(); this.cbRegionCaptureDetectControls = new System.Windows.Forms.CheckBox(); this.cbRegionCaptureDetectWindows = new System.Windows.Forms.CheckBox(); this.cbRegionCaptureMouse5ClickAction = new System.Windows.Forms.ComboBox(); @@ -136,6 +136,15 @@ private void InitializeComponent() this.cbRegionCaptureMouseRightClickAction = new System.Windows.Forms.ComboBox(); this.lblRegionCaptureMouseRightClickAction = new System.Windows.Forms.Label(); this.cbRegionCaptureMultiRegionMode = new System.Windows.Forms.CheckBox(); + this.pRegionCaptureSnapSizes = new System.Windows.Forms.Panel(); + this.btnRegionCaptureSnapSizesDialogCancel = new System.Windows.Forms.Button(); + this.btnRegionCaptureSnapSizesDialogAdd = new System.Windows.Forms.Button(); + this.nudRegionCaptureSnapSizesHeight = new System.Windows.Forms.NumericUpDown(); + this.RegionCaptureSnapSizesHeight = new System.Windows.Forms.Label(); + this.nudRegionCaptureSnapSizesWidth = new System.Windows.Forms.NumericUpDown(); + this.lblRegionCaptureSnapSizesWidth = new System.Windows.Forms.Label(); + this.cbRegionCaptureUseDimming = new System.Windows.Forms.CheckBox(); + this.txtRegionCaptureCustomInfoText = new System.Windows.Forms.TextBox(); this.tpScreenRecorder = new System.Windows.Forms.TabPage(); this.cbScreenRecorderShowCursor = new System.Windows.Forms.CheckBox(); this.cbGIFEncoding = new System.Windows.Forms.ComboBox(); @@ -210,15 +219,22 @@ private void InitializeComponent() this.pgTaskSettings = new System.Windows.Forms.PropertyGrid(); this.chkUseDefaultAdvancedSettings = new System.Windows.Forms.CheckBox(); this.tttvMain = new ShareX.HelpersLib.TabToTreeView(); - this.btnRegionCaptureSnapSizesAdd = new System.Windows.Forms.Button(); - this.btnRegionCaptureSnapSizesRemove = new System.Windows.Forms.Button(); - this.pRegionCaptureSnapSizes = new System.Windows.Forms.Panel(); - this.lblRegionCaptureSnapSizesWidth = new System.Windows.Forms.Label(); - this.nudRegionCaptureSnapSizesWidth = new System.Windows.Forms.NumericUpDown(); - this.RegionCaptureSnapSizesHeight = new System.Windows.Forms.Label(); - this.nudRegionCaptureSnapSizesHeight = new System.Windows.Forms.NumericUpDown(); - this.btnRegionCaptureSnapSizesDialogAdd = new System.Windows.Forms.Button(); - this.btnRegionCaptureSnapSizesDialogCancel = new System.Windows.Forms.Button(); + this.cbRegionCaptureShowTips = new System.Windows.Forms.CheckBox(); + this.cbRegionCaptureShowInfo = new System.Windows.Forms.CheckBox(); + this.cbRegionCaptureShowMagnifier = new System.Windows.Forms.CheckBox(); + this.cbRegionCaptureUseSquareMagnifier = new System.Windows.Forms.CheckBox(); + this.lblRegionCaptureMagnifierPixelCount = new System.Windows.Forms.Label(); + this.nudRegionCaptureMagnifierPixelCount = new System.Windows.Forms.NumericUpDown(); + this.lblRegionCaptureMagnifierPixelSize = new System.Windows.Forms.Label(); + this.nudRegionCaptureMagnifierPixelSize = new System.Windows.Forms.NumericUpDown(); + this.cbRegionCaptureShowCrosshair = new System.Windows.Forms.CheckBox(); + this.cbRegionCaptureIsFixedSize = new System.Windows.Forms.CheckBox(); + this.flpRegionCaptureFixedSize = new System.Windows.Forms.FlowLayoutPanel(); + this.lblRegionCaptureFixedSizeWidth = new System.Windows.Forms.Label(); + this.nudRegionCaptureFixedSizeWidth = new System.Windows.Forms.NumericUpDown(); + this.lblRegionCaptureFixedSizeHeight = new System.Windows.Forms.Label(); + this.nudRegionCaptureFixedSizeHeight = new System.Windows.Forms.NumericUpDown(); + this.cbRegionCaptureShowFPS = new System.Windows.Forms.CheckBox(); this.tcTaskSettings.SuspendLayout(); this.tpTask.SuspendLayout(); this.cmsDestinations.SuspendLayout(); @@ -245,6 +261,9 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.nudScreenshotDelay)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudCaptureShadowOffset)).BeginInit(); this.tpRegionCapture.SuspendLayout(); + this.pRegionCaptureSnapSizes.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.nudRegionCaptureSnapSizesHeight)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudRegionCaptureSnapSizesWidth)).BeginInit(); this.tpScreenRecorder.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudScreenRecordFPS)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudScreenRecorderDuration)).BeginInit(); @@ -265,9 +284,11 @@ private void InitializeComponent() this.tpIndexer.SuspendLayout(); this.tpVideoThumbnailer.SuspendLayout(); this.tpAdvanced.SuspendLayout(); - this.pRegionCaptureSnapSizes.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.nudRegionCaptureSnapSizesWidth)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudRegionCaptureSnapSizesHeight)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudRegionCaptureMagnifierPixelCount)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudRegionCaptureMagnifierPixelSize)).BeginInit(); + this.flpRegionCaptureFixedSize.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.nudRegionCaptureFixedSizeWidth)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudRegionCaptureFixedSizeHeight)).BeginInit(); this.SuspendLayout(); // // cmsAfterCapture @@ -1005,6 +1026,19 @@ private void InitializeComponent() // // tpRegionCapture // + resources.ApplyResources(this.tpRegionCapture, "tpRegionCapture"); + this.tpRegionCapture.Controls.Add(this.cbRegionCaptureShowFPS); + this.tpRegionCapture.Controls.Add(this.flpRegionCaptureFixedSize); + this.tpRegionCapture.Controls.Add(this.cbRegionCaptureIsFixedSize); + this.tpRegionCapture.Controls.Add(this.cbRegionCaptureShowCrosshair); + this.tpRegionCapture.Controls.Add(this.nudRegionCaptureMagnifierPixelSize); + this.tpRegionCapture.Controls.Add(this.lblRegionCaptureMagnifierPixelSize); + this.tpRegionCapture.Controls.Add(this.nudRegionCaptureMagnifierPixelCount); + this.tpRegionCapture.Controls.Add(this.lblRegionCaptureMagnifierPixelCount); + this.tpRegionCapture.Controls.Add(this.cbRegionCaptureUseSquareMagnifier); + this.tpRegionCapture.Controls.Add(this.cbRegionCaptureShowMagnifier); + this.tpRegionCapture.Controls.Add(this.cbRegionCaptureShowInfo); + this.tpRegionCapture.Controls.Add(this.cbRegionCaptureShowTips); this.tpRegionCapture.Controls.Add(this.btnRegionCaptureSnapSizesRemove); this.tpRegionCapture.Controls.Add(this.btnRegionCaptureSnapSizesAdd); this.tpRegionCapture.Controls.Add(this.cbRegionCaptureSnapSizes); @@ -1024,10 +1058,23 @@ private void InitializeComponent() this.tpRegionCapture.Controls.Add(this.pRegionCaptureSnapSizes); this.tpRegionCapture.Controls.Add(this.cbRegionCaptureUseDimming); this.tpRegionCapture.Controls.Add(this.txtRegionCaptureCustomInfoText); - resources.ApplyResources(this.tpRegionCapture, "tpRegionCapture"); this.tpRegionCapture.Name = "tpRegionCapture"; this.tpRegionCapture.UseVisualStyleBackColor = true; // + // btnRegionCaptureSnapSizesRemove + // + resources.ApplyResources(this.btnRegionCaptureSnapSizesRemove, "btnRegionCaptureSnapSizesRemove"); + this.btnRegionCaptureSnapSizesRemove.Name = "btnRegionCaptureSnapSizesRemove"; + this.btnRegionCaptureSnapSizesRemove.UseVisualStyleBackColor = true; + this.btnRegionCaptureSnapSizesRemove.Click += new System.EventHandler(this.btnRegionCaptureSnapSizesRemove_Click); + // + // btnRegionCaptureSnapSizesAdd + // + resources.ApplyResources(this.btnRegionCaptureSnapSizesAdd, "btnRegionCaptureSnapSizesAdd"); + this.btnRegionCaptureSnapSizesAdd.Name = "btnRegionCaptureSnapSizesAdd"; + this.btnRegionCaptureSnapSizesAdd.UseVisualStyleBackColor = true; + this.btnRegionCaptureSnapSizesAdd.Click += new System.EventHandler(this.btnRegionCaptureSnapSizesAdd_Click); + // // cbRegionCaptureSnapSizes // this.cbRegionCaptureSnapSizes.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; @@ -1040,12 +1087,6 @@ private void InitializeComponent() resources.ApplyResources(this.lblRegionCaptureSnapSizes, "lblRegionCaptureSnapSizes"); this.lblRegionCaptureSnapSizes.Name = "lblRegionCaptureSnapSizes"; // - // txtRegionCaptureCustomInfoText - // - resources.ApplyResources(this.txtRegionCaptureCustomInfoText, "txtRegionCaptureCustomInfoText"); - this.txtRegionCaptureCustomInfoText.Name = "txtRegionCaptureCustomInfoText"; - this.txtRegionCaptureCustomInfoText.TextChanged += new System.EventHandler(this.txtRegionCaptureCustomInfoText_TextChanged); - // // cbRegionCaptureUseCustomInfoText // resources.ApplyResources(this.cbRegionCaptureUseCustomInfoText, "cbRegionCaptureUseCustomInfoText"); @@ -1053,13 +1094,6 @@ private void InitializeComponent() this.cbRegionCaptureUseCustomInfoText.UseVisualStyleBackColor = true; this.cbRegionCaptureUseCustomInfoText.CheckedChanged += new System.EventHandler(this.cbRegionCaptureUseCustomInfoText_CheckedChanged); // - // cbRegionCaptureUseDimming - // - resources.ApplyResources(this.cbRegionCaptureUseDimming, "cbRegionCaptureUseDimming"); - this.cbRegionCaptureUseDimming.Name = "cbRegionCaptureUseDimming"; - this.cbRegionCaptureUseDimming.UseVisualStyleBackColor = true; - this.cbRegionCaptureUseDimming.CheckedChanged += new System.EventHandler(this.cbRegionCaptureUseDimming_CheckedChanged); - // // cbRegionCaptureDetectControls // resources.ApplyResources(this.cbRegionCaptureDetectControls, "cbRegionCaptureDetectControls"); @@ -1133,6 +1167,95 @@ private void InitializeComponent() this.cbRegionCaptureMultiRegionMode.UseVisualStyleBackColor = true; this.cbRegionCaptureMultiRegionMode.CheckedChanged += new System.EventHandler(this.cbRegionCaptureMultiRegionMode_CheckedChanged); // + // pRegionCaptureSnapSizes + // + this.pRegionCaptureSnapSizes.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.pRegionCaptureSnapSizes.Controls.Add(this.btnRegionCaptureSnapSizesDialogCancel); + this.pRegionCaptureSnapSizes.Controls.Add(this.btnRegionCaptureSnapSizesDialogAdd); + this.pRegionCaptureSnapSizes.Controls.Add(this.nudRegionCaptureSnapSizesHeight); + this.pRegionCaptureSnapSizes.Controls.Add(this.RegionCaptureSnapSizesHeight); + this.pRegionCaptureSnapSizes.Controls.Add(this.nudRegionCaptureSnapSizesWidth); + this.pRegionCaptureSnapSizes.Controls.Add(this.lblRegionCaptureSnapSizesWidth); + resources.ApplyResources(this.pRegionCaptureSnapSizes, "pRegionCaptureSnapSizes"); + this.pRegionCaptureSnapSizes.Name = "pRegionCaptureSnapSizes"; + // + // btnRegionCaptureSnapSizesDialogCancel + // + resources.ApplyResources(this.btnRegionCaptureSnapSizesDialogCancel, "btnRegionCaptureSnapSizesDialogCancel"); + this.btnRegionCaptureSnapSizesDialogCancel.Name = "btnRegionCaptureSnapSizesDialogCancel"; + this.btnRegionCaptureSnapSizesDialogCancel.UseVisualStyleBackColor = true; + this.btnRegionCaptureSnapSizesDialogCancel.Click += new System.EventHandler(this.btnRegionCaptureSnapSizesDialogCancel_Click); + // + // btnRegionCaptureSnapSizesDialogAdd + // + resources.ApplyResources(this.btnRegionCaptureSnapSizesDialogAdd, "btnRegionCaptureSnapSizesDialogAdd"); + this.btnRegionCaptureSnapSizesDialogAdd.Name = "btnRegionCaptureSnapSizesDialogAdd"; + this.btnRegionCaptureSnapSizesDialogAdd.UseVisualStyleBackColor = true; + this.btnRegionCaptureSnapSizesDialogAdd.Click += new System.EventHandler(this.btnRegionCaptureSnapSizesDialogAdd_Click); + // + // nudRegionCaptureSnapSizesHeight + // + resources.ApplyResources(this.nudRegionCaptureSnapSizesHeight, "nudRegionCaptureSnapSizesHeight"); + this.nudRegionCaptureSnapSizesHeight.Maximum = new decimal(new int[] { + 10000, + 0, + 0, + 0}); + this.nudRegionCaptureSnapSizesHeight.Minimum = new decimal(new int[] { + 2, + 0, + 0, + 0}); + this.nudRegionCaptureSnapSizesHeight.Name = "nudRegionCaptureSnapSizesHeight"; + this.nudRegionCaptureSnapSizesHeight.Value = new decimal(new int[] { + 100, + 0, + 0, + 0}); + // + // RegionCaptureSnapSizesHeight + // + resources.ApplyResources(this.RegionCaptureSnapSizesHeight, "RegionCaptureSnapSizesHeight"); + this.RegionCaptureSnapSizesHeight.Name = "RegionCaptureSnapSizesHeight"; + // + // nudRegionCaptureSnapSizesWidth + // + resources.ApplyResources(this.nudRegionCaptureSnapSizesWidth, "nudRegionCaptureSnapSizesWidth"); + this.nudRegionCaptureSnapSizesWidth.Maximum = new decimal(new int[] { + 10000, + 0, + 0, + 0}); + this.nudRegionCaptureSnapSizesWidth.Minimum = new decimal(new int[] { + 2, + 0, + 0, + 0}); + this.nudRegionCaptureSnapSizesWidth.Name = "nudRegionCaptureSnapSizesWidth"; + this.nudRegionCaptureSnapSizesWidth.Value = new decimal(new int[] { + 100, + 0, + 0, + 0}); + // + // lblRegionCaptureSnapSizesWidth + // + resources.ApplyResources(this.lblRegionCaptureSnapSizesWidth, "lblRegionCaptureSnapSizesWidth"); + this.lblRegionCaptureSnapSizesWidth.Name = "lblRegionCaptureSnapSizesWidth"; + // + // cbRegionCaptureUseDimming + // + resources.ApplyResources(this.cbRegionCaptureUseDimming, "cbRegionCaptureUseDimming"); + this.cbRegionCaptureUseDimming.Name = "cbRegionCaptureUseDimming"; + this.cbRegionCaptureUseDimming.UseVisualStyleBackColor = true; + this.cbRegionCaptureUseDimming.CheckedChanged += new System.EventHandler(this.cbRegionCaptureUseDimming_CheckedChanged); + // + // txtRegionCaptureCustomInfoText + // + resources.ApplyResources(this.txtRegionCaptureCustomInfoText, "txtRegionCaptureCustomInfoText"); + this.txtRegionCaptureCustomInfoText.Name = "txtRegionCaptureCustomInfoText"; + this.txtRegionCaptureCustomInfoText.TextChanged += new System.EventHandler(this.txtRegionCaptureCustomInfoText_TextChanged); + // // tpScreenRecorder // this.tpScreenRecorder.Controls.Add(this.cbScreenRecorderShowCursor); @@ -1750,95 +1873,171 @@ private void InitializeComponent() this.tttvMain.TreeViewSize = 190; this.tttvMain.TabChanged += new ShareX.HelpersLib.TabToTreeView.TabChangedEventHandler(this.tttvMain_TabChanged); // - // btnRegionCaptureSnapSizesAdd + // cbRegionCaptureShowTips // - resources.ApplyResources(this.btnRegionCaptureSnapSizesAdd, "btnRegionCaptureSnapSizesAdd"); - this.btnRegionCaptureSnapSizesAdd.Name = "btnRegionCaptureSnapSizesAdd"; - this.btnRegionCaptureSnapSizesAdd.UseVisualStyleBackColor = true; - this.btnRegionCaptureSnapSizesAdd.Click += new System.EventHandler(this.btnRegionCaptureSnapSizesAdd_Click); + resources.ApplyResources(this.cbRegionCaptureShowTips, "cbRegionCaptureShowTips"); + this.cbRegionCaptureShowTips.Name = "cbRegionCaptureShowTips"; + this.cbRegionCaptureShowTips.UseVisualStyleBackColor = true; // - // btnRegionCaptureSnapSizesRemove + // cbRegionCaptureShowInfo // - resources.ApplyResources(this.btnRegionCaptureSnapSizesRemove, "btnRegionCaptureSnapSizesRemove"); - this.btnRegionCaptureSnapSizesRemove.Name = "btnRegionCaptureSnapSizesRemove"; - this.btnRegionCaptureSnapSizesRemove.UseVisualStyleBackColor = true; - this.btnRegionCaptureSnapSizesRemove.Click += new System.EventHandler(this.btnRegionCaptureSnapSizesRemove_Click); + resources.ApplyResources(this.cbRegionCaptureShowInfo, "cbRegionCaptureShowInfo"); + this.cbRegionCaptureShowInfo.Name = "cbRegionCaptureShowInfo"; + this.cbRegionCaptureShowInfo.UseVisualStyleBackColor = true; // - // pRegionCaptureSnapSizes + // cbRegionCaptureShowMagnifier // - this.pRegionCaptureSnapSizes.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.pRegionCaptureSnapSizes.Controls.Add(this.btnRegionCaptureSnapSizesDialogCancel); - this.pRegionCaptureSnapSizes.Controls.Add(this.btnRegionCaptureSnapSizesDialogAdd); - this.pRegionCaptureSnapSizes.Controls.Add(this.nudRegionCaptureSnapSizesHeight); - this.pRegionCaptureSnapSizes.Controls.Add(this.RegionCaptureSnapSizesHeight); - this.pRegionCaptureSnapSizes.Controls.Add(this.nudRegionCaptureSnapSizesWidth); - this.pRegionCaptureSnapSizes.Controls.Add(this.lblRegionCaptureSnapSizesWidth); - resources.ApplyResources(this.pRegionCaptureSnapSizes, "pRegionCaptureSnapSizes"); - this.pRegionCaptureSnapSizes.Name = "pRegionCaptureSnapSizes"; + resources.ApplyResources(this.cbRegionCaptureShowMagnifier, "cbRegionCaptureShowMagnifier"); + this.cbRegionCaptureShowMagnifier.Name = "cbRegionCaptureShowMagnifier"; + this.cbRegionCaptureShowMagnifier.UseVisualStyleBackColor = true; // - // lblRegionCaptureSnapSizesWidth + // cbRegionCaptureUseSquareMagnifier // - resources.ApplyResources(this.lblRegionCaptureSnapSizesWidth, "lblRegionCaptureSnapSizesWidth"); - this.lblRegionCaptureSnapSizesWidth.Name = "lblRegionCaptureSnapSizesWidth"; + resources.ApplyResources(this.cbRegionCaptureUseSquareMagnifier, "cbRegionCaptureUseSquareMagnifier"); + this.cbRegionCaptureUseSquareMagnifier.Name = "cbRegionCaptureUseSquareMagnifier"; + this.cbRegionCaptureUseSquareMagnifier.UseVisualStyleBackColor = true; // - // nudRegionCaptureSnapSizesWidth + // lblRegionCaptureMagnifierPixelCount // - resources.ApplyResources(this.nudRegionCaptureSnapSizesWidth, "nudRegionCaptureSnapSizesWidth"); - this.nudRegionCaptureSnapSizesWidth.Maximum = new decimal(new int[] { - 10000, - 0, - 0, - 0}); - this.nudRegionCaptureSnapSizesWidth.Minimum = new decimal(new int[] { + resources.ApplyResources(this.lblRegionCaptureMagnifierPixelCount, "lblRegionCaptureMagnifierPixelCount"); + this.lblRegionCaptureMagnifierPixelCount.Name = "lblRegionCaptureMagnifierPixelCount"; + // + // nudRegionCaptureMagnifierPixelCount + // + this.nudRegionCaptureMagnifierPixelCount.Increment = new decimal(new int[] { 2, 0, 0, 0}); - this.nudRegionCaptureSnapSizesWidth.Name = "nudRegionCaptureSnapSizesWidth"; - this.nudRegionCaptureSnapSizesWidth.Value = new decimal(new int[] { - 100, + resources.ApplyResources(this.nudRegionCaptureMagnifierPixelCount, "nudRegionCaptureMagnifierPixelCount"); + this.nudRegionCaptureMagnifierPixelCount.Maximum = new decimal(new int[] { + 35, + 0, + 0, + 0}); + this.nudRegionCaptureMagnifierPixelCount.Minimum = new decimal(new int[] { + 1, + 0, + 0, + 0}); + this.nudRegionCaptureMagnifierPixelCount.Name = "nudRegionCaptureMagnifierPixelCount"; + this.nudRegionCaptureMagnifierPixelCount.Value = new decimal(new int[] { + 1, 0, 0, 0}); // - // RegionCaptureSnapSizesHeight + // lblRegionCaptureMagnifierPixelSize // - resources.ApplyResources(this.RegionCaptureSnapSizesHeight, "RegionCaptureSnapSizesHeight"); - this.RegionCaptureSnapSizesHeight.Name = "RegionCaptureSnapSizesHeight"; + resources.ApplyResources(this.lblRegionCaptureMagnifierPixelSize, "lblRegionCaptureMagnifierPixelSize"); + this.lblRegionCaptureMagnifierPixelSize.Name = "lblRegionCaptureMagnifierPixelSize"; // - // nudRegionCaptureSnapSizesHeight + // nudRegionCaptureMagnifierPixelSize // - resources.ApplyResources(this.nudRegionCaptureSnapSizesHeight, "nudRegionCaptureSnapSizesHeight"); - this.nudRegionCaptureSnapSizesHeight.Maximum = new decimal(new int[] { - 10000, + resources.ApplyResources(this.nudRegionCaptureMagnifierPixelSize, "nudRegionCaptureMagnifierPixelSize"); + this.nudRegionCaptureMagnifierPixelSize.Maximum = new decimal(new int[] { + 30, 0, 0, 0}); - this.nudRegionCaptureSnapSizesHeight.Minimum = new decimal(new int[] { + this.nudRegionCaptureMagnifierPixelSize.Minimum = new decimal(new int[] { 2, 0, 0, 0}); - this.nudRegionCaptureSnapSizesHeight.Name = "nudRegionCaptureSnapSizesHeight"; - this.nudRegionCaptureSnapSizesHeight.Value = new decimal(new int[] { - 100, + this.nudRegionCaptureMagnifierPixelSize.Name = "nudRegionCaptureMagnifierPixelSize"; + this.nudRegionCaptureMagnifierPixelSize.Value = new decimal(new int[] { + 2, 0, 0, 0}); // - // btnRegionCaptureSnapSizesDialogAdd + // cbRegionCaptureShowCrosshair // - resources.ApplyResources(this.btnRegionCaptureSnapSizesDialogAdd, "btnRegionCaptureSnapSizesDialogAdd"); - this.btnRegionCaptureSnapSizesDialogAdd.Name = "btnRegionCaptureSnapSizesDialogAdd"; - this.btnRegionCaptureSnapSizesDialogAdd.UseVisualStyleBackColor = true; - this.btnRegionCaptureSnapSizesDialogAdd.Click += new System.EventHandler(this.btnRegionCaptureSnapSizesDialogAdd_Click); + resources.ApplyResources(this.cbRegionCaptureShowCrosshair, "cbRegionCaptureShowCrosshair"); + this.cbRegionCaptureShowCrosshair.Name = "cbRegionCaptureShowCrosshair"; + this.cbRegionCaptureShowCrosshair.UseVisualStyleBackColor = true; // - // btnRegionCaptureSnapSizesDialogCancel + // cbRegionCaptureIsFixedSize // - resources.ApplyResources(this.btnRegionCaptureSnapSizesDialogCancel, "btnRegionCaptureSnapSizesDialogCancel"); - this.btnRegionCaptureSnapSizesDialogCancel.Name = "btnRegionCaptureSnapSizesDialogCancel"; - this.btnRegionCaptureSnapSizesDialogCancel.UseVisualStyleBackColor = true; - this.btnRegionCaptureSnapSizesDialogCancel.Click += new System.EventHandler(this.btnRegionCaptureSnapSizesDialogCancel_Click); + resources.ApplyResources(this.cbRegionCaptureIsFixedSize, "cbRegionCaptureIsFixedSize"); + this.cbRegionCaptureIsFixedSize.Name = "cbRegionCaptureIsFixedSize"; + this.cbRegionCaptureIsFixedSize.UseVisualStyleBackColor = true; + // + // flpRegionCaptureFixedSize + // + resources.ApplyResources(this.flpRegionCaptureFixedSize, "flpRegionCaptureFixedSize"); + this.flpRegionCaptureFixedSize.Controls.Add(this.lblRegionCaptureFixedSizeWidth); + this.flpRegionCaptureFixedSize.Controls.Add(this.nudRegionCaptureFixedSizeWidth); + this.flpRegionCaptureFixedSize.Controls.Add(this.lblRegionCaptureFixedSizeHeight); + this.flpRegionCaptureFixedSize.Controls.Add(this.nudRegionCaptureFixedSizeHeight); + this.flpRegionCaptureFixedSize.Name = "flpRegionCaptureFixedSize"; + // + // lblRegionCaptureFixedSizeWidth + // + resources.ApplyResources(this.lblRegionCaptureFixedSizeWidth, "lblRegionCaptureFixedSizeWidth"); + this.lblRegionCaptureFixedSizeWidth.Name = "lblRegionCaptureFixedSizeWidth"; + // + // nudRegionCaptureFixedSizeWidth + // + this.nudRegionCaptureFixedSizeWidth.Increment = new decimal(new int[] { + 10, + 0, + 0, + 0}); + resources.ApplyResources(this.nudRegionCaptureFixedSizeWidth, "nudRegionCaptureFixedSizeWidth"); + this.nudRegionCaptureFixedSizeWidth.Maximum = new decimal(new int[] { + 10000, + 0, + 0, + 0}); + this.nudRegionCaptureFixedSizeWidth.Minimum = new decimal(new int[] { + 10, + 0, + 0, + 0}); + this.nudRegionCaptureFixedSizeWidth.Name = "nudRegionCaptureFixedSizeWidth"; + this.nudRegionCaptureFixedSizeWidth.Value = new decimal(new int[] { + 10, + 0, + 0, + 0}); + // + // lblRegionCaptureFixedSizeHeight + // + resources.ApplyResources(this.lblRegionCaptureFixedSizeHeight, "lblRegionCaptureFixedSizeHeight"); + this.lblRegionCaptureFixedSizeHeight.Name = "lblRegionCaptureFixedSizeHeight"; + // + // nudRegionCaptureFixedSizeHeight + // + this.nudRegionCaptureFixedSizeHeight.Increment = new decimal(new int[] { + 10, + 0, + 0, + 0}); + resources.ApplyResources(this.nudRegionCaptureFixedSizeHeight, "nudRegionCaptureFixedSizeHeight"); + this.nudRegionCaptureFixedSizeHeight.Maximum = new decimal(new int[] { + 10000, + 0, + 0, + 0}); + this.nudRegionCaptureFixedSizeHeight.Minimum = new decimal(new int[] { + 10, + 0, + 0, + 0}); + this.nudRegionCaptureFixedSizeHeight.Name = "nudRegionCaptureFixedSizeHeight"; + this.nudRegionCaptureFixedSizeHeight.Value = new decimal(new int[] { + 10, + 0, + 0, + 0}); + // + // cbRegionCaptureShowFPS + // + resources.ApplyResources(this.cbRegionCaptureShowFPS, "cbRegionCaptureShowFPS"); + this.cbRegionCaptureShowFPS.Name = "cbRegionCaptureShowFPS"; + this.cbRegionCaptureShowFPS.UseVisualStyleBackColor = true; // // TaskSettingsForm // @@ -1886,6 +2085,10 @@ private void InitializeComponent() ((System.ComponentModel.ISupportInitialize)(this.nudCaptureShadowOffset)).EndInit(); this.tpRegionCapture.ResumeLayout(false); this.tpRegionCapture.PerformLayout(); + this.pRegionCaptureSnapSizes.ResumeLayout(false); + this.pRegionCaptureSnapSizes.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.nudRegionCaptureSnapSizesHeight)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudRegionCaptureSnapSizesWidth)).EndInit(); this.tpScreenRecorder.ResumeLayout(false); this.tpScreenRecorder.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudScreenRecordFPS)).EndInit(); @@ -1914,10 +2117,12 @@ private void InitializeComponent() this.tpVideoThumbnailer.ResumeLayout(false); this.tpAdvanced.ResumeLayout(false); this.tpAdvanced.PerformLayout(); - this.pRegionCaptureSnapSizes.ResumeLayout(false); - this.pRegionCaptureSnapSizes.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.nudRegionCaptureSnapSizesWidth)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.nudRegionCaptureSnapSizesHeight)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudRegionCaptureMagnifierPixelCount)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudRegionCaptureMagnifierPixelSize)).EndInit(); + this.flpRegionCaptureFixedSize.ResumeLayout(false); + this.flpRegionCaptureFixedSize.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.nudRegionCaptureFixedSizeWidth)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.nudRegionCaptureFixedSizeHeight)).EndInit(); this.ResumeLayout(false); } @@ -2113,5 +2318,21 @@ private void InitializeComponent() private System.Windows.Forms.Label RegionCaptureSnapSizesHeight; private System.Windows.Forms.NumericUpDown nudRegionCaptureSnapSizesWidth; private System.Windows.Forms.Label lblRegionCaptureSnapSizesWidth; + private System.Windows.Forms.CheckBox cbRegionCaptureShowTips; + private System.Windows.Forms.CheckBox cbRegionCaptureShowInfo; + private System.Windows.Forms.CheckBox cbRegionCaptureShowMagnifier; + private System.Windows.Forms.Label lblRegionCaptureMagnifierPixelCount; + private System.Windows.Forms.CheckBox cbRegionCaptureUseSquareMagnifier; + private System.Windows.Forms.NumericUpDown nudRegionCaptureMagnifierPixelCount; + private System.Windows.Forms.NumericUpDown nudRegionCaptureMagnifierPixelSize; + private System.Windows.Forms.Label lblRegionCaptureMagnifierPixelSize; + private System.Windows.Forms.CheckBox cbRegionCaptureShowCrosshair; + private System.Windows.Forms.FlowLayoutPanel flpRegionCaptureFixedSize; + private System.Windows.Forms.Label lblRegionCaptureFixedSizeWidth; + private System.Windows.Forms.NumericUpDown nudRegionCaptureFixedSizeWidth; + private System.Windows.Forms.Label lblRegionCaptureFixedSizeHeight; + private System.Windows.Forms.CheckBox cbRegionCaptureIsFixedSize; + private System.Windows.Forms.NumericUpDown nudRegionCaptureFixedSizeHeight; + private System.Windows.Forms.CheckBox cbRegionCaptureShowFPS; } } \ No newline at end of file diff --git a/ShareX/Forms/TaskSettingsForm.resx b/ShareX/Forms/TaskSettingsForm.resx index 8f312451d..be66527c1 100644 --- a/ShareX/Forms/TaskSettingsForm.resx +++ b/ShareX/Forms/TaskSettingsForm.resx @@ -297,1521 +297,6 @@ System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - cbOverrideCustomUploader - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTask - - - 0 - - - chkOverrideCustomUploader - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTask - - - 1 - - - chkOverrideFTP - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTask - - - 2 - - - cboFTPaccounts - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTask - - - 3 - - - btnAfterCapture - - - ShareX.HelpersLib.MenuButton, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpTask - - - 5 - - - btnAfterUpload - - - ShareX.HelpersLib.MenuButton, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpTask - - - 6 - - - btnDestinations - - - ShareX.HelpersLib.MenuButton, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpTask - - - 7 - - - btnTask - - - ShareX.HelpersLib.MenuButton, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - tpTask - - - 9 - - - 4, 22 - - - 3, 3, 3, 3 - - - 571, 360 - - - 0 - - - Task - - - tpTask - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTaskSettings - - - 0 - - - panelGeneral - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGeneral - - - 0 - - - chkUseDefaultGeneralSettings - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGeneral - - - 1 - - - 4, 22 - - - 571, 360 - - - 7 - - - General - - - tpGeneral - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTaskSettings - - - 1 - - - tcImage - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImage - - - 0 - - - 4, 22 - - - 3, 3, 3, 3 - - - 571, 360 - - - 1 - - - Image - - - tpImage - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTaskSettings - - - 2 - - - pCapture - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCaptureGeneral - - - 0 - - - chkUseDefaultCaptureSettings - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCaptureGeneral - - - 1 - - - 4, 22 - - - 557, 328 - - - 0 - - - tpCaptureGeneral - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCapture - - - 0 - - - NoControl - - - 528, 218 - - - 24, 24 - - - 17 - - - - - - - btnRegionCaptureSnapSizesRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 0 - - - 504, 218 - - - 24, 24 - - - 16 - - - + - - - btnRegionCaptureSnapSizesAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 1 - - - 336, 220 - - - 167, 21 - - - 15 - - - cbRegionCaptureSnapSizes - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 2 - - - True - - - 5, 224 - - - 207, 13 - - - 14 - - - Sizes region will snap when hold "Alt" key: - - - lblRegionCaptureSnapSizes - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 3 - - - True - - - 8, 200 - - - 181, 17 - - - 12 - - - Use custom info text near cursor: - - - cbRegionCaptureUseCustomInfoText - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 4 - - - True - - - 8, 152 - - - 225, 17 - - - 10 - - - Also detect control regions inside windows - - - cbRegionCaptureDetectControls - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 5 - - - True - - - 8, 128 - - - 283, 17 - - - 9 - - - Detect window regions and allow cursor hover capture - - - cbRegionCaptureDetectWindows - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 6 - - - 336, 100 - - - 216, 21 - - - 8 - - - cbRegionCaptureMouse5ClickAction - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 7 - - - True - - - NoControl - - - 5, 104 - - - 108, 13 - - - 7 - - - Mouse 5 click action: - - - lblRegionCaptureMouse5ClickAction - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 8 - - - 336, 76 - - - 216, 21 - - - 6 - - - cbRegionCaptureMouse4ClickAction - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 9 - - - True - - - NoControl - - - 5, 80 - - - 108, 13 - - - 5 - - - Mouse 4 click action: - - - lblRegionCaptureMouse4ClickAction - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 10 - - - 336, 52 - - - 216, 21 - - - 4 - - - cbRegionCaptureMouseMiddleClickAction - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 11 - - - True - - - NoControl - - - 5, 56 - - - 132, 13 - - - 3 - - - Mouse middle click action: - - - lblRegionCaptureMouseMiddleClickAction - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 12 - - - 336, 28 - - - 216, 21 - - - 2 - - - cbRegionCaptureMouseRightClickAction - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 13 - - - True - - - 5, 32 - - - 122, 13 - - - 1 - - - Mouse right click action: - - - lblRegionCaptureMouseRightClickAction - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 14 - - - True - - - 8, 8 - - - 360, 17 - - - 0 - - - Use multi region mode which will also allow resizing and moving regions - - - cbRegionCaptureMultiRegionMode - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 15 - - - 120, 48 - - - 104, 24 - - - 5 - - - Cancel - - - btnRegionCaptureSnapSizesDialogCancel - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pRegionCaptureSnapSizes - - - 0 - - - 8, 48 - - - 104, 24 - - - 4 - - - Add - - - btnRegionCaptureSnapSizesDialogAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pRegionCaptureSnapSizes - - - 1 - - - 120, 24 - - - 104, 20 - - - 3 - - - Center - - - nudRegionCaptureSnapSizesHeight - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pRegionCaptureSnapSizes - - - 2 - - - True - - - 117, 8 - - - 41, 13 - - - 2 - - - Height: - - - RegionCaptureSnapSizesHeight - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pRegionCaptureSnapSizes - - - 3 - - - 8, 24 - - - 104, 20 - - - 1 - - - Center - - - nudRegionCaptureSnapSizesWidth - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pRegionCaptureSnapSizes - - - 4 - - - True - - - NoControl - - - 5, 8 - - - 38, 13 - - - 0 - - - Width: - - - lblRegionCaptureSnapSizesWidth - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pRegionCaptureSnapSizes - - - 5 - - - 328, 136 - - - 232, 112 - - - 18 - - - False - - - pRegionCaptureSnapSizes - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 16 - - - True - - - 8, 176 - - - 394, 17 - - - 11 - - - Dim background so selection can be diffrentiated easily (affects startup speed) - - - cbRegionCaptureUseDimming - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 17 - - - 336, 198 - - - 216, 20 - - - 13 - - - txtRegionCaptureCustomInfoText - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpRegionCapture - - - 18 - - - 4, 22 - - - 3, 3, 3, 3 - - - 557, 328 - - - 1 - - - Region capture - - - tpRegionCapture - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCapture - - - 1 - - - cbScreenRecorderShowCursor - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 0 - - - cbGIFEncoding - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 1 - - - lblGIFEncoding - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 2 - - - btnScreenRecorderFFmpegOptions - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 3 - - - lblScreenRecorderStartDelay - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 4 - - - chkScreenRecordAutoStart - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 5 - - - lblScreenRecorderFixedDuration - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 6 - - - nudScreenRecordFPS - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 7 - - - lblScreenRecordFPS - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 8 - - - chkRunScreencastCLI - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 9 - - - btnEncoderConfig - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 10 - - - cboEncoder - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 11 - - - nudScreenRecorderDuration - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 12 - - - nudScreenRecorderStartDelay - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 13 - - - cbScreenRecorderFixedDuration - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 14 - - - nudGIFFPS - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 15 - - - lblGIFFPS - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScreenRecorder - - - 16 - - - 4, 22 - - - 3, 3, 3, 3 - - - 557, 328 - - - 2 - - - Screen recorder - - - tpScreenRecorder - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCapture - - - 2 - - - pgScrollingCapture - - - System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpScrollingCapture - - - 0 - - - 4, 22 - - - 3, 3, 3, 3 - - - 557, 328 - - - 4 - - - Scrolling capture - - - tpScrollingCapture - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcCapture - - - 3 - - - Fill - - - 3, 3 - - - 565, 354 - - - 0 - - - tcCapture - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpCapture - - - 0 - - - 4, 22 - - - 3, 3, 3, 3 - - - 571, 360 - - - 2 - - - Capture - - - tpCapture - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTaskSettings - - - 3 - - - tcUpload - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUpload - - - 0 - - - 4, 22 - - - 3, 3, 3, 3 - - - 571, 360 - - - 4 - - - Upload - - - tpUpload - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTaskSettings - - - 4 - - - pActions - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpActions - - - 0 - - - chkUseDefaultActions - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpActions - - - 1 - - - 4, 22 - - - 571, 360 - - - 3 - - - Actions - - - tpActions - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTaskSettings - - - 5 - - - cbWatchFolderEnabled - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpWatchFolders - - - 0 - - - lvWatchFolderList - - - System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpWatchFolders - - - 1 - - - btnWatchFolderRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpWatchFolders - - - 2 - - - btnWatchFolderAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpWatchFolders - - - 3 - - - 4, 22 - - - 3, 3, 3, 3 - - - 571, 360 - - - 5 - - - Watch folders - - - tpWatchFolders - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTaskSettings - - - 6 - - - tcTools - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTools - - - 0 - - - 4, 22 - - - 3, 3, 3, 3 - - - 571, 360 - - - 8 - - - Tools - - - tpTools - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTaskSettings - - - 7 - - - pgTaskSettings - - - System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAdvanced - - - 0 - - - chkUseDefaultAdvancedSettings - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpAdvanced - - - 1 - - - 4, 22 - - - 3, 3, 3, 3 - - - 571, 360 - - - 6 - - - Advanced - - - tpAdvanced - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTaskSettings - - - 8 - - - Right - - - 192, 3 - - - 579, 386 - - - 1 - - - False - - - tcTaskSettings - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - $this - - - 4 - False @@ -1989,6 +474,36 @@ 396, 17 + + 181, 22 + + + Image uploaders + + + 181, 22 + + + Text uploaders + + + 181, 22 + + + File uploaders + + + 181, 22 + + + URL shorteners + + + 181, 22 + + + URL sharing services + 182, 114 @@ -2022,36 +537,6 @@ 7 - - 181, 22 - - - Image uploaders - - - 181, 22 - - - Text uploaders - - - 181, 22 - - - File uploaders - - - 181, 22 - - - URL shorteners - - - 181, 22 - - - URL sharing services - NoControl @@ -2082,76 +567,31 @@ 9 - - lblAfterTaskNotification + + 4, 22 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 3, 3, 3 - - panelGeneral + + 571, 360 - + 0 - - cboPopUpNotification + + Task - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tpTask - - panelGeneral + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 1 + + tcTaskSettings - - cbPlaySoundAfterUpload - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - panelGeneral - - - 2 - - - cbPlaySoundAfterCapture - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - panelGeneral - - - 3 - - - Fill - - - 0, 25 - - - 571, 335 - - - 1 - - - panelGeneral - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpGeneral - - + 0 @@ -2265,6 +705,30 @@ 3 + + Fill + + + 0, 25 + + + 571, 335 + + + 1 + + + panelGeneral + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpGeneral + + + 0 + True @@ -2301,303 +765,30 @@ 1 - - tpQuality - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImage - - - 0 - - - tpEffects - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImage - - - 1 - - - tpThumbnail - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImage - - - 2 - - - Fill - - - 3, 3 - - - 565, 354 - - - 0 - - - tcImage - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpImage - - - 0 - - - pImage - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpQuality - - - 0 - - - chkUseDefaultImageSettings - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpQuality - - - 1 - - + 4, 22 - - 557, 328 + + 571, 360 - - 0 - - - tpQuality - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcImage - - - 0 - - - lblImageFormat - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pImage - - - 0 - - - cbImageFileExist - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pImage - - - 1 - - - lblUseImageFormat2After - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pImage - - - 2 - - - lblImageFileExist - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pImage - - - 3 - - - nudUseImageFormat2After - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pImage - - - 4 - - - lblImageFormat2 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pImage - - - 5 - - - lblUseImageFormat2AfterHint - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pImage - - - 6 - - - nudImageJPEGQuality - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pImage - - + 7 - - cbImageFormat + + General - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tpGeneral - - pImage + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8 + + tcTaskSettings - - cbImageFormat2 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pImage - - - 9 - - - lblImageJPEGQualityHint - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pImage - - - 10 - - - lblImageGIFQuality - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pImage - - - 11 - - - lblImageJPEGQuality - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pImage - - - 12 - - - cbImageGIFQuality - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pImage - - - 13 - - - Fill - - - 0, 25 - - - 557, 303 - - + 1 - - pImage - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpQuality - - - 0 - True @@ -2970,6 +1161,30 @@ 13 + + Fill + + + 0, 25 + + + 557, 303 + + + 1 + + + pImage + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpQuality + + + 0 + True @@ -3006,80 +1221,26 @@ 1 - - lblImageEffectsNote - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEffects - - - 0 - - - chkShowImageEffectsWindowAfterCapture - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEffects - - - 1 - - - cbImageEffectOnlyRegionCapture - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEffects - - - 2 - - - btnImageEffects - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpEffects - - - 3 - - + 4, 22 - - 3, 3, 3, 3 - - + 557, 328 - - 2 + + 0 - - Effects + + tpQuality - - tpEffects - - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImage - - 1 + + 0 True @@ -3198,128 +1359,32 @@ 3 - - cbThumbnailIfSmaller - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpThumbnail - - - 0 - - - lblThumbnailNamePreview - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpThumbnail - - - 1 - - - lblThumbnailName - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpThumbnail - - - 2 - - - txtThumbnailName - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpThumbnail - - - 3 - - - lblThumbnailHeight - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpThumbnail - - - 4 - - - lblThumbnailWidth - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpThumbnail - - - 5 - - - nudThumbnailHeight - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpThumbnail - - - 6 - - - nudThumbnailWidth - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpThumbnail - - - 7 - - + 4, 22 - + 3, 3, 3, 3 - + 557, 328 - - 3 + + 2 - - Thumbnail + + Effects - - tpThumbnail + + tpEffects - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcImage - - 2 + + 1 True @@ -3540,269 +1605,83 @@ 7 - - btnCaptureCustomRegionSelectRectangle + + 4, 22 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 3, 3, 3 - - pCapture + + 557, 328 - - 0 - - - lblCaptureCustomRegion - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCapture - - - 1 - - - lblCaptureCustomRegionWidth - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCapture - - - 2 - - - lblCaptureCustomRegionHeight - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCapture - - + 3 - - lblCaptureCustomRegionY + + Thumbnail - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tpThumbnail - - pCapture + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 4 + + tcImage - - lblCaptureCustomRegionX + + 2 - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCapture - - - 5 - - - nudCaptureCustomRegionHeight - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCapture - - - 6 - - - nudCaptureCustomRegionWidth - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCapture - - - 7 - - - nudCaptureCustomRegionY - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCapture - - - 8 - - - nudCaptureCustomRegionX - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCapture - - - 9 - - - cbShowCursor - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCapture - - - 10 - - - lblCaptureShadowOffset - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCapture - - - 11 - - - cbCaptureTransparent - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCapture - - - 12 - - - cbCaptureAutoHideTaskbar - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCapture - - - 13 - - - cbCaptureShadow - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCapture - - - 14 - - - lblScreenshotDelayInfo - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCapture - - - 15 - - - cbCaptureClientArea - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCapture - - - 16 - - - nudScreenshotDelay - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCapture - - - 17 - - - nudCaptureShadowOffset - - - System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCapture - - - 18 - - - cbScreenshotDelay - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pCapture - - - 19 - - + Fill - - 0, 25 + + 3, 3 - - 557, 303 + + 565, 354 - + + 0 + + + tcImage + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpImage + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 571, 360 + + 1 - - pCapture + + Image - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + tpImage - - tpCaptureGeneral + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 0 + + tcTaskSettings + + + 2 232, 263 @@ -4347,6 +2226,30 @@ 19 + + Fill + + + 0, 25 + + + 557, 303 + + + 1 + + + pCapture + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpCaptureGeneral + + + 0 + True @@ -4383,6 +2286,1128 @@ 1 + + 4, 22 + + + 557, 328 + + + 0 + + + tpCaptureGeneral + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcCapture + + + 0 + + + True + + + 0, 450 + + + True + + + 8, 426 + + + 155, 17 + + + 30 + + + Show FPS in top left corner + + + cbRegionCaptureShowFPS + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 0 + + + True + + + GrowAndShrink + + + Left + + + True + + + 0, 6 + + + 0, 0, 0, 0 + + + 38, 13 + + + 0 + + + Width: + + + lblRegionCaptureFixedSizeWidth + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flpRegionCaptureFixedSize + + + 0 + + + 41, 3 + + + 64, 20 + + + 1 + + + Center + + + nudRegionCaptureFixedSizeWidth + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flpRegionCaptureFixedSize + + + 1 + + + Left + + + True + + + 111, 6 + + + 3, 0, 0, 0 + + + 41, 13 + + + 2 + + + Height: + + + lblRegionCaptureFixedSizeHeight + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flpRegionCaptureFixedSize + + + 2 + + + 155, 3 + + + 64, 20 + + + 3 + + + Center + + + nudRegionCaptureFixedSizeHeight + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + flpRegionCaptureFixedSize + + + 3 + + + 312, 397 + + + 222, 26 + + + 29 + + + False + + + flpRegionCaptureFixedSize + + + System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 1 + + + True + + + 8, 402 + + + 136, 17 + + + 28 + + + Fixed size region mode: + + + cbRegionCaptureIsFixedSize + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 2 + + + True + + + 8, 381 + + + 158, 17 + + + 27 + + + Show screen wide crosshair + + + cbRegionCaptureShowCrosshair + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 3 + + + 312, 362 + + + 64, 20 + + + 26 + + + Center + + + nudRegionCaptureMagnifierPixelSize + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 4 + + + True + + + 5, 362 + + + 98, 13 + + + 25 + + + Magnifier pixel size: + + + lblRegionCaptureMagnifierPixelSize + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 5 + + + 312, 338 + + + 64, 20 + + + 24 + + + Center + + + nudRegionCaptureMagnifierPixelCount + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 6 + + + True + + + 5, 342 + + + 107, 13 + + + 23 + + + Magnifier pixel count: + + + lblRegionCaptureMagnifierPixelCount + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 7 + + + True + + + 8, 318 + + + 234, 17 + + + 22 + + + Use square shape magnifier instead of circle + + + cbRegionCaptureUseSquareMagnifier + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 8 + + + True + + + 8, 294 + + + 154, 17 + + + 21 + + + Show magnifier near cursor + + + cbRegionCaptureShowMagnifier + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 9 + + + True + + + 8, 270 + + + 154, 17 + + + 20 + + + Show position and size info + + + cbRegionCaptureShowInfo + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 10 + + + True + + + 8, 246 + + + 218, 17 + + + 19 + + + Show hotkeys and tips in right top corner + + + cbRegionCaptureShowTips + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 11 + + + NoControl + + + 504, 218 + + + 24, 24 + + + 17 + + + - + + + btnRegionCaptureSnapSizesRemove + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 12 + + + 480, 218 + + + 24, 24 + + + 16 + + + + + + + btnRegionCaptureSnapSizesAdd + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 13 + + + 312, 220 + + + 167, 21 + + + 15 + + + cbRegionCaptureSnapSizes + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 14 + + + True + + + 5, 224 + + + 207, 13 + + + 14 + + + Sizes region will snap when hold "Alt" key: + + + lblRegionCaptureSnapSizes + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 15 + + + True + + + 8, 200 + + + 181, 17 + + + 12 + + + Use custom info text near cursor: + + + cbRegionCaptureUseCustomInfoText + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 16 + + + True + + + 8, 152 + + + 225, 17 + + + 10 + + + Also detect control regions inside windows + + + cbRegionCaptureDetectControls + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 17 + + + True + + + 8, 128 + + + 283, 17 + + + 9 + + + Detect window regions and allow cursor hover capture + + + cbRegionCaptureDetectWindows + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 18 + + + 312, 100 + + + 216, 21 + + + 8 + + + cbRegionCaptureMouse5ClickAction + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 19 + + + True + + + NoControl + + + 5, 104 + + + 108, 13 + + + 7 + + + Mouse 5 click action: + + + lblRegionCaptureMouse5ClickAction + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 20 + + + 312, 76 + + + 216, 21 + + + 6 + + + cbRegionCaptureMouse4ClickAction + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 21 + + + True + + + NoControl + + + 5, 80 + + + 108, 13 + + + 5 + + + Mouse 4 click action: + + + lblRegionCaptureMouse4ClickAction + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 22 + + + 312, 52 + + + 216, 21 + + + 4 + + + cbRegionCaptureMouseMiddleClickAction + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 23 + + + True + + + NoControl + + + 5, 56 + + + 132, 13 + + + 3 + + + Mouse middle click action: + + + lblRegionCaptureMouseMiddleClickAction + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 24 + + + 312, 28 + + + 216, 21 + + + 2 + + + cbRegionCaptureMouseRightClickAction + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 25 + + + True + + + 5, 32 + + + 122, 13 + + + 1 + + + Mouse right click action: + + + lblRegionCaptureMouseRightClickAction + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 26 + + + True + + + 8, 8 + + + 360, 17 + + + 0 + + + Use multi region mode which will also allow resizing and moving regions + + + cbRegionCaptureMultiRegionMode + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 27 + + + 120, 48 + + + 104, 24 + + + 5 + + + Cancel + + + btnRegionCaptureSnapSizesDialogCancel + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pRegionCaptureSnapSizes + + + 0 + + + 8, 48 + + + 104, 24 + + + 4 + + + Add + + + btnRegionCaptureSnapSizesDialogAdd + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pRegionCaptureSnapSizes + + + 1 + + + 120, 24 + + + 104, 20 + + + 3 + + + Center + + + nudRegionCaptureSnapSizesHeight + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pRegionCaptureSnapSizes + + + 2 + + + True + + + 117, 8 + + + 41, 13 + + + 2 + + + Height: + + + RegionCaptureSnapSizesHeight + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pRegionCaptureSnapSizes + + + 3 + + + 8, 24 + + + 104, 20 + + + 1 + + + Center + + + nudRegionCaptureSnapSizesWidth + + + System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pRegionCaptureSnapSizes + + + 4 + + + True + + + NoControl + + + 5, 8 + + + 38, 13 + + + 0 + + + Width: + + + lblRegionCaptureSnapSizesWidth + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + pRegionCaptureSnapSizes + + + 5 + + + 304, 136 + + + 232, 112 + + + 18 + + + False + + + pRegionCaptureSnapSizes + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 28 + + + True + + + 8, 176 + + + 394, 17 + + + 11 + + + Dim background so selection can be diffrentiated easily (affects startup speed) + + + cbRegionCaptureUseDimming + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 29 + + + 312, 198 + + + 216, 20 + + + 13 + + + txtRegionCaptureCustomInfoText + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpRegionCapture + + + 30 + + + 4, 22 + + + 3, 3, 3, 3 + + + 557, 328 + + + 1 + + + Region capture + + + tpRegionCapture + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcCapture + + + 1 + True @@ -4845,6 +3870,33 @@ 16 + + 4, 22 + + + 3, 3, 3, 3 + + + 557, 328 + + + 2 + + + Screen recorder + + + tpScreenRecorder + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcCapture + + + 2 + Fill @@ -4869,99 +3921,84 @@ 0 - - tpUploadMain - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcUpload - - - 0 - - - tpFileNaming - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcUpload - - - 1 - - - tpUploadClipboard - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcUpload - - - 2 - - - Fill - - - 3, 3 - - - 565, 354 - - - 0 - - - tcUpload - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUpload - - - 0 - - - chkUseDefaultUploadSettings - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUploadMain - - - 0 - - + 4, 22 - + + 3, 3, 3, 3 + + 557, 328 - - 0 + + 4 - - tpUploadMain + + Scrolling capture - + + tpScrollingCapture + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tcUpload + + tcCapture - + + 3 + + + Fill + + + 3, 3 + + + 565, 354 + + 0 + + tcCapture + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpCapture + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 571, 360 + + + 2 + + + Capture + + + tpCapture + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcTaskSettings + + + 3 + True @@ -4998,176 +4035,26 @@ 0 - - lblAutoIncrementNumber - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFileNaming - - - 0 - - - cbRegionCaptureUseWindowPattern - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFileNaming - - - 1 - - - cbNameFormatCustomTimeZone - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFileNaming - - - 2 - - - lblNameFormatPatternPreview - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFileNaming - - - 3 - - - lblNameFormatPatternActiveWindow - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFileNaming - - - 4 - - - lblNameFormatPatternPreviewActiveWindow - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFileNaming - - - 5 - - - cbNameFormatTimeZone - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFileNaming - - - 6 - - - txtNameFormatPatternActiveWindow - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFileNaming - - - 7 - - - btnResetAutoIncrementNumber - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFileNaming - - - 8 - - - cbFileUploadUseNamePattern - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFileNaming - - - 9 - - - lblNameFormatPattern - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFileNaming - - - 10 - - - txtNameFormatPattern - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpFileNaming - - - 11 - - + 4, 22 - - 3, 3, 3, 3 - - + 557, 328 - - 2 + + 0 - - File naming + + tpUploadMain - - tpFileNaming - - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcUpload - - 1 + + 0 True @@ -5493,80 +4380,32 @@ 11 - - cbClipboardUploadShareURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUploadClipboard - - - 0 - - - chkClipboardUploadURLContents - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUploadClipboard - - - 1 - - - cbClipboardUploadAutoIndexFolder - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUploadClipboard - - - 2 - - - cbClipboardUploadShortenURL - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpUploadClipboard - - - 3 - - + 4, 22 - + 3, 3, 3, 3 - + 557, 328 - - 1 + + 2 - - Clipboard upload + + File naming - - tpUploadClipboard + + tpFileNaming - + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + tcUpload - - 2 + + 1 True @@ -5688,93 +4527,84 @@ 3 - - btnActionsDuplicate + + 4, 22 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 3, 3, 3, 3 - - pActions + + 557, 328 - - 0 - - - btnActionsAdd - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pActions - - + 1 - - lvActions + + Clipboard upload - - ShareX.HelpersLib.MyListView, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + tpUploadClipboard - - pActions + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - + + tcUpload + + 2 - - btnActionsEdit - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pActions - - - 3 - - - btnActionsRemove - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - pActions - - - 4 - - + Fill - - 0, 25 + + 3, 3 - - 0, 0, 0, 0 + + 565, 354 - - 571, 335 - - - 1 - - - pActions - - - System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpActions - - + 0 + + tcUpload + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpUpload + + + 0 + + + 4, 22 + + + 3, 3, 3, 3 + + + 571, 360 + + + 4 + + + Upload + + + tpUpload + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcTaskSettings + + + 4 + NoControl @@ -5832,27 +4662,6 @@ Top, Bottom, Left, Right - - 8, 40 - - - 558, 288 - - - 4 - - - lvActions - - - ShareX.HelpersLib.MyListView, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - - pActions - - - 2 - Name @@ -5877,6 +4686,27 @@ 75 + + 8, 40 + + + 558, 288 + + + 4 + + + lvActions + + + ShareX.HelpersLib.MyListView, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + + + pActions + + + 2 + NoControl @@ -5931,6 +4761,33 @@ 4 + + Fill + + + 0, 25 + + + 0, 0, 0, 0 + + + 571, 335 + + + 1 + + + pActions + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tpActions + + + 0 + True @@ -5967,6 +4824,30 @@ 1 + + 4, 22 + + + 571, 360 + + + 3 + + + Actions + + + tpActions + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcTaskSettings + + + 5 + True @@ -6000,6 +4881,24 @@ Top, Bottom, Left, Right + + Folder path + + + 323 + + + Filter + + + 43 + + + Include subdirectories + + + 124 + 8, 64 @@ -6021,24 +4920,6 @@ 1 - - Folder path - - - 323 - - - Filter - - - 43 - - - Include subdirectories - - - 124 - NoControl @@ -6093,98 +4974,32 @@ 3 - - tpToolsMain - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTools - - - 0 - - - tpIndexer - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTools - - - 1 - - - tpVideoThumbnailer - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tcTools - - - 2 - - - Fill - - - 3, 3 - - - 565, 354 - - - 0 - - - tcTools - - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpTools - - - 0 - - - chkUseDefaultToolsSettings - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpToolsMain - - - 0 - - + 4, 22 - - 557, 328 + + 3, 3, 3, 3 - - 0 + + 571, 360 - - tpToolsMain + + 5 - + + Watch folders + + + tpWatchFolders + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tcTools + + tcTaskSettings - - 0 + + 6 True @@ -6222,6 +5037,39 @@ 0 + + 4, 22 + + + 557, 328 + + + 0 + + + tpToolsMain + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcTools + + + 0 + + + Fill + + + 3, 3 + + + 551, 322 + + + 0 + pgIndexer @@ -6261,28 +5109,16 @@ 1 - + Fill - + 3, 3 - + 551, 322 - - 0 - - - pgIndexer - - - System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - tpIndexer - - + 0 @@ -6324,30 +5160,57 @@ 2 - + Fill - + 3, 3 - - 551, 322 + + 565, 354 - + 0 - - pgVideoThumbnailer + + tcTools - - System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - tpVideoThumbnailer + + tpTools - + 0 + + 4, 22 + + + 3, 3, 3, 3 + + + 571, 360 + + + 8 + + + Tools + + + tpTools + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcTaskSettings + + + 7 + Fill @@ -6408,6 +5271,60 @@ 1 + + 4, 22 + + + 3, 3, 3, 3 + + + 571, 360 + + + 6 + + + Advanced + + + tpAdvanced + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + tcTaskSettings + + + 8 + + + Right + + + 192, 3 + + + 579, 386 + + + 1 + + + False + + + tcTaskSettings + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 4 + Fill