ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/Docking/FloatingRamDumperDialog.Designer.cs
Revision: 156
Committed: Mon May 28 04:14:03 2012 UTC (11 years ago) by william
File size: 15061 byte(s)
Log Message:
+ add support for selecting process by different means

File Contents

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