/* * Greenshot - a free and open source screenshot tool * Copyright (C) 2007-2012 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 GreenshotOCR { 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.comboBox_languages = new System.Windows.Forms.ComboBox(); this.checkBox_orientImage = new System.Windows.Forms.CheckBox(); this.checkBox_straightenImage = new System.Windows.Forms.CheckBox(); this.label_language = new System.Windows.Forms.Label(); this.buttonOK = new System.Windows.Forms.Button(); this.buttonCancel = new System.Windows.Forms.Button(); this.ocr_hotkeyControl = new GreenshotPlugin.Controls.HotkeyControl(); this.label1 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // comboBox_languages // this.comboBox_languages.FormattingEnabled = true; this.comboBox_languages.Items.AddRange(new object[] { "English", "Deutsch"}); this.comboBox_languages.Location = new System.Drawing.Point(74, 12); this.comboBox_languages.Name = "comboBox_languages"; this.comboBox_languages.Size = new System.Drawing.Size(153, 21); this.comboBox_languages.TabIndex = 0; // // checkBox_orientImage // this.checkBox_orientImage.Location = new System.Drawing.Point(13, 68); this.checkBox_orientImage.Name = "checkBox_orientImage"; this.checkBox_orientImage.Size = new System.Drawing.Size(104, 24); this.checkBox_orientImage.TabIndex = 1; this.checkBox_orientImage.Text = "Orient image"; this.checkBox_orientImage.UseVisualStyleBackColor = true; // // checkBox_straightenImage // this.checkBox_straightenImage.Location = new System.Drawing.Point(118, 68); this.checkBox_straightenImage.Name = "checkBox_straightenImage"; this.checkBox_straightenImage.Size = new System.Drawing.Size(109, 24); this.checkBox_straightenImage.TabIndex = 2; this.checkBox_straightenImage.Text = "Straighten image"; this.checkBox_straightenImage.UseVisualStyleBackColor = true; // // label_language // this.label_language.Location = new System.Drawing.Point(13, 15); this.label_language.Name = "label_language"; this.label_language.Size = new System.Drawing.Size(55, 23); this.label_language.TabIndex = 3; this.label_language.Text = "Language"; // // buttonOK // this.buttonOK.Location = new System.Drawing.Point(12, 98); this.buttonOK.Name = "buttonOK"; this.buttonOK.Size = new System.Drawing.Size(104, 23); this.buttonOK.TabIndex = 4; this.buttonOK.Text = "OK"; this.buttonOK.UseVisualStyleBackColor = true; this.buttonOK.Click += new System.EventHandler(this.ButtonOKClick); // // buttonCancel // this.buttonCancel.Location = new System.Drawing.Point(122, 98); this.buttonCancel.Name = "buttonCancel"; this.buttonCancel.Size = new System.Drawing.Size(104, 23); this.buttonCancel.TabIndex = 5; this.buttonCancel.Text = "Cancel"; this.buttonCancel.UseVisualStyleBackColor = true; this.buttonCancel.Click += new System.EventHandler(this.ButtonCancelClick); // // ocr_hotkeyControl // this.ocr_hotkeyControl.Hotkey = System.Windows.Forms.Keys.None; this.ocr_hotkeyControl.HotkeyModifiers = System.Windows.Forms.Keys.None; this.ocr_hotkeyControl.Location = new System.Drawing.Point(74, 39); this.ocr_hotkeyControl.Name = "ocr_hotkeyControl"; this.ocr_hotkeyControl.Size = new System.Drawing.Size(153, 20); this.ocr_hotkeyControl.TabIndex = 6; // // label1 // this.label1.ForeColor = System.Drawing.SystemColors.ControlText; this.label1.Location = new System.Drawing.Point(13, 42); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(55, 23); this.label1.TabIndex = 7; this.label1.Text = "Hotkey"; // // SettingsForm // this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.ClientSize = new System.Drawing.Size(244, 135); this.Controls.Add(this.label1); this.Controls.Add(this.ocr_hotkeyControl); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.buttonOK); this.Controls.Add(this.label_language); this.Controls.Add(this.checkBox_straightenImage); this.Controls.Add(this.checkBox_orientImage); this.Controls.Add(this.comboBox_languages); this.Name = "SettingsForm"; this.Text = "SettingsForm"; this.ResumeLayout(false); this.PerformLayout(); } private System.Windows.Forms.Label label1; private GreenshotPlugin.Controls.HotkeyControl ocr_hotkeyControl; private System.Windows.Forms.Label label_language; private System.Windows.Forms.Button buttonCancel; private System.Windows.Forms.Button buttonOK; private System.Windows.Forms.CheckBox checkBox_orientImage; private System.Windows.Forms.CheckBox checkBox_straightenImage; private System.Windows.Forms.ComboBox comboBox_languages; } }