| 1 | /* |
|---|
| 2 | * $Id$ |
|---|
| 3 | * Copyright 2008 The Eraser Project |
|---|
| 4 | * Original Author: Joel Low <lowjoel@users.sourceforge.net> |
|---|
| 5 | * Modified By: |
|---|
| 6 | * |
|---|
| 7 | * This file is part of Eraser. |
|---|
| 8 | * |
|---|
| 9 | * Eraser is free software: you can redistribute it and/or modify it under the |
|---|
| 10 | * terms of the GNU General Public License as published by the Free Software |
|---|
| 11 | * Foundation, either version 3 of the License, or (at your option) any later |
|---|
| 12 | * version. |
|---|
| 13 | * |
|---|
| 14 | * Eraser is distributed in the hope that it will be useful, but WITHOUT ANY |
|---|
| 15 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
|---|
| 16 | * A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
|---|
| 17 | * |
|---|
| 18 | * A copy of the GNU General Public License can be found at |
|---|
| 19 | * <http://www.gnu.org/licenses/>. |
|---|
| 20 | */ |
|---|
| 21 | |
|---|
| 22 | namespace Eraser.DefaultPlugins |
|---|
| 23 | { |
|---|
| 24 | partial class CustomMethodEditorForm |
|---|
| 25 | { |
|---|
| 26 | /// <summary> |
|---|
| 27 | /// Required designer variable. |
|---|
| 28 | /// </summary> |
|---|
| 29 | private System.ComponentModel.IContainer components = null; |
|---|
| 30 | |
|---|
| 31 | /// <summary> |
|---|
| 32 | /// Clean up any resources being used. |
|---|
| 33 | /// </summary> |
|---|
| 34 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> |
|---|
| 35 | protected override void Dispose(bool disposing) |
|---|
| 36 | { |
|---|
| 37 | if (disposing && (components != null)) |
|---|
| 38 | { |
|---|
| 39 | components.Dispose(); |
|---|
| 40 | } |
|---|
| 41 | base.Dispose(disposing); |
|---|
| 42 | } |
|---|
| 43 | |
|---|
| 44 | #region Windows Form Designer generated code |
|---|
| 45 | |
|---|
| 46 | /// <summary> |
|---|
| 47 | /// Required method for Designer support - do not modify |
|---|
| 48 | /// the contents of this method with the code editor. |
|---|
| 49 | /// </summary> |
|---|
| 50 | private void InitializeComponent() |
|---|
| 51 | { |
|---|
| 52 | this.components = new System.ComponentModel.Container(); |
|---|
| 53 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CustomMethodEditorForm)); |
|---|
| 54 | this.nameLbl = new System.Windows.Forms.Label(); |
|---|
| 55 | this.nameTxt = new System.Windows.Forms.TextBox(); |
|---|
| 56 | this.passesLv = new System.Windows.Forms.ListView(); |
|---|
| 57 | this.passesColNumber = new System.Windows.Forms.ColumnHeader(); |
|---|
| 58 | this.passesColType = new System.Windows.Forms.ColumnHeader(); |
|---|
| 59 | this.passesAddBtn = new System.Windows.Forms.Button(); |
|---|
| 60 | this.passesRemoveBtn = new System.Windows.Forms.Button(); |
|---|
| 61 | this.passesDuplicateBtn = new System.Windows.Forms.Button(); |
|---|
| 62 | this.passesMoveUpBtn = new System.Windows.Forms.Button(); |
|---|
| 63 | this.passesMoveDownBtn = new System.Windows.Forms.Button(); |
|---|
| 64 | this.passGrp = new System.Windows.Forms.GroupBox(); |
|---|
| 65 | this.passTxt = new System.Windows.Forms.TextBox(); |
|---|
| 66 | this.passTypeGrp = new System.Windows.Forms.FlowLayoutPanel(); |
|---|
| 67 | this.passTypeText = new System.Windows.Forms.RadioButton(); |
|---|
| 68 | this.passTypeHex = new System.Windows.Forms.RadioButton(); |
|---|
| 69 | this.passTypeRandom = new System.Windows.Forms.RadioButton(); |
|---|
| 70 | this.randomizeChk = new System.Windows.Forms.CheckBox(); |
|---|
| 71 | this.okBtn = new System.Windows.Forms.Button(); |
|---|
| 72 | this.cancelBtn = new System.Windows.Forms.Button(); |
|---|
| 73 | this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components); |
|---|
| 74 | this.passGrp.SuspendLayout(); |
|---|
| 75 | this.passTypeGrp.SuspendLayout(); |
|---|
| 76 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); |
|---|
| 77 | this.SuspendLayout(); |
|---|
| 78 | // |
|---|
| 79 | // nameLbl |
|---|
| 80 | // |
|---|
| 81 | resources.ApplyResources(this.nameLbl, "nameLbl"); |
|---|
| 82 | this.nameLbl.Name = "nameLbl"; |
|---|
| 83 | // |
|---|
| 84 | // nameTxt |
|---|
| 85 | // |
|---|
| 86 | resources.ApplyResources(this.nameTxt, "nameTxt"); |
|---|
| 87 | this.nameTxt.Name = "nameTxt"; |
|---|
| 88 | // |
|---|
| 89 | // passesLv |
|---|
| 90 | // |
|---|
| 91 | resources.ApplyResources(this.passesLv, "passesLv"); |
|---|
| 92 | this.passesLv.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { |
|---|
| 93 | this.passesColNumber, |
|---|
| 94 | this.passesColType}); |
|---|
| 95 | this.passesLv.FullRowSelect = true; |
|---|
| 96 | this.passesLv.HideSelection = false; |
|---|
| 97 | this.passesLv.Name = "passesLv"; |
|---|
| 98 | this.passesLv.UseCompatibleStateImageBehavior = false; |
|---|
| 99 | this.passesLv.View = System.Windows.Forms.View.Details; |
|---|
| 100 | this.passesLv.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.passesLv_ItemSelectionChanged); |
|---|
| 101 | // |
|---|
| 102 | // passesColNumber |
|---|
| 103 | // |
|---|
| 104 | resources.ApplyResources(this.passesColNumber, "passesColNumber"); |
|---|
| 105 | // |
|---|
| 106 | // passesColType |
|---|
| 107 | // |
|---|
| 108 | resources.ApplyResources(this.passesColType, "passesColType"); |
|---|
| 109 | // |
|---|
| 110 | // passesAddBtn |
|---|
| 111 | // |
|---|
| 112 | resources.ApplyResources(this.passesAddBtn, "passesAddBtn"); |
|---|
| 113 | this.passesAddBtn.Name = "passesAddBtn"; |
|---|
| 114 | this.passesAddBtn.UseVisualStyleBackColor = true; |
|---|
| 115 | this.passesAddBtn.Click += new System.EventHandler(this.passesAddBtn_Click); |
|---|
| 116 | // |
|---|
| 117 | // passesRemoveBtn |
|---|
| 118 | // |
|---|
| 119 | resources.ApplyResources(this.passesRemoveBtn, "passesRemoveBtn"); |
|---|
| 120 | this.passesRemoveBtn.Name = "passesRemoveBtn"; |
|---|
| 121 | this.passesRemoveBtn.UseVisualStyleBackColor = true; |
|---|
| 122 | this.passesRemoveBtn.Click += new System.EventHandler(this.passesRemoveBtn_Click); |
|---|
| 123 | // |
|---|
| 124 | // passesDuplicateBtn |
|---|
| 125 | // |
|---|
| 126 | resources.ApplyResources(this.passesDuplicateBtn, "passesDuplicateBtn"); |
|---|
| 127 | this.passesDuplicateBtn.Name = "passesDuplicateBtn"; |
|---|
| 128 | this.passesDuplicateBtn.UseVisualStyleBackColor = true; |
|---|
| 129 | this.passesDuplicateBtn.Click += new System.EventHandler(this.passesDuplicateBtn_Click); |
|---|
| 130 | // |
|---|
| 131 | // passesMoveUpBtn |
|---|
| 132 | // |
|---|
| 133 | resources.ApplyResources(this.passesMoveUpBtn, "passesMoveUpBtn"); |
|---|
| 134 | this.passesMoveUpBtn.Name = "passesMoveUpBtn"; |
|---|
| 135 | this.passesMoveUpBtn.UseVisualStyleBackColor = true; |
|---|
| 136 | this.passesMoveUpBtn.Click += new System.EventHandler(this.passesMoveUpBtn_Click); |
|---|
| 137 | // |
|---|
| 138 | // passesMoveDownBtn |
|---|
| 139 | // |
|---|
| 140 | resources.ApplyResources(this.passesMoveDownBtn, "passesMoveDownBtn"); |
|---|
| 141 | this.passesMoveDownBtn.Name = "passesMoveDownBtn"; |
|---|
| 142 | this.passesMoveDownBtn.UseVisualStyleBackColor = true; |
|---|
| 143 | this.passesMoveDownBtn.Click += new System.EventHandler(this.passesMoveDownBtn_Click); |
|---|
| 144 | // |
|---|
| 145 | // passGrp |
|---|
| 146 | // |
|---|
| 147 | resources.ApplyResources(this.passGrp, "passGrp"); |
|---|
| 148 | this.passGrp.Controls.Add(this.passTxt); |
|---|
| 149 | this.passGrp.Controls.Add(this.passTypeGrp); |
|---|
| 150 | this.passGrp.Name = "passGrp"; |
|---|
| 151 | this.passGrp.TabStop = false; |
|---|
| 152 | // |
|---|
| 153 | // passTxt |
|---|
| 154 | // |
|---|
| 155 | resources.ApplyResources(this.passTxt, "passTxt"); |
|---|
| 156 | this.passTxt.Name = "passTxt"; |
|---|
| 157 | // |
|---|
| 158 | // passTypeGrp |
|---|
| 159 | // |
|---|
| 160 | resources.ApplyResources(this.passTypeGrp, "passTypeGrp"); |
|---|
| 161 | this.passTypeGrp.Controls.Add(this.passTypeText); |
|---|
| 162 | this.passTypeGrp.Controls.Add(this.passTypeHex); |
|---|
| 163 | this.passTypeGrp.Controls.Add(this.passTypeRandom); |
|---|
| 164 | this.passTypeGrp.Name = "passTypeGrp"; |
|---|
| 165 | // |
|---|
| 166 | // passTypeText |
|---|
| 167 | // |
|---|
| 168 | resources.ApplyResources(this.passTypeText, "passTypeText"); |
|---|
| 169 | this.passTypeText.Checked = true; |
|---|
| 170 | this.passTypeText.Name = "passTypeText"; |
|---|
| 171 | this.passTypeText.TabStop = true; |
|---|
| 172 | this.passTypeText.UseVisualStyleBackColor = true; |
|---|
| 173 | this.passTypeText.CheckedChanged += new System.EventHandler(this.passType_CheckedChanged); |
|---|
| 174 | // |
|---|
| 175 | // passTypeHex |
|---|
| 176 | // |
|---|
| 177 | resources.ApplyResources(this.passTypeHex, "passTypeHex"); |
|---|
| 178 | this.passTypeHex.Name = "passTypeHex"; |
|---|
| 179 | this.passTypeHex.UseVisualStyleBackColor = true; |
|---|
| 180 | this.passTypeHex.CheckedChanged += new System.EventHandler(this.passType_CheckedChanged); |
|---|
| 181 | // |
|---|
| 182 | // passTypeRandom |
|---|
| 183 | // |
|---|
| 184 | resources.ApplyResources(this.passTypeRandom, "passTypeRandom"); |
|---|
| 185 | this.passTypeRandom.Name = "passTypeRandom"; |
|---|
| 186 | this.passTypeRandom.UseVisualStyleBackColor = true; |
|---|
| 187 | this.passTypeRandom.CheckedChanged += new System.EventHandler(this.passType_CheckedChanged); |
|---|
| 188 | // |
|---|
| 189 | // randomizeChk |
|---|
| 190 | // |
|---|
| 191 | resources.ApplyResources(this.randomizeChk, "randomizeChk"); |
|---|
| 192 | this.randomizeChk.Name = "randomizeChk"; |
|---|
| 193 | this.randomizeChk.UseVisualStyleBackColor = true; |
|---|
| 194 | // |
|---|
| 195 | // okBtn |
|---|
| 196 | // |
|---|
| 197 | resources.ApplyResources(this.okBtn, "okBtn"); |
|---|
| 198 | this.okBtn.Name = "okBtn"; |
|---|
| 199 | this.okBtn.UseVisualStyleBackColor = true; |
|---|
| 200 | this.okBtn.Click += new System.EventHandler(this.okBtn_Click); |
|---|
| 201 | // |
|---|
| 202 | // cancelBtn |
|---|
| 203 | // |
|---|
| 204 | resources.ApplyResources(this.cancelBtn, "cancelBtn"); |
|---|
| 205 | this.cancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel; |
|---|
| 206 | this.cancelBtn.Name = "cancelBtn"; |
|---|
| 207 | this.cancelBtn.UseVisualStyleBackColor = true; |
|---|
| 208 | // |
|---|
| 209 | // errorProvider |
|---|
| 210 | // |
|---|
| 211 | this.errorProvider.ContainerControl = this; |
|---|
| 212 | // |
|---|
| 213 | // CustomMethodEditorForm |
|---|
| 214 | // |
|---|
| 215 | this.AcceptButton = this.okBtn; |
|---|
| 216 | resources.ApplyResources(this, "$this"); |
|---|
| 217 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; |
|---|
| 218 | this.CancelButton = this.cancelBtn; |
|---|
| 219 | this.Controls.Add(this.okBtn); |
|---|
| 220 | this.Controls.Add(this.cancelBtn); |
|---|
| 221 | this.Controls.Add(this.randomizeChk); |
|---|
| 222 | this.Controls.Add(this.passGrp); |
|---|
| 223 | this.Controls.Add(this.passesMoveDownBtn); |
|---|
| 224 | this.Controls.Add(this.passesMoveUpBtn); |
|---|
| 225 | this.Controls.Add(this.passesDuplicateBtn); |
|---|
| 226 | this.Controls.Add(this.passesRemoveBtn); |
|---|
| 227 | this.Controls.Add(this.passesAddBtn); |
|---|
| 228 | this.Controls.Add(this.passesLv); |
|---|
| 229 | this.Controls.Add(this.nameTxt); |
|---|
| 230 | this.Controls.Add(this.nameLbl); |
|---|
| 231 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; |
|---|
| 232 | this.MaximizeBox = false; |
|---|
| 233 | this.MinimizeBox = false; |
|---|
| 234 | this.Name = "CustomMethodEditorForm"; |
|---|
| 235 | this.ShowInTaskbar = false; |
|---|
| 236 | this.passGrp.ResumeLayout(false); |
|---|
| 237 | this.passGrp.PerformLayout(); |
|---|
| 238 | this.passTypeGrp.ResumeLayout(false); |
|---|
| 239 | this.passTypeGrp.PerformLayout(); |
|---|
| 240 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit(); |
|---|
| 241 | this.ResumeLayout(false); |
|---|
| 242 | this.PerformLayout(); |
|---|
| 243 | |
|---|
| 244 | } |
|---|
| 245 | |
|---|
| 246 | #endregion |
|---|
| 247 | |
|---|
| 248 | private System.Windows.Forms.Label nameLbl; |
|---|
| 249 | private System.Windows.Forms.TextBox nameTxt; |
|---|
| 250 | private System.Windows.Forms.ListView passesLv; |
|---|
| 251 | private System.Windows.Forms.Button passesAddBtn; |
|---|
| 252 | private System.Windows.Forms.Button passesRemoveBtn; |
|---|
| 253 | private System.Windows.Forms.Button passesDuplicateBtn; |
|---|
| 254 | private System.Windows.Forms.Button passesMoveUpBtn; |
|---|
| 255 | private System.Windows.Forms.Button passesMoveDownBtn; |
|---|
| 256 | private System.Windows.Forms.GroupBox passGrp; |
|---|
| 257 | private System.Windows.Forms.FlowLayoutPanel passTypeGrp; |
|---|
| 258 | private System.Windows.Forms.RadioButton passTypeText; |
|---|
| 259 | private System.Windows.Forms.RadioButton passTypeHex; |
|---|
| 260 | private System.Windows.Forms.RadioButton passTypeRandom; |
|---|
| 261 | private System.Windows.Forms.CheckBox randomizeChk; |
|---|
| 262 | private System.Windows.Forms.ColumnHeader passesColNumber; |
|---|
| 263 | private System.Windows.Forms.ColumnHeader passesColType; |
|---|
| 264 | private System.Windows.Forms.Button okBtn; |
|---|
| 265 | private System.Windows.Forms.Button cancelBtn; |
|---|
| 266 | private System.Windows.Forms.TextBox passTxt; |
|---|
| 267 | private System.Windows.Forms.ErrorProvider errorProvider; |
|---|
| 268 | } |
|---|
| 269 | } |
|---|