ShareX/ShareX.MediaLib/Forms/ImageBeautifierForm.Designer.cs

598 lines
33 KiB
C#
Raw Normal View History

2023-04-25 02:33:40 +12:00
namespace ShareX.MediaLib
{
partial class ImageBeautifierForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
2023-04-25 09:04:52 +12:00
this.components = new System.ComponentModel.Container();
2023-04-25 02:33:40 +12:00
this.lblMargin = new System.Windows.Forms.Label();
this.tbMargin = new System.Windows.Forms.TrackBar();
this.lblPadding = new System.Windows.Forms.Label();
this.tbPadding = new System.Windows.Forms.TrackBar();
this.cbSmartPadding = new System.Windows.Forms.CheckBox();
this.lblRoundedCorner = new System.Windows.Forms.Label();
this.tbRoundedCorner = new System.Windows.Forms.TrackBar();
2023-06-07 18:18:53 +12:00
this.lblShadowRadius = new System.Windows.Forms.Label();
this.tbShadowRadius = new System.Windows.Forms.TrackBar();
2023-04-25 02:33:40 +12:00
this.lblBackground = new System.Windows.Forms.Label();
2023-04-25 03:38:50 +12:00
this.lblMarginValue = new System.Windows.Forms.Label();
this.lblPaddingValue = new System.Windows.Forms.Label();
this.lblRoundedCornerValue = new System.Windows.Forms.Label();
2023-06-07 18:18:53 +12:00
this.lblShadowRadiusValue = new System.Windows.Forms.Label();
2023-04-25 06:27:23 +12:00
this.tlpMain = new System.Windows.Forms.TableLayoutPanel();
2023-04-25 08:14:38 +12:00
this.pbPreview = new ShareX.HelpersLib.MyPictureBox();
2023-04-25 06:27:23 +12:00
this.pOptions = new System.Windows.Forms.Panel();
this.btnShadowExpand = new System.Windows.Forms.Button();
2023-06-08 19:23:51 +12:00
this.gbShadow = new System.Windows.Forms.GroupBox();
this.lblShadowAngleValue = new System.Windows.Forms.Label();
this.lblShadowDistanceValue = new System.Windows.Forms.Label();
this.lblShadowOpacityValue = new System.Windows.Forms.Label();
this.btnShadowColor = new ShareX.HelpersLib.ColorButton();
this.tbShadowAngle = new System.Windows.Forms.TrackBar();
this.lblShadowAngle = new System.Windows.Forms.Label();
this.tbShadowDistance = new System.Windows.Forms.TrackBar();
this.lblShadowOpacity = new System.Windows.Forms.Label();
this.lblShadowDistance = new System.Windows.Forms.Label();
this.tbShadowOpacity = new System.Windows.Forms.TrackBar();
2023-05-31 02:56:52 +12:00
this.btnResetOptions = new System.Windows.Forms.Button();
2023-05-30 23:46:32 +12:00
this.lblBackgroundImageFilePath = new System.Windows.Forms.Label();
this.btnBackgroundImageFilePathBrowse = new System.Windows.Forms.Button();
this.cbBackgroundType = new System.Windows.Forms.ComboBox();
2023-04-25 08:14:38 +12:00
this.btnPrint = new System.Windows.Forms.Button();
this.btnSave = new System.Windows.Forms.Button();
this.btnUpload = new System.Windows.Forms.Button();
this.btnSaveAs = new System.Windows.Forms.Button();
this.btnCopy = new System.Windows.Forms.Button();
2023-04-25 06:27:23 +12:00
this.pbBackground = new System.Windows.Forms.PictureBox();
2023-04-25 09:04:52 +12:00
this.ttMain = new System.Windows.Forms.ToolTip(this.components);
2023-04-25 02:33:40 +12:00
((System.ComponentModel.ISupportInitialize)(this.tbMargin)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tbPadding)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tbRoundedCorner)).BeginInit();
2023-06-07 18:18:53 +12:00
((System.ComponentModel.ISupportInitialize)(this.tbShadowRadius)).BeginInit();
2023-04-25 06:27:23 +12:00
this.tlpMain.SuspendLayout();
this.pOptions.SuspendLayout();
this.gbShadow.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.tbShadowAngle)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tbShadowDistance)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.tbShadowOpacity)).BeginInit();
2023-04-25 06:27:23 +12:00
((System.ComponentModel.ISupportInitialize)(this.pbBackground)).BeginInit();
2023-04-25 02:33:40 +12:00
this.SuspendLayout();
//
// lblMargin
//
this.lblMargin.AutoSize = true;
2023-04-25 06:27:23 +12:00
this.lblMargin.Location = new System.Drawing.Point(13, 16);
2023-04-25 03:38:50 +12:00
this.lblMargin.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
2023-04-25 02:33:40 +12:00
this.lblMargin.Name = "lblMargin";
2023-04-25 03:38:50 +12:00
this.lblMargin.Size = new System.Drawing.Size(53, 17);
2023-04-25 02:33:40 +12:00
this.lblMargin.TabIndex = 0;
this.lblMargin.Text = "Margin:";
//
// tbMargin
//
this.tbMargin.Location = new System.Drawing.Point(16, 40);
2023-04-25 03:38:50 +12:00
this.tbMargin.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
2023-04-25 02:33:40 +12:00
this.tbMargin.Maximum = 300;
this.tbMargin.Name = "tbMargin";
2023-04-25 06:27:23 +12:00
this.tbMargin.Size = new System.Drawing.Size(296, 45);
2023-04-25 02:33:40 +12:00
this.tbMargin.TabIndex = 1;
this.tbMargin.TickFrequency = 10;
this.tbMargin.Scroll += new System.EventHandler(this.tbMargin_Scroll);
2023-05-31 02:56:52 +12:00
this.tbMargin.MouseUp += new System.Windows.Forms.MouseEventHandler(this.tbMargin_MouseUp);
2023-04-25 02:33:40 +12:00
//
// lblPadding
//
this.lblPadding.AutoSize = true;
2023-04-25 06:27:23 +12:00
this.lblPadding.Location = new System.Drawing.Point(13, 88);
2023-04-25 03:38:50 +12:00
this.lblPadding.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
2023-04-25 02:33:40 +12:00
this.lblPadding.Name = "lblPadding";
2023-04-25 03:38:50 +12:00
this.lblPadding.Size = new System.Drawing.Size(59, 17);
this.lblPadding.TabIndex = 3;
2023-04-25 02:33:40 +12:00
this.lblPadding.Text = "Padding:";
//
// tbPadding
//
2023-04-25 03:38:50 +12:00
this.tbPadding.Location = new System.Drawing.Point(16, 112);
this.tbPadding.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
2023-04-25 02:33:40 +12:00
this.tbPadding.Maximum = 200;
this.tbPadding.Name = "tbPadding";
2023-04-25 06:27:23 +12:00
this.tbPadding.Size = new System.Drawing.Size(296, 45);
2023-04-25 03:38:50 +12:00
this.tbPadding.TabIndex = 4;
2023-04-25 02:33:40 +12:00
this.tbPadding.TickFrequency = 10;
this.tbPadding.Scroll += new System.EventHandler(this.tbPadding_Scroll);
2023-05-31 02:56:52 +12:00
this.tbPadding.MouseUp += new System.Windows.Forms.MouseEventHandler(this.tbPadding_MouseUp);
2023-04-25 02:33:40 +12:00
//
// cbSmartPadding
//
this.cbSmartPadding.AutoSize = true;
2023-04-25 03:38:50 +12:00
this.cbSmartPadding.Location = new System.Drawing.Point(16, 160);
this.cbSmartPadding.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
2023-04-25 02:33:40 +12:00
this.cbSmartPadding.Name = "cbSmartPadding";
2023-04-25 03:38:50 +12:00
this.cbSmartPadding.Size = new System.Drawing.Size(114, 21);
this.cbSmartPadding.TabIndex = 6;
2023-04-25 02:33:40 +12:00
this.cbSmartPadding.Text = "Smart padding";
this.cbSmartPadding.UseVisualStyleBackColor = true;
this.cbSmartPadding.CheckedChanged += new System.EventHandler(this.cbSmartPadding_CheckedChanged);
//
// lblRoundedCorner
//
this.lblRoundedCorner.AutoSize = true;
2023-04-25 06:27:23 +12:00
this.lblRoundedCorner.Location = new System.Drawing.Point(13, 192);
2023-04-25 03:38:50 +12:00
this.lblRoundedCorner.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
2023-04-25 02:33:40 +12:00
this.lblRoundedCorner.Name = "lblRoundedCorner";
2023-04-25 03:38:50 +12:00
this.lblRoundedCorner.Size = new System.Drawing.Size(106, 17);
this.lblRoundedCorner.TabIndex = 7;
2023-04-25 02:33:40 +12:00
this.lblRoundedCorner.Text = "Rounded corner:";
//
// tbRoundedCorner
//
2023-04-25 03:38:50 +12:00
this.tbRoundedCorner.Location = new System.Drawing.Point(16, 216);
this.tbRoundedCorner.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
2023-04-25 02:33:40 +12:00
this.tbRoundedCorner.Maximum = 50;
this.tbRoundedCorner.Name = "tbRoundedCorner";
2023-04-25 06:27:23 +12:00
this.tbRoundedCorner.Size = new System.Drawing.Size(296, 45);
2023-04-25 03:38:50 +12:00
this.tbRoundedCorner.TabIndex = 8;
2023-04-25 02:33:40 +12:00
this.tbRoundedCorner.TickFrequency = 5;
this.tbRoundedCorner.Scroll += new System.EventHandler(this.tbRoundedCorner_Scroll);
2023-05-31 02:56:52 +12:00
this.tbRoundedCorner.MouseUp += new System.Windows.Forms.MouseEventHandler(this.tbRoundedCorner_MouseUp);
2023-04-25 02:33:40 +12:00
//
2023-06-07 18:18:53 +12:00
// lblShadowRadius
2023-04-25 02:33:40 +12:00
//
2023-06-07 18:18:53 +12:00
this.lblShadowRadius.AutoSize = true;
this.lblShadowRadius.Location = new System.Drawing.Point(16, 32);
this.lblShadowRadius.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lblShadowRadius.Name = "lblShadowRadius";
this.lblShadowRadius.Size = new System.Drawing.Size(50, 17);
this.lblShadowRadius.TabIndex = 10;
this.lblShadowRadius.Text = "Radius:";
2023-04-25 02:33:40 +12:00
//
2023-06-07 18:18:53 +12:00
// tbShadowRadius
2023-04-25 02:33:40 +12:00
//
2023-06-07 18:18:53 +12:00
this.tbShadowRadius.AutoSize = false;
this.tbShadowRadius.Location = new System.Drawing.Point(16, 56);
this.tbShadowRadius.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.tbShadowRadius.Maximum = 100;
this.tbShadowRadius.Name = "tbShadowRadius";
this.tbShadowRadius.Size = new System.Drawing.Size(280, 32);
this.tbShadowRadius.TabIndex = 11;
this.tbShadowRadius.TickFrequency = 5;
this.tbShadowRadius.Scroll += new System.EventHandler(this.tbShadowRadius_Scroll);
2023-04-25 02:33:40 +12:00
//
// lblBackground
//
this.lblBackground.AutoSize = true;
2023-06-08 19:23:51 +12:00
this.lblBackground.Location = new System.Drawing.Point(13, 384);
2023-04-25 03:38:50 +12:00
this.lblBackground.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
2023-04-25 02:33:40 +12:00
this.lblBackground.Name = "lblBackground";
2023-04-25 03:38:50 +12:00
this.lblBackground.Size = new System.Drawing.Size(80, 17);
this.lblBackground.TabIndex = 13;
2023-04-25 02:33:40 +12:00
this.lblBackground.Text = "Background:";
//
2023-04-25 03:38:50 +12:00
// lblMarginValue
//
2023-06-08 19:23:51 +12:00
this.lblMarginValue.Location = new System.Drawing.Point(256, 16);
2023-04-25 03:38:50 +12:00
this.lblMarginValue.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lblMarginValue.Name = "lblMarginValue";
2023-06-08 19:23:51 +12:00
this.lblMarginValue.Size = new System.Drawing.Size(56, 24);
2023-04-25 03:38:50 +12:00
this.lblMarginValue.TabIndex = 2;
this.lblMarginValue.Text = "0";
this.lblMarginValue.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// lblPaddingValue
//
2023-06-08 19:23:51 +12:00
this.lblPaddingValue.Location = new System.Drawing.Point(256, 88);
2023-04-25 03:38:50 +12:00
this.lblPaddingValue.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lblPaddingValue.Name = "lblPaddingValue";
2023-06-08 19:23:51 +12:00
this.lblPaddingValue.Size = new System.Drawing.Size(56, 24);
2023-04-25 03:38:50 +12:00
this.lblPaddingValue.TabIndex = 5;
this.lblPaddingValue.Text = "0";
this.lblPaddingValue.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// lblRoundedCornerValue
//
2023-06-08 19:23:51 +12:00
this.lblRoundedCornerValue.Location = new System.Drawing.Point(256, 192);
2023-04-25 03:38:50 +12:00
this.lblRoundedCornerValue.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lblRoundedCornerValue.Name = "lblRoundedCornerValue";
2023-06-08 19:23:51 +12:00
this.lblRoundedCornerValue.Size = new System.Drawing.Size(56, 24);
2023-04-25 03:38:50 +12:00
this.lblRoundedCornerValue.TabIndex = 9;
this.lblRoundedCornerValue.Text = "0";
this.lblRoundedCornerValue.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
2023-06-07 18:18:53 +12:00
// lblShadowRadiusValue
2023-04-25 03:38:50 +12:00
//
2023-06-08 19:23:51 +12:00
this.lblShadowRadiusValue.Location = new System.Drawing.Point(240, 32);
2023-06-07 18:18:53 +12:00
this.lblShadowRadiusValue.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lblShadowRadiusValue.Name = "lblShadowRadiusValue";
2023-06-08 19:23:51 +12:00
this.lblShadowRadiusValue.Size = new System.Drawing.Size(56, 24);
2023-06-07 18:18:53 +12:00
this.lblShadowRadiusValue.TabIndex = 12;
this.lblShadowRadiusValue.Text = "0";
this.lblShadowRadiusValue.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
2023-04-25 02:33:40 +12:00
//
2023-04-25 06:27:23 +12:00
// tlpMain
//
this.tlpMain.ColumnCount = 2;
this.tlpMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 335F));
this.tlpMain.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tlpMain.Controls.Add(this.pbPreview, 1, 0);
this.tlpMain.Controls.Add(this.pOptions, 0, 0);
this.tlpMain.Dock = System.Windows.Forms.DockStyle.Fill;
this.tlpMain.Location = new System.Drawing.Point(0, 0);
this.tlpMain.Name = "tlpMain";
this.tlpMain.RowCount = 1;
this.tlpMain.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tlpMain.Size = new System.Drawing.Size(1384, 761);
2023-04-25 09:04:52 +12:00
this.tlpMain.TabIndex = 0;
2023-04-25 06:27:23 +12:00
//
2023-04-25 08:14:38 +12:00
// pbPreview
//
this.pbPreview.BackColor = System.Drawing.SystemColors.Window;
this.pbPreview.Dock = System.Windows.Forms.DockStyle.Fill;
this.pbPreview.DrawCheckeredBackground = true;
this.pbPreview.EnableRightClickMenu = true;
this.pbPreview.FullscreenOnClick = true;
this.pbPreview.Location = new System.Drawing.Point(335, 0);
this.pbPreview.Margin = new System.Windows.Forms.Padding(0);
this.pbPreview.Name = "pbPreview";
this.pbPreview.PictureBoxBackColor = System.Drawing.SystemColors.Window;
this.pbPreview.ShowImageSizeLabel = true;
this.pbPreview.Size = new System.Drawing.Size(1049, 761);
2023-04-25 09:04:52 +12:00
this.pbPreview.TabIndex = 1;
2023-04-25 08:14:38 +12:00
//
2023-04-25 06:27:23 +12:00
// pOptions
//
this.pOptions.Controls.Add(this.btnShadowExpand);
this.pOptions.Controls.Add(this.gbShadow);
2023-05-30 23:46:32 +12:00
this.pOptions.Controls.Add(this.btnResetOptions);
this.pOptions.Controls.Add(this.lblBackgroundImageFilePath);
this.pOptions.Controls.Add(this.btnBackgroundImageFilePathBrowse);
this.pOptions.Controls.Add(this.cbBackgroundType);
2023-04-25 08:14:38 +12:00
this.pOptions.Controls.Add(this.btnPrint);
this.pOptions.Controls.Add(this.btnSave);
this.pOptions.Controls.Add(this.btnUpload);
this.pOptions.Controls.Add(this.btnSaveAs);
this.pOptions.Controls.Add(this.btnCopy);
2023-04-25 06:27:23 +12:00
this.pOptions.Controls.Add(this.pbBackground);
this.pOptions.Controls.Add(this.lblMargin);
this.pOptions.Controls.Add(this.tbMargin);
this.pOptions.Controls.Add(this.lblRoundedCornerValue);
this.pOptions.Controls.Add(this.lblPadding);
this.pOptions.Controls.Add(this.lblPaddingValue);
this.pOptions.Controls.Add(this.tbPadding);
this.pOptions.Controls.Add(this.lblMarginValue);
this.pOptions.Controls.Add(this.cbSmartPadding);
this.pOptions.Controls.Add(this.lblRoundedCorner);
this.pOptions.Controls.Add(this.lblBackground);
this.pOptions.Controls.Add(this.tbRoundedCorner);
this.pOptions.Dock = System.Windows.Forms.DockStyle.Fill;
this.pOptions.Location = new System.Drawing.Point(3, 3);
this.pOptions.Name = "pOptions";
this.pOptions.Size = new System.Drawing.Size(329, 755);
this.pOptions.TabIndex = 0;
//
2023-06-08 19:23:51 +12:00
// btnShadowExpand
//
this.btnShadowExpand.Image = global::ShareX.MediaLib.Properties.Resources.plus_white;
this.btnShadowExpand.Location = new System.Drawing.Point(280, 260);
this.btnShadowExpand.Name = "btnShadowExpand";
this.btnShadowExpand.Size = new System.Drawing.Size(30, 30);
this.btnShadowExpand.TabIndex = 16;
this.btnShadowExpand.Tag = "+";
this.btnShadowExpand.UseVisualStyleBackColor = true;
this.btnShadowExpand.Click += new System.EventHandler(this.btnShadowExpand_Click);
//
// gbShadow
//
this.gbShadow.Controls.Add(this.lblShadowAngleValue);
this.gbShadow.Controls.Add(this.lblShadowDistanceValue);
this.gbShadow.Controls.Add(this.lblShadowOpacityValue);
this.gbShadow.Controls.Add(this.btnShadowColor);
2023-06-07 18:18:53 +12:00
this.gbShadow.Controls.Add(this.tbShadowRadius);
this.gbShadow.Controls.Add(this.tbShadowAngle);
2023-06-07 18:18:53 +12:00
this.gbShadow.Controls.Add(this.lblShadowRadiusValue);
this.gbShadow.Controls.Add(this.lblShadowAngle);
2023-06-07 18:18:53 +12:00
this.gbShadow.Controls.Add(this.lblShadowRadius);
this.gbShadow.Controls.Add(this.tbShadowDistance);
this.gbShadow.Controls.Add(this.lblShadowOpacity);
this.gbShadow.Controls.Add(this.lblShadowDistance);
this.gbShadow.Controls.Add(this.tbShadowOpacity);
this.gbShadow.Location = new System.Drawing.Point(8, 264);
this.gbShadow.Name = "gbShadow";
this.gbShadow.Size = new System.Drawing.Size(312, 104);
this.gbShadow.TabIndex = 25;
this.gbShadow.TabStop = false;
this.gbShadow.Text = "Shadow";
//
// lblShadowAngleValue
//
2023-06-08 19:23:51 +12:00
this.lblShadowAngleValue.Location = new System.Drawing.Point(240, 248);
this.lblShadowAngleValue.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lblShadowAngleValue.Name = "lblShadowAngleValue";
2023-06-08 19:23:51 +12:00
this.lblShadowAngleValue.Size = new System.Drawing.Size(56, 24);
this.lblShadowAngleValue.TabIndex = 15;
this.lblShadowAngleValue.Text = "0";
this.lblShadowAngleValue.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// lblShadowDistanceValue
//
2023-06-08 19:23:51 +12:00
this.lblShadowDistanceValue.Location = new System.Drawing.Point(240, 176);
this.lblShadowDistanceValue.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lblShadowDistanceValue.Name = "lblShadowDistanceValue";
2023-06-08 19:23:51 +12:00
this.lblShadowDistanceValue.Size = new System.Drawing.Size(56, 24);
this.lblShadowDistanceValue.TabIndex = 14;
this.lblShadowDistanceValue.Text = "0";
this.lblShadowDistanceValue.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// lblShadowOpacityValue
//
2023-06-08 19:23:51 +12:00
this.lblShadowOpacityValue.Location = new System.Drawing.Point(240, 104);
this.lblShadowOpacityValue.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lblShadowOpacityValue.Name = "lblShadowOpacityValue";
2023-06-08 19:23:51 +12:00
this.lblShadowOpacityValue.Size = new System.Drawing.Size(56, 24);
this.lblShadowOpacityValue.TabIndex = 13;
this.lblShadowOpacityValue.Text = "0";
this.lblShadowOpacityValue.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// btnShadowColor
//
this.btnShadowColor.Color = System.Drawing.Color.Empty;
this.btnShadowColor.ColorPickerOptions = null;
this.btnShadowColor.Location = new System.Drawing.Point(16, 320);
this.btnShadowColor.Name = "btnShadowColor";
this.btnShadowColor.Size = new System.Drawing.Size(280, 32);
this.btnShadowColor.TabIndex = 6;
this.btnShadowColor.Text = "Color...";
this.btnShadowColor.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnShadowColor.UseVisualStyleBackColor = true;
this.btnShadowColor.ColorChanged += new ShareX.HelpersLib.ColorButton.ColorChangedEventHandler(this.btnShadowColor_ColorChanged);
//
// tbShadowAngle
//
this.tbShadowAngle.Location = new System.Drawing.Point(16, 272);
2023-06-13 16:27:15 +12:00
this.tbShadowAngle.Maximum = 360;
this.tbShadowAngle.Name = "tbShadowAngle";
this.tbShadowAngle.Size = new System.Drawing.Size(280, 45);
this.tbShadowAngle.TabIndex = 5;
this.tbShadowAngle.TickFrequency = 45;
this.tbShadowAngle.Scroll += new System.EventHandler(this.tbShadowAngle_Scroll);
//
// lblShadowAngle
//
this.lblShadowAngle.AutoSize = true;
this.lblShadowAngle.Location = new System.Drawing.Point(16, 248);
this.lblShadowAngle.Name = "lblShadowAngle";
this.lblShadowAngle.Size = new System.Drawing.Size(44, 17);
this.lblShadowAngle.TabIndex = 4;
this.lblShadowAngle.Text = "Angle:";
//
// tbShadowDistance
//
this.tbShadowDistance.Location = new System.Drawing.Point(16, 200);
this.tbShadowDistance.Maximum = 100;
this.tbShadowDistance.Name = "tbShadowDistance";
this.tbShadowDistance.Size = new System.Drawing.Size(280, 45);
this.tbShadowDistance.TabIndex = 3;
this.tbShadowDistance.TickFrequency = 10;
this.tbShadowDistance.Scroll += new System.EventHandler(this.tbShadowDistance_Scroll);
//
// lblShadowOpacity
//
this.lblShadowOpacity.AutoSize = true;
this.lblShadowOpacity.Location = new System.Drawing.Point(16, 104);
this.lblShadowOpacity.Name = "lblShadowOpacity";
this.lblShadowOpacity.Size = new System.Drawing.Size(55, 17);
this.lblShadowOpacity.TabIndex = 0;
this.lblShadowOpacity.Text = "Opacity:";
//
// lblShadowDistance
//
this.lblShadowDistance.AutoSize = true;
this.lblShadowDistance.Location = new System.Drawing.Point(16, 176);
this.lblShadowDistance.Name = "lblShadowDistance";
this.lblShadowDistance.Size = new System.Drawing.Size(60, 17);
this.lblShadowDistance.TabIndex = 2;
this.lblShadowDistance.Text = "Distance:";
//
// tbShadowOpacity
//
this.tbShadowOpacity.Location = new System.Drawing.Point(16, 128);
this.tbShadowOpacity.Maximum = 100;
this.tbShadowOpacity.Name = "tbShadowOpacity";
this.tbShadowOpacity.Size = new System.Drawing.Size(280, 45);
this.tbShadowOpacity.SmallChange = 10;
this.tbShadowOpacity.TabIndex = 1;
this.tbShadowOpacity.TickFrequency = 10;
this.tbShadowOpacity.Scroll += new System.EventHandler(this.tbShadowOpacity_Scroll);
//
2023-05-31 02:56:52 +12:00
// btnResetOptions
//
this.btnResetOptions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnResetOptions.Location = new System.Drawing.Point(8, 656);
this.btnResetOptions.Name = "btnResetOptions";
this.btnResetOptions.Size = new System.Drawing.Size(312, 32);
this.btnResetOptions.TabIndex = 23;
this.btnResetOptions.Text = "Reset options...";
this.btnResetOptions.UseVisualStyleBackColor = true;
this.btnResetOptions.Click += new System.EventHandler(this.btnResetOptions_Click);
//
2023-05-30 23:46:32 +12:00
// lblBackgroundImageFilePath
//
2023-06-08 19:23:51 +12:00
this.lblBackgroundImageFilePath.Location = new System.Drawing.Point(13, 480);
2023-05-30 23:46:32 +12:00
this.lblBackgroundImageFilePath.Name = "lblBackgroundImageFilePath";
this.lblBackgroundImageFilePath.Size = new System.Drawing.Size(296, 120);
this.lblBackgroundImageFilePath.TabIndex = 22;
//
// btnBackgroundImageFilePathBrowse
//
2023-06-08 19:23:51 +12:00
this.btnBackgroundImageFilePathBrowse.Location = new System.Drawing.Point(16, 440);
2023-05-30 23:46:32 +12:00
this.btnBackgroundImageFilePathBrowse.Name = "btnBackgroundImageFilePathBrowse";
this.btnBackgroundImageFilePathBrowse.Size = new System.Drawing.Size(296, 32);
this.btnBackgroundImageFilePathBrowse.TabIndex = 21;
this.btnBackgroundImageFilePathBrowse.Text = "Browse image file...";
this.btnBackgroundImageFilePathBrowse.UseVisualStyleBackColor = true;
this.btnBackgroundImageFilePathBrowse.Click += new System.EventHandler(this.btnBackgroundImageFilePathBrowse_Click);
//
// cbBackgroundType
//
this.cbBackgroundType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbBackgroundType.FormattingEnabled = true;
2023-06-08 19:23:51 +12:00
this.cbBackgroundType.Location = new System.Drawing.Point(16, 408);
this.cbBackgroundType.Name = "cbBackgroundType";
this.cbBackgroundType.Size = new System.Drawing.Size(296, 25);
this.cbBackgroundType.TabIndex = 19;
this.cbBackgroundType.SelectedIndexChanged += new System.EventHandler(this.cbBackgroundType_SelectedIndexChanged);
//
2023-04-25 08:14:38 +12:00
// btnPrint
//
2023-04-25 09:04:52 +12:00
this.btnPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
2023-04-25 08:14:38 +12:00
this.btnPrint.Image = global::ShareX.MediaLib.Properties.Resources.printer;
this.btnPrint.Location = new System.Drawing.Point(264, 696);
this.btnPrint.Name = "btnPrint";
this.btnPrint.Size = new System.Drawing.Size(56, 48);
2023-04-25 09:04:52 +12:00
this.btnPrint.TabIndex = 18;
this.ttMain.SetToolTip(this.btnPrint, "Print...");
2023-04-25 08:14:38 +12:00
this.btnPrint.UseVisualStyleBackColor = true;
this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
//
// btnSave
//
this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnSave.Image = global::ShareX.MediaLib.Properties.Resources.disk_black;
this.btnSave.Location = new System.Drawing.Point(72, 696);
this.btnSave.Name = "btnSave";
this.btnSave.Size = new System.Drawing.Size(56, 48);
2023-04-25 09:04:52 +12:00
this.btnSave.TabIndex = 15;
this.ttMain.SetToolTip(this.btnSave, "Save");
2023-04-25 08:14:38 +12:00
this.btnSave.UseVisualStyleBackColor = true;
this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
//
// btnUpload
//
this.btnUpload.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnUpload.Image = global::ShareX.MediaLib.Properties.Resources.upload_cloud;
this.btnUpload.Location = new System.Drawing.Point(200, 696);
this.btnUpload.Name = "btnUpload";
this.btnUpload.Size = new System.Drawing.Size(56, 48);
this.btnUpload.TabIndex = 17;
2023-04-25 09:04:52 +12:00
this.ttMain.SetToolTip(this.btnUpload, "Upload");
2023-04-25 08:14:38 +12:00
this.btnUpload.UseVisualStyleBackColor = true;
this.btnUpload.Click += new System.EventHandler(this.btnUpload_Click);
//
// btnSaveAs
//
this.btnSaveAs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnSaveAs.Image = global::ShareX.MediaLib.Properties.Resources.disks_black;
this.btnSaveAs.Location = new System.Drawing.Point(136, 696);
this.btnSaveAs.Name = "btnSaveAs";
this.btnSaveAs.Size = new System.Drawing.Size(56, 48);
this.btnSaveAs.TabIndex = 16;
2023-04-25 09:04:52 +12:00
this.ttMain.SetToolTip(this.btnSaveAs, "Save as...");
2023-04-25 08:14:38 +12:00
this.btnSaveAs.UseVisualStyleBackColor = true;
this.btnSaveAs.Click += new System.EventHandler(this.btnSaveAs_Click);
//
// btnCopy
//
this.btnCopy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnCopy.Image = global::ShareX.MediaLib.Properties.Resources.document_copy;
this.btnCopy.Location = new System.Drawing.Point(8, 696);
this.btnCopy.Name = "btnCopy";
this.btnCopy.Size = new System.Drawing.Size(56, 48);
2023-04-25 09:04:52 +12:00
this.btnCopy.TabIndex = 14;
this.ttMain.SetToolTip(this.btnCopy, "Copy");
2023-04-25 08:14:38 +12:00
this.btnCopy.UseVisualStyleBackColor = true;
this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
//
2023-04-25 06:27:23 +12:00
// pbBackground
//
this.pbBackground.Cursor = System.Windows.Forms.Cursors.Hand;
2023-06-08 19:23:51 +12:00
this.pbBackground.Location = new System.Drawing.Point(16, 440);
2023-04-25 06:27:23 +12:00
this.pbBackground.Name = "pbBackground";
this.pbBackground.Size = new System.Drawing.Size(296, 40);
this.pbBackground.TabIndex = 14;
this.pbBackground.TabStop = false;
this.pbBackground.Click += new System.EventHandler(this.pbBackground_Click);
//
2023-04-25 02:33:40 +12:00
// ImageBeautifierForm
//
2023-04-25 03:38:50 +12:00
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
2023-04-25 02:33:40 +12:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2023-04-25 03:38:50 +12:00
this.ClientSize = new System.Drawing.Size(1384, 761);
2023-04-25 06:27:23 +12:00
this.Controls.Add(this.tlpMain);
2023-04-25 03:38:50 +12:00
this.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.MinimumSize = new System.Drawing.Size(1000, 700);
2023-04-25 02:33:40 +12:00
this.Name = "ImageBeautifierForm";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "ShareX - Image beautifier";
2023-04-25 03:38:50 +12:00
this.Shown += new System.EventHandler(this.ImageBeautifierForm_Shown);
2023-04-25 02:33:40 +12:00
((System.ComponentModel.ISupportInitialize)(this.tbMargin)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.tbPadding)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.tbRoundedCorner)).EndInit();
2023-06-07 18:18:53 +12:00
((System.ComponentModel.ISupportInitialize)(this.tbShadowRadius)).EndInit();
2023-04-25 06:27:23 +12:00
this.tlpMain.ResumeLayout(false);
this.pOptions.ResumeLayout(false);
this.pOptions.PerformLayout();
this.gbShadow.ResumeLayout(false);
this.gbShadow.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.tbShadowAngle)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.tbShadowDistance)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.tbShadowOpacity)).EndInit();
2023-04-25 06:27:23 +12:00
((System.ComponentModel.ISupportInitialize)(this.pbBackground)).EndInit();
2023-04-25 02:33:40 +12:00
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label lblMargin;
private System.Windows.Forms.TrackBar tbMargin;
private System.Windows.Forms.Label lblPadding;
private System.Windows.Forms.TrackBar tbPadding;
private System.Windows.Forms.CheckBox cbSmartPadding;
private System.Windows.Forms.Label lblRoundedCorner;
private System.Windows.Forms.TrackBar tbRoundedCorner;
2023-06-07 18:18:53 +12:00
private System.Windows.Forms.Label lblShadowRadius;
private System.Windows.Forms.TrackBar tbShadowRadius;
2023-04-25 02:33:40 +12:00
private System.Windows.Forms.Label lblBackground;
2023-04-25 03:38:50 +12:00
private System.Windows.Forms.Label lblMarginValue;
private System.Windows.Forms.Label lblPaddingValue;
private System.Windows.Forms.Label lblRoundedCornerValue;
2023-06-07 18:18:53 +12:00
private System.Windows.Forms.Label lblShadowRadiusValue;
2023-04-25 06:27:23 +12:00
private System.Windows.Forms.TableLayoutPanel tlpMain;
private System.Windows.Forms.Panel pOptions;
private HelpersLib.MyPictureBox pbPreview;
private System.Windows.Forms.PictureBox pbBackground;
2023-04-25 08:14:38 +12:00
private System.Windows.Forms.Button btnSave;
private System.Windows.Forms.Button btnUpload;
private System.Windows.Forms.Button btnSaveAs;
private System.Windows.Forms.Button btnCopy;
private System.Windows.Forms.Button btnPrint;
2023-04-25 09:04:52 +12:00
private System.Windows.Forms.ToolTip ttMain;
private System.Windows.Forms.ComboBox cbBackgroundType;
private System.Windows.Forms.Button btnBackgroundImageFilePathBrowse;
private System.Windows.Forms.Label lblBackgroundImageFilePath;
2023-05-30 23:46:32 +12:00
private System.Windows.Forms.Button btnResetOptions;
private System.Windows.Forms.TrackBar tbShadowOpacity;
private System.Windows.Forms.Label lblShadowOpacity;
private HelpersLib.ColorButton btnShadowColor;
private System.Windows.Forms.TrackBar tbShadowAngle;
private System.Windows.Forms.Label lblShadowAngle;
private System.Windows.Forms.TrackBar tbShadowDistance;
private System.Windows.Forms.Label lblShadowDistance;
private System.Windows.Forms.GroupBox gbShadow;
private System.Windows.Forms.Label lblShadowAngleValue;
private System.Windows.Forms.Label lblShadowDistanceValue;
private System.Windows.Forms.Label lblShadowOpacityValue;
private System.Windows.Forms.Button btnShadowExpand;
2023-04-25 02:33:40 +12:00
}
}