1 |
william |
148 |
namespace RomCheater.Docking |
2 |
|
|
{ |
3 |
|
|
partial class FloatingRamDumperDialog |
4 |
|
|
{ |
5 |
|
|
/// <summary> |
6 |
|
|
/// Required designer variable. |
7 |
|
|
/// </summary> |
8 |
|
|
private System.ComponentModel.IContainer components = null; |
9 |
|
|
|
10 |
|
|
/// <summary> |
11 |
|
|
/// Clean up any resources being used. |
12 |
|
|
/// </summary> |
13 |
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> |
14 |
|
|
protected override void Dispose(bool disposing) |
15 |
|
|
{ |
16 |
|
|
if (disposing && (components != null)) |
17 |
|
|
{ |
18 |
|
|
components.Dispose(); |
19 |
|
|
} |
20 |
|
|
base.Dispose(disposing); |
21 |
|
|
} |
22 |
|
|
|
23 |
|
|
#region Windows Form Designer generated code |
24 |
|
|
|
25 |
|
|
/// <summary> |
26 |
|
|
/// Required method for Designer support - do not modify |
27 |
|
|
/// the contents of this method with the code editor. |
28 |
|
|
/// </summary> |
29 |
|
|
private void InitializeComponent() |
30 |
|
|
{ |
31 |
|
|
this.lblStart = new System.Windows.Forms.Label(); |
32 |
william |
154 |
this.txtStart = new System.Windows.Forms.MaskedHexBox(); |
33 |
william |
148 |
this.lblEnd = new System.Windows.Forms.Label(); |
34 |
|
|
this.txtEnd = new System.Windows.Forms.MaskedHexBox(); |
35 |
william |
154 |
this.grpBoxDumpSize = new System.Windows.Forms.GroupBox(); |
36 |
|
|
this.lblDumpSize = new System.Windows.Forms.Label(); |
37 |
|
|
this.txtDumpSize = new System.Windows.Forms.TextBox(); |
38 |
|
|
this.radioBTNGigaBytes = new System.Windows.Forms.RadioButton(); |
39 |
|
|
this.radioBTNMegaBytes = new System.Windows.Forms.RadioButton(); |
40 |
|
|
this.radioBTNKiloBytes = new System.Windows.Forms.RadioButton(); |
41 |
|
|
this.radioBTNBytes = new System.Windows.Forms.RadioButton(); |
42 |
william |
165 |
this.btnCalcEndAddr = new System.Windows.Forms.Button(); |
43 |
william |
154 |
this.btnCalcStartAddr = new System.Windows.Forms.Button(); |
44 |
|
|
this.btnCalcDumpSize = new System.Windows.Forms.Button(); |
45 |
william |
156 |
this.btnDumpRam = new System.Windows.Forms.Button(); |
46 |
|
|
this.dumpsaver = new System.Windows.Forms.SaveFileDialog(); |
47 |
william |
165 |
this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel(); |
48 |
william |
154 |
this.grpBoxDumpSize.SuspendLayout(); |
49 |
william |
165 |
this.flowLayoutPanel1.SuspendLayout(); |
50 |
william |
148 |
this.SuspendLayout(); |
51 |
|
|
// |
52 |
|
|
// lblStart |
53 |
|
|
// |
54 |
|
|
this.lblStart.AutoSize = true; |
55 |
william |
165 |
this.lblStart.Location = new System.Drawing.Point(12, 9); |
56 |
william |
148 |
this.lblStart.Name = "lblStart"; |
57 |
|
|
this.lblStart.Size = new System.Drawing.Size(73, 13); |
58 |
|
|
this.lblStart.TabIndex = 0; |
59 |
|
|
this.lblStart.Text = "Start Address:"; |
60 |
|
|
// |
61 |
|
|
// txtStart |
62 |
|
|
// |
63 |
|
|
this.txtStart.AutoSize = true; |
64 |
|
|
this.txtStart.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
65 |
|
|
this.txtStart.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
66 |
|
|
this.txtStart.isAddressMask = true; |
67 |
william |
165 |
this.txtStart.Location = new System.Drawing.Point(88, 9); |
68 |
william |
148 |
this.txtStart.Margin = new System.Windows.Forms.Padding(0); |
69 |
william |
165 |
this.txtStart.MaxLength = 16; |
70 |
william |
148 |
this.txtStart.Name = "txtStart"; |
71 |
|
|
this.txtStart.ReadOnly = false; |
72 |
william |
165 |
this.txtStart.Size = new System.Drawing.Size(263, 24); |
73 |
william |
148 |
this.txtStart.TabIndex = 2; |
74 |
william |
165 |
this.txtStart.TextLength = 16; |
75 |
william |
148 |
this.txtStart.Value = ((ulong)(0ul)); |
76 |
|
|
// |
77 |
william |
154 |
// lblEnd |
78 |
|
|
// |
79 |
|
|
this.lblEnd.AutoSize = true; |
80 |
william |
165 |
this.lblEnd.Location = new System.Drawing.Point(15, 33); |
81 |
william |
154 |
this.lblEnd.Name = "lblEnd"; |
82 |
|
|
this.lblEnd.Size = new System.Drawing.Size(70, 13); |
83 |
|
|
this.lblEnd.TabIndex = 1; |
84 |
|
|
this.lblEnd.Text = "End Address:"; |
85 |
|
|
// |
86 |
william |
148 |
// txtEnd |
87 |
|
|
// |
88 |
|
|
this.txtEnd.AutoSize = true; |
89 |
|
|
this.txtEnd.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
90 |
|
|
this.txtEnd.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
91 |
|
|
this.txtEnd.isAddressMask = true; |
92 |
william |
165 |
this.txtEnd.Location = new System.Drawing.Point(85, 33); |
93 |
william |
148 |
this.txtEnd.Margin = new System.Windows.Forms.Padding(0); |
94 |
william |
165 |
this.txtEnd.MaxLength = 16; |
95 |
william |
148 |
this.txtEnd.Name = "txtEnd"; |
96 |
|
|
this.txtEnd.ReadOnly = false; |
97 |
william |
165 |
this.txtEnd.Size = new System.Drawing.Size(266, 24); |
98 |
william |
148 |
this.txtEnd.TabIndex = 3; |
99 |
william |
165 |
this.txtEnd.TextLength = 16; |
100 |
william |
148 |
this.txtEnd.Value = ((ulong)(0ul)); |
101 |
|
|
// |
102 |
william |
154 |
// grpBoxDumpSize |
103 |
|
|
// |
104 |
william |
165 |
this.grpBoxDumpSize.Controls.Add(this.flowLayoutPanel1); |
105 |
william |
154 |
this.grpBoxDumpSize.Controls.Add(this.lblDumpSize); |
106 |
|
|
this.grpBoxDumpSize.Controls.Add(this.txtDumpSize); |
107 |
william |
165 |
this.grpBoxDumpSize.Location = new System.Drawing.Point(33, 76); |
108 |
william |
154 |
this.grpBoxDumpSize.Name = "grpBoxDumpSize"; |
109 |
william |
165 |
this.grpBoxDumpSize.Size = new System.Drawing.Size(302, 76); |
110 |
william |
154 |
this.grpBoxDumpSize.TabIndex = 4; |
111 |
|
|
this.grpBoxDumpSize.TabStop = false; |
112 |
|
|
this.grpBoxDumpSize.Text = "Dump Size"; |
113 |
|
|
// |
114 |
|
|
// lblDumpSize |
115 |
|
|
// |
116 |
|
|
this.lblDumpSize.AutoSize = true; |
117 |
william |
165 |
this.lblDumpSize.Location = new System.Drawing.Point(6, 49); |
118 |
william |
154 |
this.lblDumpSize.Name = "lblDumpSize"; |
119 |
|
|
this.lblDumpSize.Size = new System.Drawing.Size(89, 13); |
120 |
|
|
this.lblDumpSize.TabIndex = 5; |
121 |
|
|
this.lblDumpSize.Text = "Enter Dump Size:"; |
122 |
|
|
// |
123 |
|
|
// txtDumpSize |
124 |
|
|
// |
125 |
william |
165 |
this.txtDumpSize.Location = new System.Drawing.Point(98, 49); |
126 |
william |
154 |
this.txtDumpSize.MaxLength = 10; |
127 |
|
|
this.txtDumpSize.Name = "txtDumpSize"; |
128 |
william |
165 |
this.txtDumpSize.Size = new System.Drawing.Size(196, 20); |
129 |
william |
154 |
this.txtDumpSize.TabIndex = 4; |
130 |
|
|
this.txtDumpSize.Text = "0.00"; |
131 |
|
|
this.txtDumpSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; |
132 |
|
|
// |
133 |
|
|
// radioBTNGigaBytes |
134 |
|
|
// |
135 |
|
|
this.radioBTNGigaBytes.AutoSize = true; |
136 |
william |
165 |
this.flowLayoutPanel1.SetFlowBreak(this.radioBTNGigaBytes, true); |
137 |
|
|
this.radioBTNGigaBytes.Location = new System.Drawing.Point(218, 3); |
138 |
william |
154 |
this.radioBTNGigaBytes.Name = "radioBTNGigaBytes"; |
139 |
|
|
this.radioBTNGigaBytes.Size = new System.Drawing.Size(73, 17); |
140 |
|
|
this.radioBTNGigaBytes.TabIndex = 3; |
141 |
|
|
this.radioBTNGigaBytes.Text = "GigaBytes"; |
142 |
|
|
this.radioBTNGigaBytes.UseVisualStyleBackColor = true; |
143 |
|
|
this.radioBTNGigaBytes.CheckedChanged += new System.EventHandler(this.radioBTNGigaBytes_CheckedChanged); |
144 |
|
|
// |
145 |
|
|
// radioBTNMegaBytes |
146 |
|
|
// |
147 |
|
|
this.radioBTNMegaBytes.AutoSize = true; |
148 |
william |
165 |
this.radioBTNMegaBytes.Location = new System.Drawing.Point(134, 3); |
149 |
william |
154 |
this.radioBTNMegaBytes.Name = "radioBTNMegaBytes"; |
150 |
|
|
this.radioBTNMegaBytes.Size = new System.Drawing.Size(78, 17); |
151 |
|
|
this.radioBTNMegaBytes.TabIndex = 2; |
152 |
|
|
this.radioBTNMegaBytes.Text = "MegaBytes"; |
153 |
|
|
this.radioBTNMegaBytes.UseVisualStyleBackColor = true; |
154 |
|
|
this.radioBTNMegaBytes.CheckedChanged += new System.EventHandler(this.radioBTNMegaBytes_CheckedChanged); |
155 |
|
|
// |
156 |
|
|
// radioBTNKiloBytes |
157 |
|
|
// |
158 |
|
|
this.radioBTNKiloBytes.AutoSize = true; |
159 |
william |
165 |
this.radioBTNKiloBytes.Location = new System.Drawing.Point(60, 3); |
160 |
william |
154 |
this.radioBTNKiloBytes.Name = "radioBTNKiloBytes"; |
161 |
|
|
this.radioBTNKiloBytes.Size = new System.Drawing.Size(68, 17); |
162 |
|
|
this.radioBTNKiloBytes.TabIndex = 1; |
163 |
|
|
this.radioBTNKiloBytes.Text = "KiloBytes"; |
164 |
|
|
this.radioBTNKiloBytes.UseVisualStyleBackColor = true; |
165 |
|
|
this.radioBTNKiloBytes.CheckedChanged += new System.EventHandler(this.radioBTNKiloBytes_CheckedChanged); |
166 |
|
|
// |
167 |
|
|
// radioBTNBytes |
168 |
|
|
// |
169 |
|
|
this.radioBTNBytes.AutoSize = true; |
170 |
|
|
this.radioBTNBytes.Checked = true; |
171 |
william |
165 |
this.radioBTNBytes.Location = new System.Drawing.Point(3, 3); |
172 |
william |
154 |
this.radioBTNBytes.Name = "radioBTNBytes"; |
173 |
|
|
this.radioBTNBytes.Size = new System.Drawing.Size(51, 17); |
174 |
|
|
this.radioBTNBytes.TabIndex = 0; |
175 |
|
|
this.radioBTNBytes.TabStop = true; |
176 |
|
|
this.radioBTNBytes.Text = "Bytes"; |
177 |
|
|
this.radioBTNBytes.UseVisualStyleBackColor = true; |
178 |
|
|
this.radioBTNBytes.CheckedChanged += new System.EventHandler(this.radioBTNBytes_CheckedChanged); |
179 |
|
|
// |
180 |
william |
165 |
// btnCalcEndAddr |
181 |
|
|
// |
182 |
|
|
this.btnCalcEndAddr.Location = new System.Drawing.Point(39, 167); |
183 |
|
|
this.btnCalcEndAddr.Name = "btnCalcEndAddr"; |
184 |
|
|
this.btnCalcEndAddr.Size = new System.Drawing.Size(137, 50); |
185 |
|
|
this.btnCalcEndAddr.TabIndex = 9; |
186 |
|
|
this.btnCalcEndAddr.Text = "Calculate Ending Address from Dump Size"; |
187 |
|
|
this.btnCalcEndAddr.UseVisualStyleBackColor = true; |
188 |
|
|
this.btnCalcEndAddr.Click += new System.EventHandler(this.btnCalcEndAddr_Click); |
189 |
|
|
// |
190 |
william |
154 |
// btnCalcStartAddr |
191 |
|
|
// |
192 |
william |
165 |
this.btnCalcStartAddr.Location = new System.Drawing.Point(182, 167); |
193 |
william |
154 |
this.btnCalcStartAddr.Name = "btnCalcStartAddr"; |
194 |
|
|
this.btnCalcStartAddr.Size = new System.Drawing.Size(137, 50); |
195 |
|
|
this.btnCalcStartAddr.TabIndex = 10; |
196 |
|
|
this.btnCalcStartAddr.Text = "Calculate Starting Address from Dump Size"; |
197 |
|
|
this.btnCalcStartAddr.UseVisualStyleBackColor = true; |
198 |
|
|
this.btnCalcStartAddr.Click += new System.EventHandler(this.btnCalcStartAddr_Click); |
199 |
|
|
// |
200 |
|
|
// btnCalcDumpSize |
201 |
|
|
// |
202 |
william |
165 |
this.btnCalcDumpSize.Location = new System.Drawing.Point(39, 223); |
203 |
william |
154 |
this.btnCalcDumpSize.Name = "btnCalcDumpSize"; |
204 |
|
|
this.btnCalcDumpSize.Size = new System.Drawing.Size(280, 50); |
205 |
|
|
this.btnCalcDumpSize.TabIndex = 8; |
206 |
|
|
this.btnCalcDumpSize.Text = "Calculate Dump Size from Start and End Address"; |
207 |
|
|
this.btnCalcDumpSize.UseVisualStyleBackColor = true; |
208 |
|
|
this.btnCalcDumpSize.Click += new System.EventHandler(this.btnCalcDumpSize_Click); |
209 |
|
|
// |
210 |
william |
156 |
// btnDumpRam |
211 |
|
|
// |
212 |
|
|
this.btnDumpRam.Font = new System.Drawing.Font("Arial Black", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
213 |
william |
165 |
this.btnDumpRam.Location = new System.Drawing.Point(39, 279); |
214 |
william |
156 |
this.btnDumpRam.Name = "btnDumpRam"; |
215 |
|
|
this.btnDumpRam.Size = new System.Drawing.Size(280, 50); |
216 |
|
|
this.btnDumpRam.TabIndex = 11; |
217 |
|
|
this.btnDumpRam.Text = "Dump Ram"; |
218 |
|
|
this.btnDumpRam.UseVisualStyleBackColor = true; |
219 |
|
|
this.btnDumpRam.Click += new System.EventHandler(this.btnDumpRam_Click); |
220 |
|
|
// |
221 |
|
|
// dumpsaver |
222 |
|
|
// |
223 |
|
|
this.dumpsaver.DefaultExt = "rawdump"; |
224 |
|
|
this.dumpsaver.FileName = "dump.rawdump"; |
225 |
|
|
this.dumpsaver.Filter = "Raw Dump Files|*.rawdump"; |
226 |
|
|
this.dumpsaver.SupportMultiDottedExtensions = true; |
227 |
|
|
this.dumpsaver.Title = "Please choose the file to save the ram dump to"; |
228 |
|
|
// |
229 |
william |
165 |
// flowLayoutPanel1 |
230 |
|
|
// |
231 |
|
|
this.flowLayoutPanel1.Controls.Add(this.radioBTNBytes); |
232 |
|
|
this.flowLayoutPanel1.Controls.Add(this.radioBTNKiloBytes); |
233 |
|
|
this.flowLayoutPanel1.Controls.Add(this.radioBTNMegaBytes); |
234 |
|
|
this.flowLayoutPanel1.Controls.Add(this.radioBTNGigaBytes); |
235 |
|
|
this.flowLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top; |
236 |
|
|
this.flowLayoutPanel1.Location = new System.Drawing.Point(3, 16); |
237 |
|
|
this.flowLayoutPanel1.Name = "flowLayoutPanel1"; |
238 |
|
|
this.flowLayoutPanel1.Size = new System.Drawing.Size(296, 30); |
239 |
|
|
this.flowLayoutPanel1.TabIndex = 12; |
240 |
|
|
// |
241 |
william |
148 |
// FloatingRamDumperDialog |
242 |
|
|
// |
243 |
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
244 |
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
245 |
william |
165 |
this.ClientSize = new System.Drawing.Size(367, 344); |
246 |
|
|
this.Controls.Add(this.lblStart); |
247 |
|
|
this.Controls.Add(this.txtStart); |
248 |
|
|
this.Controls.Add(this.lblEnd); |
249 |
|
|
this.Controls.Add(this.btnDumpRam); |
250 |
|
|
this.Controls.Add(this.txtEnd); |
251 |
|
|
this.Controls.Add(this.btnCalcDumpSize); |
252 |
|
|
this.Controls.Add(this.grpBoxDumpSize); |
253 |
|
|
this.Controls.Add(this.btnCalcStartAddr); |
254 |
|
|
this.Controls.Add(this.btnCalcEndAddr); |
255 |
william |
148 |
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
256 |
|
|
this.Name = "FloatingRamDumperDialog"; |
257 |
|
|
this.Text = "Ram Dump"; |
258 |
|
|
this.Load += new System.EventHandler(this.FloatingRamDumperDialog_Load); |
259 |
william |
154 |
this.grpBoxDumpSize.ResumeLayout(false); |
260 |
|
|
this.grpBoxDumpSize.PerformLayout(); |
261 |
william |
165 |
this.flowLayoutPanel1.ResumeLayout(false); |
262 |
|
|
this.flowLayoutPanel1.PerformLayout(); |
263 |
william |
148 |
this.ResumeLayout(false); |
264 |
william |
165 |
this.PerformLayout(); |
265 |
william |
148 |
|
266 |
|
|
} |
267 |
|
|
|
268 |
|
|
#endregion |
269 |
|
|
|
270 |
|
|
private System.Windows.Forms.Label lblStart; |
271 |
|
|
private System.Windows.Forms.MaskedHexBox txtStart; |
272 |
|
|
private System.Windows.Forms.Label lblEnd; |
273 |
|
|
private System.Windows.Forms.MaskedHexBox txtEnd; |
274 |
william |
154 |
internal System.Windows.Forms.GroupBox grpBoxDumpSize; |
275 |
|
|
internal System.Windows.Forms.Label lblDumpSize; |
276 |
|
|
internal System.Windows.Forms.TextBox txtDumpSize; |
277 |
|
|
internal System.Windows.Forms.RadioButton radioBTNGigaBytes; |
278 |
|
|
internal System.Windows.Forms.RadioButton radioBTNMegaBytes; |
279 |
|
|
internal System.Windows.Forms.RadioButton radioBTNKiloBytes; |
280 |
|
|
internal System.Windows.Forms.RadioButton radioBTNBytes; |
281 |
|
|
internal System.Windows.Forms.Button btnCalcEndAddr; |
282 |
|
|
internal System.Windows.Forms.Button btnCalcStartAddr; |
283 |
|
|
internal System.Windows.Forms.Button btnCalcDumpSize; |
284 |
william |
156 |
internal System.Windows.Forms.Button btnDumpRam; |
285 |
|
|
private System.Windows.Forms.SaveFileDialog dumpsaver; |
286 |
william |
165 |
private System.Windows.Forms.FlowLayoutPanel flowLayoutPanel1; |
287 |
william |
148 |
} |
288 |
|
|
} |