/* * Greenshot - a free and open source screenshot tool * Copyright (C) 2007-2010 Thomas Braun, Jens Klingen, Robin Krom * * For more information see: http://getgreenshot.org/ * The Greenshot project is hosted on Sourceforge: http://sourceforge.net/projects/greenshot/ * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 1 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ namespace RunAtOutput { partial class SettingsForm { /// /// Designer variable used to keep track of non-visual components. /// private System.ComponentModel.IContainer components = null; /// /// Disposes resources used by the form. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing) { if (components != null) { components.Dispose(); } } base.Dispose(disposing); } /// /// This method is required for Windows Forms designer support. /// Do not change the method contents inside the source code editor. The Forms designer might /// not be able to load this method if it was changed manually. /// private void InitializeComponent() { this.textBox_commandline = new System.Windows.Forms.TextBox(); this.buttonCancel = new System.Windows.Forms.Button(); this.buttonOk = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.textBox_arguments = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.listView1 = new System.Windows.Forms.ListView(); this.columnHeader1 = new System.Windows.Forms.ColumnHeader(); this.columnHeader2 = new System.Windows.Forms.ColumnHeader(); this.button1 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button(); this.label3 = new System.Windows.Forms.Label(); this.textBox_name = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // textBox_commandline // this.textBox_commandline.Location = new System.Drawing.Point(229, 245); this.textBox_commandline.Name = "textBox_commandline"; this.textBox_commandline.Size = new System.Drawing.Size(184, 20); this.textBox_commandline.TabIndex = 2; // // buttonCancel // this.buttonCancel.Location = new System.Drawing.Point(339, 302); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(75, 23); this.buttonCancel.TabIndex = 7; this.buttonCancel.Text = "Cancel"; this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.ButtonCancelClick); // // buttonOk // this.buttonOk.Location = new System.Drawing.Point(258, 302); this.buttonOk.Name = "buttonOk"; this.buttonOk.Size = new System.Drawing.Size(75, 23); this.buttonOk.TabIndex = 6; this.buttonOk.Text = "OK"; this.buttonOk.UseVisualStyleBackColor = true; this.buttonOk.Click += new System.EventHandler(this.ButtonOkClick); // // label1 // this.label1.Location = new System.Drawing.Point(153, 248); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(56, 17); this.label1.TabIndex = 3; this.label1.Text = "Command"; // // textBox_arguments // this.textBox_arguments.Location = new System.Drawing.Point(229, 271); this.textBox_arguments.Name = "textBox_arguments"; this.textBox_arguments.Size = new System.Drawing.Size(184, 20); this.textBox_arguments.TabIndex = 3; // // label2 // this.label2.Location = new System.Drawing.Point(153, 274); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(70, 17); this.label2.TabIndex = 5; this.label2.Text = "Arguments"; // // listView1 // this.listView1.CheckBoxes = true; this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.columnHeader1, this.columnHeader2}); this.listView1.FullRowSelect = true; this.listView1.Location = new System.Drawing.Point(13, 13); this.listView1.MultiSelect = false; this.listView1.Name = "listView1"; this.listView1.Size = new System.Drawing.Size(400, 183); this.listView1.Sorting = System.Windows.Forms.SortOrder.Ascending; this.listView1.TabIndex = 0; this.listView1.UseCompatibleStateImageBehavior = false; this.listView1.View = System.Windows.Forms.View.Details; this.listView1.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.ListView1ItemChecked); this.listView1.SelectedIndexChanged += new System.EventHandler(this.ListView1ItemSelectionChanged); // // columnHeader1 // this.columnHeader1.Text = "Active"; // // columnHeader2 // this.columnHeader2.Text = "Name"; this.columnHeader2.Width = 311; // // button1 // this.button1.Location = new System.Drawing.Point(13, 202); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(75, 23); this.button1.TabIndex = 4; this.button1.Text = "Add"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.ButtonAddClick); // // button2 // this.button2.Location = new System.Drawing.Point(12, 231); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(75, 23); this.button2.TabIndex = 5; this.button2.Text = "Delete"; this.button2.UseVisualStyleBackColor = true; this.button2.Click += new System.EventHandler(this.ButtonDeleteClick); // // label3 // this.label3.Location = new System.Drawing.Point(154, 222); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(56, 17); this.label3.TabIndex = 10; this.label3.Text = "Name"; // // textBox_name // this.textBox_name.Location = new System.Drawing.Point(230, 219); this.textBox_name.Name = "textBox_name"; this.textBox_name.Size = new System.Drawing.Size(184, 20); this.textBox_name.TabIndex = 1; // // SettingsForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(426, 336); this.Controls.Add(this.label3); this.Controls.Add(this.textBox_name); this.Controls.Add(this.button2); this.Controls.Add(this.button1); this.Controls.Add(this.listView1); this.Controls.Add(this.label2); this.Controls.Add(this.textBox_arguments); this.Controls.Add(this.label1); this.Controls.Add(this.buttonOk); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.textBox_commandline); this.Name = "SettingsForm"; this.Text = "Command Editor"; this.ResumeLayout(false); this.PerformLayout(); } private System.Windows.Forms.TextBox textBox_name; private System.Windows.Forms.Label label3; private System.Windows.Forms.Button button2; private System.Windows.Forms.Button button1; private System.Windows.Forms.ColumnHeader columnHeader2; private System.Windows.Forms.ColumnHeader columnHeader1; private System.Windows.Forms.ListView listView1; private System.Windows.Forms.TextBox textBox_arguments; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox textBox_commandline; private System.Windows.Forms.Label label1; private System.Windows.Forms.Button buttonOk; private System.Windows.Forms.Button buttonCancel; } }