forked from notpod/Notpod-1.x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ConfigurationForm.Designer.cs
436 lines (431 loc) · 23 KB
/
ConfigurationForm.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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
namespace Notpod
{
partial class ConfigurationForm
{
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConfigurationForm));
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.checkConfirmMusicLocation = new System.Windows.Forms.CheckBox();
this.checkWarnOnSystemDrives = new System.Windows.Forms.CheckBox();
this.checkAutocloseSyncWindow = new System.Windows.Forms.CheckBox();
this.checkUseListFolder = new System.Windows.Forms.CheckBox();
this.checkNotifications = new System.Windows.Forms.CheckBox();
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
this.buttonBrowseMediaRoot = new System.Windows.Forms.Button();
this.comboSyncPatterns = new System.Windows.Forms.ComboBox();
this.buttonCreateUniqueFile = new System.Windows.Forms.Button();
this.textRecognizePattern = new System.Windows.Forms.TextBox();
this.textMediaRoot = new System.Windows.Forms.TextBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.groupDeviceInformation = new System.Windows.Forms.GroupBox();
this.comboAssociatePlaylist = new System.Windows.Forms.ComboBox();
this.label5 = new System.Windows.Forms.Label();
this.buttonDelete = new System.Windows.Forms.Button();
this.buttonSave = new System.Windows.Forms.Button();
this.buttonNew = new System.Windows.Forms.Button();
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.textDeviceName = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.listDevices = new System.Windows.Forms.ListView();
this.columnName = new System.Windows.Forms.ColumnHeader();
this.buttonCancel = new System.Windows.Forms.Button();
this.buttonOK = new System.Windows.Forms.Button();
this.helpProvider = new System.Windows.Forms.HelpProvider();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupDeviceInformation.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.checkConfirmMusicLocation);
this.groupBox1.Controls.Add(this.checkWarnOnSystemDrives);
this.groupBox1.Controls.Add(this.checkAutocloseSyncWindow);
this.groupBox1.Controls.Add(this.checkUseListFolder);
this.groupBox1.Controls.Add(this.checkNotifications);
this.groupBox1.Location = new System.Drawing.Point(2, 2);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(512, 96);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Application behaviour";
//
// checkConfirmMusicLocation
//
this.checkConfirmMusicLocation.AutoSize = true;
this.checkConfirmMusicLocation.Location = new System.Drawing.Point(9, 66);
this.checkConfirmMusicLocation.Name = "checkConfirmMusicLocation";
this.checkConfirmMusicLocation.Size = new System.Drawing.Size(231, 17);
this.checkConfirmMusicLocation.TabIndex = 4;
this.checkConfirmMusicLocation.Text = "Confirm music location before synchronizing";
this.toolTip.SetToolTip(this.checkConfirmMusicLocation, "Checking this will display a confirmation message before devices are synchronized" +
" to prevent misconfiguration.");
this.checkConfirmMusicLocation.UseVisualStyleBackColor = true;
this.checkConfirmMusicLocation.Click += new System.EventHandler(this.checkConfirmMusicLocation_Click);
//
// checkWarnOnSystemDrives
//
this.checkWarnOnSystemDrives.AutoSize = true;
this.checkWarnOnSystemDrives.Location = new System.Drawing.Point(274, 43);
this.checkWarnOnSystemDrives.Name = "checkWarnOnSystemDrives";
this.checkWarnOnSystemDrives.Size = new System.Drawing.Size(203, 17);
this.checkWarnOnSystemDrives.TabIndex = 3;
this.checkWarnOnSystemDrives.Text = "Warn if device looks like system drive";
this.toolTip.SetToolTip(this.checkWarnOnSystemDrives, "Enabling this will make Notpod check if your device seems to be a system drive.");
this.checkWarnOnSystemDrives.UseVisualStyleBackColor = true;
this.checkWarnOnSystemDrives.Click += new System.EventHandler(this.checkWarnOnSystemDrives_Click);
//
// checkAutocloseSyncWindow
//
this.checkAutocloseSyncWindow.AutoSize = true;
this.checkAutocloseSyncWindow.Location = new System.Drawing.Point(9, 43);
this.checkAutocloseSyncWindow.Name = "checkAutocloseSyncWindow";
this.helpProvider.SetShowHelp(this.checkAutocloseSyncWindow, false);
this.checkAutocloseSyncWindow.Size = new System.Drawing.Size(238, 17);
this.checkAutocloseSyncWindow.TabIndex = 2;
this.checkAutocloseSyncWindow.Text = "Close status window automatically if no errors";
this.toolTip.SetToolTip(this.checkAutocloseSyncWindow, "If checked, the status window shown during synchronization will be automatically " +
"closed unless there are errors.");
this.checkAutocloseSyncWindow.UseVisualStyleBackColor = true;
this.checkAutocloseSyncWindow.Click += new System.EventHandler(this.checkAutocloseSyncWindow_Click);
//
// checkUseListFolder
//
this.checkUseListFolder.AutoSize = true;
this.checkUseListFolder.Location = new System.Drawing.Point(274, 20);
this.checkUseListFolder.Name = "checkUseListFolder";
this.checkUseListFolder.Size = new System.Drawing.Size(219, 17);
this.checkUseListFolder.TabIndex = 1;
this.checkUseListFolder.Text = "Put device playlists in \'My Devices\' folder";
this.toolTip.SetToolTip(this.checkUseListFolder, resources.GetString("checkUseListFolder.ToolTip"));
this.checkUseListFolder.UseVisualStyleBackColor = true;
this.checkUseListFolder.Click += new System.EventHandler(this.checkUseListFolder_Click);
//
// checkNotifications
//
this.checkNotifications.AutoSize = true;
this.checkNotifications.Location = new System.Drawing.Point(9, 20);
this.checkNotifications.Name = "checkNotifications";
this.checkNotifications.Size = new System.Drawing.Size(147, 17);
this.checkNotifications.TabIndex = 0;
this.checkNotifications.Text = "Show baloon notifications";
this.toolTip.SetToolTip(this.checkNotifications, "Checking this option will cause a baloon to appear in your system tray whenever a" +
" device is connected, disconnected and on several other events.");
this.checkNotifications.Click += new System.EventHandler(this.checkNotifications_Click);
//
// buttonBrowseMediaRoot
//
this.buttonBrowseMediaRoot.Enabled = false;
this.buttonBrowseMediaRoot.Location = new System.Drawing.Point(428, 65);
this.buttonBrowseMediaRoot.Name = "buttonBrowseMediaRoot";
this.buttonBrowseMediaRoot.Size = new System.Drawing.Size(65, 23);
this.buttonBrowseMediaRoot.TabIndex = 6;
this.buttonBrowseMediaRoot.Text = "Choose";
this.toolTip.SetToolTip(this.buttonBrowseMediaRoot, "Browse for the folder if the device is already connected.");
this.buttonBrowseMediaRoot.UseVisualStyleBackColor = true;
this.buttonBrowseMediaRoot.Click += new System.EventHandler(this.buttonBrowseMediaRoot_Click);
//
// comboSyncPatterns
//
this.comboSyncPatterns.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboSyncPatterns.Enabled = false;
this.comboSyncPatterns.FormattingEnabled = true;
this.comboSyncPatterns.Location = new System.Drawing.Point(140, 40);
this.comboSyncPatterns.Name = "comboSyncPatterns";
this.comboSyncPatterns.Size = new System.Drawing.Size(354, 21);
this.comboSyncPatterns.TabIndex = 3;
this.toolTip.SetToolTip(this.comboSyncPatterns, "To see a description of the synchronization patterns, select one, then press F1.");
this.comboSyncPatterns.SelectedIndexChanged += new System.EventHandler(this.comboSyncPatterns_SelectedIndexChanged);
//
// buttonCreateUniqueFile
//
this.buttonCreateUniqueFile.Enabled = false;
this.buttonCreateUniqueFile.Location = new System.Drawing.Point(428, 89);
this.buttonCreateUniqueFile.Name = "buttonCreateUniqueFile";
this.buttonCreateUniqueFile.Size = new System.Drawing.Size(65, 23);
this.buttonCreateUniqueFile.TabIndex = 14;
this.buttonCreateUniqueFile.Text = "Create";
this.toolTip.SetToolTip(this.buttonCreateUniqueFile, "Choose the location of your device and Notpod will create a unique file for you.");
this.buttonCreateUniqueFile.UseVisualStyleBackColor = true;
this.buttonCreateUniqueFile.Click += new System.EventHandler(this.buttonCreateUniqueFile_Click);
//
// textRecognizePattern
//
this.textRecognizePattern.Enabled = false;
this.helpProvider.SetHelpString(this.textRecognizePattern, "The name of a file or a folder which Notpod should use to recognize this device. " +
"The path name should be relative to the root of the device. ");
this.textRecognizePattern.Location = new System.Drawing.Point(140, 91);
this.textRecognizePattern.Name = "textRecognizePattern";
this.helpProvider.SetShowHelp(this.textRecognizePattern, true);
this.textRecognizePattern.Size = new System.Drawing.Size(283, 20);
this.textRecognizePattern.TabIndex = 8;
this.toolTip.SetToolTip(this.textRecognizePattern, "A folder or file which Notpod will use to identify your device. Has to be unique " +
"for your device, i.e. MySonyPsP.txt");
//
// textMediaRoot
//
this.textMediaRoot.Enabled = false;
this.textMediaRoot.Location = new System.Drawing.Point(140, 67);
this.textMediaRoot.Name = "textMediaRoot";
this.textMediaRoot.Size = new System.Drawing.Size(283, 20);
this.textMediaRoot.TabIndex = 5;
this.toolTip.SetToolTip(this.textMediaRoot, "Specify the location on your device where I will store the music when synchronizi" +
"ng. Note that this should be a folder on your device, not on your local computer" +
".");
//
// groupBox2
//
this.groupBox2.Controls.Add(this.groupDeviceInformation);
this.groupBox2.Controls.Add(this.listDevices);
this.groupBox2.Location = new System.Drawing.Point(2, 104);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(512, 357);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Devices";
//
// groupDeviceInformation
//
this.groupDeviceInformation.Controls.Add(this.buttonCreateUniqueFile);
this.groupDeviceInformation.Controls.Add(this.comboAssociatePlaylist);
this.groupDeviceInformation.Controls.Add(this.label5);
this.groupDeviceInformation.Controls.Add(this.buttonDelete);
this.groupDeviceInformation.Controls.Add(this.buttonSave);
this.groupDeviceInformation.Controls.Add(this.buttonNew);
this.groupDeviceInformation.Controls.Add(this.textRecognizePattern);
this.groupDeviceInformation.Controls.Add(this.label4);
this.groupDeviceInformation.Controls.Add(this.buttonBrowseMediaRoot);
this.groupDeviceInformation.Controls.Add(this.textMediaRoot);
this.groupDeviceInformation.Controls.Add(this.label3);
this.groupDeviceInformation.Controls.Add(this.comboSyncPatterns);
this.groupDeviceInformation.Controls.Add(this.label2);
this.groupDeviceInformation.Controls.Add(this.textDeviceName);
this.groupDeviceInformation.Controls.Add(this.label1);
this.groupDeviceInformation.Location = new System.Drawing.Point(6, 182);
this.groupDeviceInformation.Name = "groupDeviceInformation";
this.groupDeviceInformation.Size = new System.Drawing.Size(500, 167);
this.groupDeviceInformation.TabIndex = 1;
this.groupDeviceInformation.TabStop = false;
this.groupDeviceInformation.Text = "Device information";
//
// comboAssociatePlaylist
//
this.comboAssociatePlaylist.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboAssociatePlaylist.Enabled = false;
this.comboAssociatePlaylist.FormattingEnabled = true;
this.comboAssociatePlaylist.Items.AddRange(new object[] {
"Use device name..."});
this.comboAssociatePlaylist.Location = new System.Drawing.Point(140, 115);
this.comboAssociatePlaylist.Name = "comboAssociatePlaylist";
this.comboAssociatePlaylist.Size = new System.Drawing.Size(354, 21);
this.comboAssociatePlaylist.TabIndex = 13;
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(6, 119);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(112, 13);
this.label5.TabIndex = 12;
this.label5.Text = "Associate with playlist:";
//
// buttonDelete
//
this.buttonDelete.Enabled = false;
this.buttonDelete.Location = new System.Drawing.Point(290, 138);
this.buttonDelete.Name = "buttonDelete";
this.buttonDelete.Size = new System.Drawing.Size(84, 23);
this.buttonDelete.TabIndex = 11;
this.buttonDelete.Text = "&Delete device";
this.buttonDelete.UseVisualStyleBackColor = true;
this.buttonDelete.Click += new System.EventHandler(this.buttonDelete_Click);
//
// buttonSave
//
this.buttonSave.Enabled = false;
this.buttonSave.Location = new System.Drawing.Point(215, 138);
this.buttonSave.Name = "buttonSave";
this.buttonSave.Size = new System.Drawing.Size(75, 23);
this.buttonSave.TabIndex = 10;
this.buttonSave.Text = "&Save device";
this.buttonSave.UseVisualStyleBackColor = true;
this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
//
// buttonNew
//
this.buttonNew.Location = new System.Drawing.Point(140, 138);
this.buttonNew.Name = "buttonNew";
this.buttonNew.Size = new System.Drawing.Size(75, 23);
this.buttonNew.TabIndex = 9;
this.buttonNew.Text = "&New device";
this.buttonNew.UseVisualStyleBackColor = true;
this.buttonNew.Click += new System.EventHandler(this.buttonNew_Click);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(6, 95);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(122, 13);
this.label4.TabIndex = 7;
this.label4.Text = "Recognize by folder/file:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(6, 71);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(128, 13);
this.label3.TabIndex = 4;
this.label3.Text = "Music location on device:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(6, 44);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(104, 13);
this.label2.TabIndex = 2;
this.label2.Text = "Synchronize pattern:";
//
// textDeviceName
//
this.textDeviceName.Enabled = false;
this.textDeviceName.Location = new System.Drawing.Point(140, 16);
this.textDeviceName.Name = "textDeviceName";
this.textDeviceName.Size = new System.Drawing.Size(354, 20);
this.textDeviceName.TabIndex = 1;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(6, 20);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(38, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Name:";
//
// listDevices
//
this.listDevices.Activation = System.Windows.Forms.ItemActivation.OneClick;
this.listDevices.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnName});
this.listDevices.FullRowSelect = true;
this.listDevices.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.listDevices.Location = new System.Drawing.Point(9, 16);
this.listDevices.MultiSelect = false;
this.listDevices.Name = "listDevices";
this.listDevices.Size = new System.Drawing.Size(497, 160);
this.listDevices.Sorting = System.Windows.Forms.SortOrder.Ascending;
this.listDevices.TabIndex = 0;
this.listDevices.UseCompatibleStateImageBehavior = false;
this.listDevices.View = System.Windows.Forms.View.Details;
this.listDevices.ItemActivate += new System.EventHandler(this.listDevices_ItemActivate);
//
// columnName
//
this.columnName.Text = "Name";
this.columnName.Width = 410;
//
// buttonCancel
//
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.buttonCancel.Location = new System.Drawing.Point(439, 465);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(75, 23);
this.buttonCancel.TabIndex = 2;
this.buttonCancel.Text = "&Close";
//
// buttonOK
//
this.buttonOK.Enabled = false;
this.buttonOK.Location = new System.Drawing.Point(2, 465);
this.buttonOK.Name = "buttonOK";
this.buttonOK.Size = new System.Drawing.Size(75, 23);
this.buttonOK.TabIndex = 3;
this.buttonOK.Text = "&Save";
this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
//
// ConfigurationForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.buttonCancel;
this.ClientSize = new System.Drawing.Size(518, 492);
this.Controls.Add(this.buttonOK);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.HelpButton = true;
this.Icon = global::Notpod.Properties.Resources.ita_new;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ConfigurationForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Notpod Preferences";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ConfigurationForm_FormClosing);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupDeviceInformation.ResumeLayout(false);
this.groupDeviceInformation.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.CheckBox checkNotifications;
private System.Windows.Forms.ToolTip toolTip;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Button buttonCancel;
private System.Windows.Forms.Button buttonOK;
private System.Windows.Forms.ListView listDevices;
private System.Windows.Forms.ColumnHeader columnName;
private System.Windows.Forms.GroupBox groupDeviceInformation;
private System.Windows.Forms.ComboBox comboSyncPatterns;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox textDeviceName;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox textRecognizePattern;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Button buttonBrowseMediaRoot;
private System.Windows.Forms.TextBox textMediaRoot;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Button buttonNew;
private System.Windows.Forms.Button buttonDelete;
private System.Windows.Forms.Button buttonSave;
private System.Windows.Forms.HelpProvider helpProvider;
private System.Windows.Forms.CheckBox checkUseListFolder;
private System.Windows.Forms.ComboBox comboAssociatePlaylist;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.CheckBox checkAutocloseSyncWindow;
private System.Windows.Forms.Button buttonCreateUniqueFile;
private System.Windows.Forms.CheckBox checkWarnOnSystemDrives;
private System.Windows.Forms.CheckBox checkConfirmMusicLocation;
}
}