-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdvancedSettingsForm.Designer.cs
234 lines (228 loc) · 8.77 KB
/
AdvancedSettingsForm.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
namespace BrickadiaAutoPainter {
partial class AdvancedSettingsForm {
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing) {
if (disposing && (components != null)) {
components.Dispose();
}
base.Dispose(disposing);
}
#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() {
this.label1 = new System.Windows.Forms.Label();
this.boxColorSwitchDelay = new System.Windows.Forms.NumericUpDown();
this.boxColorSwitchedDelay = new System.Windows.Forms.NumericUpDown();
this.label2 = new System.Windows.Forms.Label();
this.boxPixelPaintDelay = new System.Windows.Forms.NumericUpDown();
this.label3 = new System.Windows.Forms.Label();
this.dropdownColorSpace = new System.Windows.Forms.ComboBox();
this.label4 = new System.Windows.Forms.Label();
this.okButton = new System.Windows.Forms.Button();
this.dropdownSkipColors = new System.Windows.Forms.ComboBox();
this.label5 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.boxColorSwitchDelay)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.boxColorSwitchedDelay)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.boxPixelPaintDelay)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(13, 13);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(131, 15);
this.label1.TabIndex = 0;
this.label1.Text = "Color switch delay (ms)";
//
// boxColorSwitchDelay
//
this.boxColorSwitchDelay.Location = new System.Drawing.Point(170, 11);
this.boxColorSwitchDelay.Maximum = new decimal(new int[] {
1000,
0,
0,
0});
this.boxColorSwitchDelay.Name = "boxColorSwitchDelay";
this.boxColorSwitchDelay.Size = new System.Drawing.Size(70, 23);
this.boxColorSwitchDelay.TabIndex = 1;
this.boxColorSwitchDelay.Value = new decimal(new int[] {
25,
0,
0,
0});
//
// boxColorSwitchedDelay
//
this.boxColorSwitchedDelay.Location = new System.Drawing.Point(170, 40);
this.boxColorSwitchedDelay.Maximum = new decimal(new int[] {
1000,
0,
0,
0});
this.boxColorSwitchedDelay.Name = "boxColorSwitchedDelay";
this.boxColorSwitchedDelay.Size = new System.Drawing.Size(70, 23);
this.boxColorSwitchedDelay.TabIndex = 3;
this.boxColorSwitchedDelay.Value = new decimal(new int[] {
240,
0,
0,
0});
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(13, 42);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(144, 15);
this.label2.TabIndex = 2;
this.label2.Text = "Color switched delay (ms)";
//
// boxPixelPaintDelay
//
this.boxPixelPaintDelay.Location = new System.Drawing.Point(170, 69);
this.boxPixelPaintDelay.Maximum = new decimal(new int[] {
1000,
0,
0,
0});
this.boxPixelPaintDelay.Name = "boxPixelPaintDelay";
this.boxPixelPaintDelay.Size = new System.Drawing.Size(70, 23);
this.boxPixelPaintDelay.TabIndex = 5;
this.boxPixelPaintDelay.Value = new decimal(new int[] {
25,
0,
0,
0});
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(13, 71);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(120, 15);
this.label3.TabIndex = 4;
this.label3.Text = "Pixel paint delay (ms)";
//
// dropdownColorSpace
//
this.dropdownColorSpace.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.dropdownColorSpace.FormattingEnabled = true;
this.dropdownColorSpace.Items.AddRange(new object[] {
"sRGB",
"Oklab"});
this.dropdownColorSpace.Location = new System.Drawing.Point(170, 98);
this.dropdownColorSpace.Name = "dropdownColorSpace";
this.dropdownColorSpace.Size = new System.Drawing.Size(165, 23);
this.dropdownColorSpace.TabIndex = 6;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(13, 101);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(69, 15);
this.label4.TabIndex = 7;
this.label4.Text = "Color space";
//
// okButton
//
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.okButton.Location = new System.Drawing.Point(124, 207);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(116, 23);
this.okButton.TabIndex = 8;
this.okButton.Text = "OK";
this.okButton.UseVisualStyleBackColor = true;
this.okButton.Click += new System.EventHandler(this.okButton_Click);
//
// dropdownSkipColors
//
this.dropdownSkipColors.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.dropdownSkipColors.FormattingEnabled = true;
this.dropdownSkipColors.Items.AddRange(new object[] {
"Skip none",
"Skip most frequent",
"Skip transparent",
"Delete most frequent"});
this.dropdownSkipColors.Location = new System.Drawing.Point(170, 127);
this.dropdownSkipColors.Name = "dropdownSkipColors";
this.dropdownSkipColors.Size = new System.Drawing.Size(165, 23);
this.dropdownSkipColors.TabIndex = 9;
this.dropdownSkipColors.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(13, 130);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(111, 15);
this.label5.TabIndex = 10;
this.label5.Text = "Skip painting colors";
//
// label6
//
this.label6.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
this.label6.Location = new System.Drawing.Point(13, 153);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(322, 31);
this.label6.TabIndex = 11;
this.label6.Text = "If skip colors is set to most frequent, the most frequent color will be switched " +
"to after painting finishes.";
//
// AdvancedSettingsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(347, 242);
this.Controls.Add(this.label6);
this.Controls.Add(this.label5);
this.Controls.Add(this.dropdownSkipColors);
this.Controls.Add(this.okButton);
this.Controls.Add(this.label4);
this.Controls.Add(this.dropdownColorSpace);
this.Controls.Add(this.boxPixelPaintDelay);
this.Controls.Add(this.label3);
this.Controls.Add(this.boxColorSwitchedDelay);
this.Controls.Add(this.label2);
this.Controls.Add(this.boxColorSwitchDelay);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "AdvancedSettingsForm";
this.Text = "Auto Paint Advanced Settings";
this.Load += new System.EventHandler(this.AdvancedSettingsForm_Load);
((System.ComponentModel.ISupportInitialize)(this.boxColorSwitchDelay)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.boxColorSwitchedDelay)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.boxPixelPaintDelay)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.NumericUpDown boxColorSwitchDelay;
private System.Windows.Forms.NumericUpDown boxColorSwitchedDelay;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.NumericUpDown boxPixelPaintDelay;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.ComboBox dropdownColorSpace;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Button okButton;
private System.Windows.Forms.ComboBox dropdownSkipColors;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Label label6;
}
}