Parent Directory
|
Revision Log
|
Patch
--- trunk/RomCheater/Docking/FloatingMemorySearcher.Designer.cs 2012/06/02 15:48:25 227 +++ trunk/RomCheater/Docking/FloatingMemorySearcher.Designer.cs 2012/06/02 18:31:40 229 @@ -28,19 +28,865 @@ /// </summary> private void InitializeComponent() { + this.components = new System.ComponentModel.Container(); + this.mainsplit = new System.Windows.Forms.SplitContainer(); + this.leftsplit = new System.Windows.Forms.SplitContainer(); + this.compare_flow = new System.Windows.Forms.FlowLayoutPanel(); + this.grpDataType = new System.Windows.Forms.GroupBox(); + this.datatype_flow = new System.Windows.Forms.FlowLayoutPanel(); + this.radio_8bits = new System.Windows.Forms.RadioButton(); + this.radio_16bits = new System.Windows.Forms.RadioButton(); + this.radio_32bits = new System.Windows.Forms.RadioButton(); + this.radio_64bits = new System.Windows.Forms.RadioButton(); + this.chkUnsigned = new System.Windows.Forms.CheckBox(); + this.grpCompareValue = new System.Windows.Forms.GroupBox(); + this.comparevalue_flow = new System.Windows.Forms.FlowLayoutPanel(); + this.radio_oldvalue = new System.Windows.Forms.RadioButton(); + this.radio_specificvalue = new System.Windows.Forms.RadioButton(); + this.lblStart = new System.Windows.Forms.Label(); + this.txtStartAddr = new System.Windows.Forms.MaskedHexBox(); + this.lblEnd = new System.Windows.Forms.Label(); + this.txtEndAddr = new System.Windows.Forms.MaskedHexBox(); + this.grpCompareType = new System.Windows.Forms.GroupBox(); + this.comparetype_flow = new System.Windows.Forms.FlowLayoutPanel(); + this.radiocompare_equal = new System.Windows.Forms.RadioButton(); + this.radiocompare_greaterthan = new System.Windows.Forms.RadioButton(); + this.radiocompare_lessthan = new System.Windows.Forms.RadioButton(); + this.radiocompare_greaterthan_orequal = new System.Windows.Forms.RadioButton(); + this.radiocompare_lessthan_orequal = new System.Windows.Forms.RadioButton(); + this.radiocompare_notequal = new System.Windows.Forms.RadioButton(); + this.radiocompare_between = new System.Windows.Forms.RadioButton(); + this.radiocompare_notbetween = new System.Windows.Forms.RadioButton(); + this.buttonflow = new System.Windows.Forms.FlowLayoutPanel(); + this.btnSearch = new System.Windows.Forms.Button(); + this.btnReset = new System.Windows.Forms.Button(); + this.btnCancel = new System.Windows.Forms.Button(); + this.chkRefreshResults = new System.Windows.Forms.CheckBox(); + this.splitresults = new System.Windows.Forms.SplitContainer(); + this.splitresultslist = new System.Windows.Forms.SplitContainer(); + this.lstResults = new System.Windows.Forms.AddressValuePairList(); + this.results_label_pnl = new System.Windows.Forms.Panel(); + this.lblResultsList = new Utilities.TransparentControls.Label.TransDirectionalLabel(); + this.lstPatchList = new System.Windows.Forms.AddressValuePairList(); + this.patch_tool_pnl = new System.Windows.Forms.Panel(); + this.patch_tool_pnl_flow = new System.Windows.Forms.FlowLayoutPanel(); + this.btnImportFile = new System.Windows.Forms.Button(); + this.btnExportFile = new System.Windows.Forms.Button(); + this.btnImportClipboard = new System.Windows.Forms.Button(); + this.btnExportClipboard = new System.Windows.Forms.Button(); + this.btnAddPatchAddress = new System.Windows.Forms.Button(); + this.btnAddAddressRange = new System.Windows.Forms.Button(); + this.patch_label_pnl = new System.Windows.Forms.Panel(); + this.lblPatchList = new Utilities.TransparentControls.Label.TransDirectionalLabel(); + this.resultsprogress = new Utilities.TransparentControls.ProgressBarWithPercentageLabel(); + this.timer_update_results = new System.Windows.Forms.Timer(this.components); + this.ResultsUpdateWorkerThread = new System.ComponentModel.BackgroundWorker(); + ((System.ComponentModel.ISupportInitialize)(this.mainsplit)).BeginInit(); + this.mainsplit.Panel1.SuspendLayout(); + this.mainsplit.Panel2.SuspendLayout(); + this.mainsplit.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.leftsplit)).BeginInit(); + this.leftsplit.Panel1.SuspendLayout(); + this.leftsplit.Panel2.SuspendLayout(); + this.leftsplit.SuspendLayout(); + this.compare_flow.SuspendLayout(); + this.grpDataType.SuspendLayout(); + this.datatype_flow.SuspendLayout(); + this.grpCompareValue.SuspendLayout(); + this.comparevalue_flow.SuspendLayout(); + this.grpCompareType.SuspendLayout(); + this.comparetype_flow.SuspendLayout(); + this.buttonflow.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.splitresults)).BeginInit(); + this.splitresults.Panel1.SuspendLayout(); + this.splitresults.Panel2.SuspendLayout(); + this.splitresults.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.splitresultslist)).BeginInit(); + this.splitresultslist.Panel1.SuspendLayout(); + this.splitresultslist.Panel2.SuspendLayout(); + this.splitresultslist.SuspendLayout(); + this.results_label_pnl.SuspendLayout(); + this.patch_tool_pnl.SuspendLayout(); + this.patch_tool_pnl_flow.SuspendLayout(); + this.patch_label_pnl.SuspendLayout(); this.SuspendLayout(); // + // mainsplit + // + this.mainsplit.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + this.mainsplit.Dock = System.Windows.Forms.DockStyle.Fill; + this.mainsplit.Location = new System.Drawing.Point(0, 0); + this.mainsplit.Name = "mainsplit"; + // + // mainsplit.Panel1 + // + this.mainsplit.Panel1.Controls.Add(this.leftsplit); + // + // mainsplit.Panel2 + // + this.mainsplit.Panel2.Controls.Add(this.splitresults); + this.mainsplit.Size = new System.Drawing.Size(1144, 668); + this.mainsplit.SplitterDistance = 390; + this.mainsplit.TabIndex = 0; + // + // leftsplit + // + this.leftsplit.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + this.leftsplit.Dock = System.Windows.Forms.DockStyle.Fill; + this.leftsplit.Location = new System.Drawing.Point(0, 0); + this.leftsplit.Name = "leftsplit"; + this.leftsplit.Orientation = System.Windows.Forms.Orientation.Horizontal; + // + // leftsplit.Panel1 + // + this.leftsplit.Panel1.Controls.Add(this.compare_flow); + // + // leftsplit.Panel2 + // + this.leftsplit.Panel2.Controls.Add(this.buttonflow); + this.leftsplit.Size = new System.Drawing.Size(390, 668); + this.leftsplit.SplitterDistance = 511; + this.leftsplit.TabIndex = 5; + // + // compare_flow + // + this.compare_flow.Controls.Add(this.grpDataType); + this.compare_flow.Controls.Add(this.grpCompareValue); + this.compare_flow.Controls.Add(this.grpCompareType); + this.compare_flow.Dock = System.Windows.Forms.DockStyle.Fill; + this.compare_flow.Location = new System.Drawing.Point(0, 0); + this.compare_flow.Name = "compare_flow"; + this.compare_flow.Size = new System.Drawing.Size(386, 507); + this.compare_flow.TabIndex = 2; + // + // grpDataType + // + this.grpDataType.AutoSize = true; + this.grpDataType.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.grpDataType.Controls.Add(this.datatype_flow); + this.compare_flow.SetFlowBreak(this.grpDataType, true); + this.grpDataType.Location = new System.Drawing.Point(5, 4); + this.grpDataType.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.grpDataType.Name = "grpDataType"; + this.grpDataType.Padding = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.grpDataType.Size = new System.Drawing.Size(337, 46); + this.grpDataType.TabIndex = 1; + this.grpDataType.TabStop = false; + this.grpDataType.Text = "Data Type(s):"; + // + // datatype_flow + // + this.datatype_flow.AutoScroll = true; + this.datatype_flow.AutoSize = true; + this.datatype_flow.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.datatype_flow.Controls.Add(this.radio_8bits); + this.datatype_flow.Controls.Add(this.radio_16bits); + this.datatype_flow.Controls.Add(this.radio_32bits); + this.datatype_flow.Controls.Add(this.radio_64bits); + this.datatype_flow.Controls.Add(this.chkUnsigned); + this.datatype_flow.Dock = System.Windows.Forms.DockStyle.Fill; + this.datatype_flow.Location = new System.Drawing.Point(5, 17); + this.datatype_flow.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.datatype_flow.Name = "datatype_flow"; + this.datatype_flow.Size = new System.Drawing.Size(327, 25); + this.datatype_flow.TabIndex = 4; + // + // radio_8bits + // + this.radio_8bits.AutoSize = true; + this.radio_8bits.Location = new System.Drawing.Point(5, 4); + this.radio_8bits.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.radio_8bits.Name = "radio_8bits"; + this.radio_8bits.Size = new System.Drawing.Size(47, 17); + this.radio_8bits.TabIndex = 0; + this.radio_8bits.Text = "8bits"; + this.radio_8bits.UseVisualStyleBackColor = true; + this.radio_8bits.CheckedChanged += new System.EventHandler(this.radio_8bits_CheckedChanged); + // + // radio_16bits + // + this.radio_16bits.AutoSize = true; + this.radio_16bits.Location = new System.Drawing.Point(62, 4); + this.radio_16bits.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.radio_16bits.Name = "radio_16bits"; + this.radio_16bits.Size = new System.Drawing.Size(53, 17); + this.radio_16bits.TabIndex = 1; + this.radio_16bits.Text = "16bits"; + this.radio_16bits.UseVisualStyleBackColor = true; + this.radio_16bits.CheckedChanged += new System.EventHandler(this.radio_16bits_CheckedChanged); + // + // radio_32bits + // + this.radio_32bits.AutoSize = true; + this.radio_32bits.Location = new System.Drawing.Point(125, 4); + this.radio_32bits.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.radio_32bits.Name = "radio_32bits"; + this.radio_32bits.Size = new System.Drawing.Size(53, 17); + this.radio_32bits.TabIndex = 2; + this.radio_32bits.Text = "32bits"; + this.radio_32bits.UseVisualStyleBackColor = true; + this.radio_32bits.CheckedChanged += new System.EventHandler(this.radio_32bits_CheckedChanged); + // + // radio_64bits + // + this.radio_64bits.AutoSize = true; + this.radio_64bits.Location = new System.Drawing.Point(188, 4); + this.radio_64bits.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.radio_64bits.Name = "radio_64bits"; + this.radio_64bits.Size = new System.Drawing.Size(53, 17); + this.radio_64bits.TabIndex = 3; + this.radio_64bits.Text = "64bits"; + this.radio_64bits.UseVisualStyleBackColor = true; + this.radio_64bits.CheckedChanged += new System.EventHandler(this.radio_64bits_CheckedChanged); + // + // chkUnsigned + // + this.chkUnsigned.AutoSize = true; + this.chkUnsigned.Location = new System.Drawing.Point(251, 4); + this.chkUnsigned.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.chkUnsigned.Name = "chkUnsigned"; + this.chkUnsigned.Size = new System.Drawing.Size(71, 17); + this.chkUnsigned.TabIndex = 4; + this.chkUnsigned.Text = "Unsigned"; + this.chkUnsigned.UseVisualStyleBackColor = true; + // + // grpCompareValue + // + this.grpCompareValue.Controls.Add(this.comparevalue_flow); + this.compare_flow.SetFlowBreak(this.grpCompareValue, true); + this.grpCompareValue.Location = new System.Drawing.Point(5, 58); + this.grpCompareValue.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.grpCompareValue.Name = "grpCompareValue"; + this.grpCompareValue.Padding = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.grpCompareValue.Size = new System.Drawing.Size(376, 98); + this.grpCompareValue.TabIndex = 4; + this.grpCompareValue.TabStop = false; + this.grpCompareValue.Text = "Compare Value:"; + // + // comparevalue_flow + // + this.comparevalue_flow.AutoScroll = true; + this.comparevalue_flow.Controls.Add(this.radio_oldvalue); + this.comparevalue_flow.Controls.Add(this.radio_specificvalue); + this.comparevalue_flow.Controls.Add(this.lblStart); + this.comparevalue_flow.Controls.Add(this.txtStartAddr); + this.comparevalue_flow.Controls.Add(this.lblEnd); + this.comparevalue_flow.Controls.Add(this.txtEndAddr); + this.comparevalue_flow.Dock = System.Windows.Forms.DockStyle.Fill; + this.comparevalue_flow.Location = new System.Drawing.Point(5, 17); + this.comparevalue_flow.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.comparevalue_flow.Name = "comparevalue_flow"; + this.comparevalue_flow.Size = new System.Drawing.Size(366, 77); + this.comparevalue_flow.TabIndex = 5; + // + // radio_oldvalue + // + this.radio_oldvalue.AutoSize = true; + this.radio_oldvalue.Location = new System.Drawing.Point(5, 4); + this.radio_oldvalue.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.radio_oldvalue.Name = "radio_oldvalue"; + this.radio_oldvalue.Size = new System.Drawing.Size(71, 17); + this.radio_oldvalue.TabIndex = 3; + this.radio_oldvalue.Text = "Old Value"; + this.radio_oldvalue.UseVisualStyleBackColor = true; + this.radio_oldvalue.CheckedChanged += new System.EventHandler(this.radio_oldvalue_CheckedChanged); + // + // radio_specificvalue + // + this.radio_specificvalue.AutoSize = true; + this.comparevalue_flow.SetFlowBreak(this.radio_specificvalue, true); + this.radio_specificvalue.Location = new System.Drawing.Point(86, 4); + this.radio_specificvalue.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.radio_specificvalue.Name = "radio_specificvalue"; + this.radio_specificvalue.Size = new System.Drawing.Size(93, 17); + this.radio_specificvalue.TabIndex = 4; + this.radio_specificvalue.Text = "Specific Value"; + this.radio_specificvalue.UseVisualStyleBackColor = true; + this.radio_specificvalue.CheckedChanged += new System.EventHandler(this.radio_specificvalue_CheckedChanged); + // + // lblStart + // + this.lblStart.AutoSize = true; + this.lblStart.Location = new System.Drawing.Point(3, 25); + this.lblStart.Name = "lblStart"; + this.lblStart.Size = new System.Drawing.Size(32, 13); + this.lblStart.TabIndex = 7; + this.lblStart.Text = "Start:"; + // + // txtStartAddr + // + this.txtStartAddr.AutoSize = true; + this.txtStartAddr.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.txtStartAddr.BackColor = System.Drawing.Color.White; + this.comparevalue_flow.SetFlowBreak(this.txtStartAddr, true); + this.txtStartAddr.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txtStartAddr.isAddressMask = true; + this.txtStartAddr.Location = new System.Drawing.Point(38, 25); + this.txtStartAddr.Margin = new System.Windows.Forms.Padding(0); + this.txtStartAddr.MaxLength = 16; + this.txtStartAddr.Name = "txtStartAddr"; + this.txtStartAddr.ReadOnly = true; + this.txtStartAddr.Size = new System.Drawing.Size(250, 26); + this.txtStartAddr.TabIndex = 5; + this.txtStartAddr.TextLength = 8; + this.txtStartAddr.Value = ((ulong)(0ul)); + // + // lblEnd + // + this.lblEnd.AutoSize = true; + this.lblEnd.Location = new System.Drawing.Point(3, 51); + this.lblEnd.Name = "lblEnd"; + this.lblEnd.Size = new System.Drawing.Size(29, 13); + this.lblEnd.TabIndex = 8; + this.lblEnd.Text = "End:"; + // + // txtEndAddr + // + this.txtEndAddr.AutoSize = true; + this.txtEndAddr.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.txtEndAddr.BackColor = System.Drawing.Color.White; + this.txtEndAddr.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.txtEndAddr.isAddressMask = true; + this.txtEndAddr.Location = new System.Drawing.Point(35, 51); + this.txtEndAddr.Margin = new System.Windows.Forms.Padding(0); + this.txtEndAddr.MaxLength = 16; + this.txtEndAddr.Name = "txtEndAddr"; + this.txtEndAddr.ReadOnly = true; + this.txtEndAddr.Size = new System.Drawing.Size(253, 26); + this.txtEndAddr.TabIndex = 6; + this.txtEndAddr.TextLength = 8; + this.txtEndAddr.Value = ((ulong)(0ul)); + // + // grpCompareType + // + this.grpCompareType.Controls.Add(this.comparetype_flow); + this.grpCompareType.Location = new System.Drawing.Point(5, 164); + this.grpCompareType.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.grpCompareType.Name = "grpCompareType"; + this.grpCompareType.Padding = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.grpCompareType.Size = new System.Drawing.Size(376, 59); + this.grpCompareType.TabIndex = 3; + this.grpCompareType.TabStop = false; + this.grpCompareType.Text = "Compare Type"; + // + // comparetype_flow + // + this.comparetype_flow.AutoScroll = true; + this.comparetype_flow.Controls.Add(this.radiocompare_equal); + this.comparetype_flow.Controls.Add(this.radiocompare_greaterthan); + this.comparetype_flow.Controls.Add(this.radiocompare_lessthan); + this.comparetype_flow.Controls.Add(this.radiocompare_greaterthan_orequal); + this.comparetype_flow.Controls.Add(this.radiocompare_lessthan_orequal); + this.comparetype_flow.Controls.Add(this.radiocompare_notequal); + this.comparetype_flow.Controls.Add(this.radiocompare_between); + this.comparetype_flow.Controls.Add(this.radiocompare_notbetween); + this.comparetype_flow.Dock = System.Windows.Forms.DockStyle.Fill; + this.comparetype_flow.Location = new System.Drawing.Point(5, 17); + this.comparetype_flow.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.comparetype_flow.Name = "comparetype_flow"; + this.comparetype_flow.Size = new System.Drawing.Size(366, 38); + this.comparetype_flow.TabIndex = 5; + // + // radiocompare_equal + // + this.radiocompare_equal.AutoSize = true; + this.radiocompare_equal.Location = new System.Drawing.Point(5, 4); + this.radiocompare_equal.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.radiocompare_equal.Name = "radiocompare_equal"; + this.radiocompare_equal.Size = new System.Drawing.Size(37, 17); + this.radiocompare_equal.TabIndex = 1; + this.radiocompare_equal.Text = "=="; + this.radiocompare_equal.UseVisualStyleBackColor = true; + this.radiocompare_equal.CheckedChanged += new System.EventHandler(this.radiocompare_equal_CheckedChanged); + // + // radiocompare_greaterthan + // + this.radiocompare_greaterthan.AutoSize = true; + this.radiocompare_greaterthan.Location = new System.Drawing.Point(52, 4); + this.radiocompare_greaterthan.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.radiocompare_greaterthan.Name = "radiocompare_greaterthan"; + this.radiocompare_greaterthan.Size = new System.Drawing.Size(31, 17); + this.radiocompare_greaterthan.TabIndex = 2; + this.radiocompare_greaterthan.Text = ">"; + this.radiocompare_greaterthan.UseVisualStyleBackColor = true; + this.radiocompare_greaterthan.CheckedChanged += new System.EventHandler(this.radiocompare_equal_CheckedChanged); + // + // radiocompare_lessthan + // + this.radiocompare_lessthan.AutoSize = true; + this.radiocompare_lessthan.Location = new System.Drawing.Point(93, 4); + this.radiocompare_lessthan.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.radiocompare_lessthan.Name = "radiocompare_lessthan"; + this.radiocompare_lessthan.Size = new System.Drawing.Size(31, 17); + this.radiocompare_lessthan.TabIndex = 3; + this.radiocompare_lessthan.Text = "<"; + this.radiocompare_lessthan.UseVisualStyleBackColor = true; + this.radiocompare_lessthan.CheckedChanged += new System.EventHandler(this.radiocompare_equal_CheckedChanged); + // + // radiocompare_greaterthan_orequal + // + this.radiocompare_greaterthan_orequal.AutoSize = true; + this.radiocompare_greaterthan_orequal.Location = new System.Drawing.Point(134, 4); + this.radiocompare_greaterthan_orequal.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.radiocompare_greaterthan_orequal.Name = "radiocompare_greaterthan_orequal"; + this.radiocompare_greaterthan_orequal.Size = new System.Drawing.Size(37, 17); + this.radiocompare_greaterthan_orequal.TabIndex = 4; + this.radiocompare_greaterthan_orequal.Text = ">="; + this.radiocompare_greaterthan_orequal.UseVisualStyleBackColor = true; + this.radiocompare_greaterthan_orequal.CheckedChanged += new System.EventHandler(this.radiocompare_equal_CheckedChanged); + // + // radiocompare_lessthan_orequal + // + this.radiocompare_lessthan_orequal.AutoSize = true; + this.radiocompare_lessthan_orequal.Location = new System.Drawing.Point(181, 4); + this.radiocompare_lessthan_orequal.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.radiocompare_lessthan_orequal.Name = "radiocompare_lessthan_orequal"; + this.radiocompare_lessthan_orequal.Size = new System.Drawing.Size(37, 17); + this.radiocompare_lessthan_orequal.TabIndex = 5; + this.radiocompare_lessthan_orequal.Text = "<="; + this.radiocompare_lessthan_orequal.UseVisualStyleBackColor = true; + this.radiocompare_lessthan_orequal.CheckedChanged += new System.EventHandler(this.radiocompare_equal_CheckedChanged); + // + // radiocompare_notequal + // + this.radiocompare_notequal.AutoSize = true; + this.radiocompare_notequal.Location = new System.Drawing.Point(228, 4); + this.radiocompare_notequal.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.radiocompare_notequal.Name = "radiocompare_notequal"; + this.radiocompare_notequal.Size = new System.Drawing.Size(34, 17); + this.radiocompare_notequal.TabIndex = 6; + this.radiocompare_notequal.Text = "!="; + this.radiocompare_notequal.UseVisualStyleBackColor = true; + this.radiocompare_notequal.CheckedChanged += new System.EventHandler(this.radiocompare_equal_CheckedChanged); + // + // radiocompare_between + // + this.radiocompare_between.AutoSize = true; + this.radiocompare_between.Location = new System.Drawing.Point(272, 4); + this.radiocompare_between.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.radiocompare_between.Name = "radiocompare_between"; + this.radiocompare_between.Size = new System.Drawing.Size(37, 17); + this.radiocompare_between.TabIndex = 7; + this.radiocompare_between.Text = "><"; + this.radiocompare_between.UseVisualStyleBackColor = true; + this.radiocompare_between.CheckedChanged += new System.EventHandler(this.radiocompare_between_CheckedChanged); + // + // radiocompare_notbetween + // + this.radiocompare_notbetween.AutoSize = true; + this.radiocompare_notbetween.Location = new System.Drawing.Point(319, 4); + this.radiocompare_notbetween.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.radiocompare_notbetween.Name = "radiocompare_notbetween"; + this.radiocompare_notbetween.Size = new System.Drawing.Size(37, 17); + this.radiocompare_notbetween.TabIndex = 8; + this.radiocompare_notbetween.Text = "<>"; + this.radiocompare_notbetween.UseVisualStyleBackColor = true; + this.radiocompare_notbetween.CheckedChanged += new System.EventHandler(this.radiocompare_notbetween_CheckedChanged); + // + // buttonflow + // + this.buttonflow.Controls.Add(this.btnSearch); + this.buttonflow.Controls.Add(this.btnReset); + this.buttonflow.Controls.Add(this.btnCancel); + this.buttonflow.Controls.Add(this.chkRefreshResults); + this.buttonflow.Dock = System.Windows.Forms.DockStyle.Fill; + this.buttonflow.Location = new System.Drawing.Point(0, 0); + this.buttonflow.Name = "buttonflow"; + this.buttonflow.Size = new System.Drawing.Size(386, 149); + this.buttonflow.TabIndex = 0; + // + // btnSearch + // + this.btnSearch.AutoSize = true; + this.btnSearch.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.btnSearch.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnSearch.Location = new System.Drawing.Point(3, 3); + this.btnSearch.Name = "btnSearch"; + this.btnSearch.Size = new System.Drawing.Size(66, 26); + this.btnSearch.TabIndex = 11; + this.btnSearch.Text = "Search"; + this.btnSearch.UseVisualStyleBackColor = true; + // + // btnReset + // + this.btnReset.AutoSize = true; + this.btnReset.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.btnReset.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnReset.Location = new System.Drawing.Point(75, 3); + this.btnReset.Name = "btnReset"; + this.btnReset.Size = new System.Drawing.Size(58, 26); + this.btnReset.TabIndex = 10; + this.btnReset.Text = "Reset"; + this.btnReset.UseVisualStyleBackColor = true; + // + // btnCancel + // + this.btnCancel.AutoSize = true; + this.btnCancel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.btnCancel.Enabled = false; + this.buttonflow.SetFlowBreak(this.btnCancel, true); + this.btnCancel.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnCancel.Location = new System.Drawing.Point(139, 3); + this.btnCancel.Name = "btnCancel"; + this.btnCancel.Size = new System.Drawing.Size(66, 26); + this.btnCancel.TabIndex = 12; + this.btnCancel.Text = "Cancel"; + this.btnCancel.UseVisualStyleBackColor = true; + // + // chkRefreshResults + // + this.chkRefreshResults.AutoSize = true; + this.chkRefreshResults.Checked = true; + this.chkRefreshResults.CheckState = System.Windows.Forms.CheckState.Checked; + this.chkRefreshResults.Location = new System.Drawing.Point(3, 35); + this.chkRefreshResults.Name = "chkRefreshResults"; + this.chkRefreshResults.Size = new System.Drawing.Size(101, 17); + this.chkRefreshResults.TabIndex = 13; + this.chkRefreshResults.Text = "Refresh Results"; + this.chkRefreshResults.UseVisualStyleBackColor = true; + this.chkRefreshResults.CheckedChanged += new System.EventHandler(this.chkRefreshResults_CheckedChanged); + // + // splitresults + // + this.splitresults.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + this.splitresults.Dock = System.Windows.Forms.DockStyle.Fill; + this.splitresults.Location = new System.Drawing.Point(0, 0); + this.splitresults.Name = "splitresults"; + this.splitresults.Orientation = System.Windows.Forms.Orientation.Horizontal; + // + // splitresults.Panel1 + // + this.splitresults.Panel1.Controls.Add(this.splitresultslist); + // + // splitresults.Panel2 + // + this.splitresults.Panel2.Controls.Add(this.resultsprogress); + this.splitresults.Size = new System.Drawing.Size(750, 668); + this.splitresults.SplitterDistance = 554; + this.splitresults.TabIndex = 5; + // + // splitresultslist + // + this.splitresultslist.Dock = System.Windows.Forms.DockStyle.Fill; + this.splitresultslist.Location = new System.Drawing.Point(0, 0); + this.splitresultslist.Name = "splitresultslist"; + this.splitresultslist.Orientation = System.Windows.Forms.Orientation.Horizontal; + // + // splitresultslist.Panel1 + // + this.splitresultslist.Panel1.Controls.Add(this.lstResults); + this.splitresultslist.Panel1.Controls.Add(this.results_label_pnl); + // + // splitresultslist.Panel2 + // + this.splitresultslist.Panel2.Controls.Add(this.lstPatchList); + this.splitresultslist.Panel2.Controls.Add(this.patch_tool_pnl); + this.splitresultslist.Panel2.Controls.Add(this.patch_label_pnl); + this.splitresultslist.Size = new System.Drawing.Size(746, 550); + this.splitresultslist.SplitterDistance = 274; + this.splitresultslist.TabIndex = 4; + // + // lstResults + // + this.lstResults.AllowColumnReorder = true; + this.lstResults.Dock = System.Windows.Forms.DockStyle.Fill; + this.lstResults.FullRowSelect = true; + this.lstResults.HideSelection = false; + this.lstResults.Location = new System.Drawing.Point(37, 0); + this.lstResults.Name = "lstResults"; + this.lstResults.OverrideDetailsViewByDefault = false; + this.lstResults.PCSX2ProcessID = 0; + this.lstResults.Size = new System.Drawing.Size(709, 274); + this.lstResults.TabIndex = 4; + this.lstResults.UseCompatibleStateImageBehavior = false; + this.lstResults.View = System.Windows.Forms.View.Details; + // + // results_label_pnl + // + this.results_label_pnl.Controls.Add(this.lblResultsList); + this.results_label_pnl.Dock = System.Windows.Forms.DockStyle.Left; + this.results_label_pnl.Location = new System.Drawing.Point(0, 0); + this.results_label_pnl.Name = "results_label_pnl"; + this.results_label_pnl.Size = new System.Drawing.Size(37, 274); + this.results_label_pnl.TabIndex = 3; + // + // lblResultsList + // + this.lblResultsList.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + this.lblResultsList.Dock = System.Windows.Forms.DockStyle.Fill; + this.lblResultsList.Font = new System.Drawing.Font("Courier New", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblResultsList.Location = new System.Drawing.Point(0, 0); + this.lblResultsList.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); + this.lblResultsList.Name = "lblResultsList"; + this.lblResultsList.Orientation = Utilities.TransparentControls.Label.Orientation.Vertical; + this.lblResultsList.Size = new System.Drawing.Size(37, 274); + this.lblResultsList.TabIndex = 4; + this.lblResultsList.Text = "Results List"; + this.lblResultsList.TextAlign = Utilities.TransparentControls.Label.TextAlign.Center; + // + // lstPatchList + // + this.lstPatchList.AllowColumnReorder = true; + this.lstPatchList.Dock = System.Windows.Forms.DockStyle.Fill; + this.lstPatchList.FullRowSelect = true; + this.lstPatchList.HideSelection = false; + this.lstPatchList.Location = new System.Drawing.Point(37, 0); + this.lstPatchList.Name = "lstPatchList"; + this.lstPatchList.OverrideDetailsViewByDefault = false; + this.lstPatchList.PCSX2ProcessID = 0; + this.lstPatchList.Size = new System.Drawing.Size(709, 202); + this.lstPatchList.TabIndex = 5; + this.lstPatchList.UseCompatibleStateImageBehavior = false; + this.lstPatchList.View = System.Windows.Forms.View.Details; + // + // patch_tool_pnl + // + this.patch_tool_pnl.Controls.Add(this.patch_tool_pnl_flow); + this.patch_tool_pnl.Dock = System.Windows.Forms.DockStyle.Bottom; + this.patch_tool_pnl.Location = new System.Drawing.Point(37, 202); + this.patch_tool_pnl.Name = "patch_tool_pnl"; + this.patch_tool_pnl.Size = new System.Drawing.Size(709, 70); + this.patch_tool_pnl.TabIndex = 3; + // + // patch_tool_pnl_flow + // + this.patch_tool_pnl_flow.AutoScroll = true; + this.patch_tool_pnl_flow.Controls.Add(this.btnImportFile); + this.patch_tool_pnl_flow.Controls.Add(this.btnExportFile); + this.patch_tool_pnl_flow.Controls.Add(this.btnImportClipboard); + this.patch_tool_pnl_flow.Controls.Add(this.btnExportClipboard); + this.patch_tool_pnl_flow.Controls.Add(this.btnAddPatchAddress); + this.patch_tool_pnl_flow.Controls.Add(this.btnAddAddressRange); + this.patch_tool_pnl_flow.Dock = System.Windows.Forms.DockStyle.Fill; + this.patch_tool_pnl_flow.Location = new System.Drawing.Point(0, 0); + this.patch_tool_pnl_flow.Name = "patch_tool_pnl_flow"; + this.patch_tool_pnl_flow.Size = new System.Drawing.Size(709, 70); + this.patch_tool_pnl_flow.TabIndex = 0; + // + // btnImportFile + // + this.btnImportFile.AutoSize = true; + this.btnImportFile.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.btnImportFile.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnImportFile.Location = new System.Drawing.Point(3, 3); + this.btnImportFile.Name = "btnImportFile"; + this.btnImportFile.Size = new System.Drawing.Size(146, 26); + this.btnImportFile.TabIndex = 12; + this.btnImportFile.Text = "Import From File"; + this.btnImportFile.UseVisualStyleBackColor = true; + this.btnImportFile.Click += new System.EventHandler(this.btnImportFile_Click); + // + // btnExportFile + // + this.btnExportFile.AutoSize = true; + this.btnExportFile.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.btnExportFile.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnExportFile.Location = new System.Drawing.Point(155, 3); + this.btnExportFile.Name = "btnExportFile"; + this.btnExportFile.Size = new System.Drawing.Size(130, 26); + this.btnExportFile.TabIndex = 11; + this.btnExportFile.Text = "Export To File"; + this.btnExportFile.UseVisualStyleBackColor = true; + this.btnExportFile.Click += new System.EventHandler(this.btnExportFile_Click); + // + // btnImportClipboard + // + this.btnImportClipboard.AutoSize = true; + this.btnImportClipboard.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.btnImportClipboard.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnImportClipboard.Location = new System.Drawing.Point(291, 3); + this.btnImportClipboard.Name = "btnImportClipboard"; + this.btnImportClipboard.Size = new System.Drawing.Size(186, 26); + this.btnImportClipboard.TabIndex = 15; + this.btnImportClipboard.Text = "Import from Clipboard"; + this.btnImportClipboard.UseVisualStyleBackColor = true; + this.btnImportClipboard.Click += new System.EventHandler(this.btnImportClipboard_Click); + // + // btnExportClipboard + // + this.btnExportClipboard.AutoSize = true; + this.btnExportClipboard.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.btnExportClipboard.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnExportClipboard.Location = new System.Drawing.Point(483, 3); + this.btnExportClipboard.Name = "btnExportClipboard"; + this.btnExportClipboard.Size = new System.Drawing.Size(170, 26); + this.btnExportClipboard.TabIndex = 10; + this.btnExportClipboard.Text = "Export To Clipboard"; + this.btnExportClipboard.UseVisualStyleBackColor = true; + this.btnExportClipboard.Click += new System.EventHandler(this.btnExportClipboard_Click); + // + // btnAddPatchAddress + // + this.btnAddPatchAddress.AutoSize = true; + this.btnAddPatchAddress.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.btnAddPatchAddress.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnAddPatchAddress.Location = new System.Drawing.Point(3, 35); + this.btnAddPatchAddress.Name = "btnAddPatchAddress"; + this.btnAddPatchAddress.Size = new System.Drawing.Size(106, 26); + this.btnAddPatchAddress.TabIndex = 13; + this.btnAddPatchAddress.Text = "Add Address"; + this.btnAddPatchAddress.UseVisualStyleBackColor = true; + this.btnAddPatchAddress.Click += new System.EventHandler(this.btnAddPatchAddress_Click); + // + // btnAddAddressRange + // + this.btnAddAddressRange.AutoSize = true; + this.btnAddAddressRange.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.btnAddAddressRange.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.btnAddAddressRange.Location = new System.Drawing.Point(115, 35); + this.btnAddAddressRange.Name = "btnAddAddressRange"; + this.btnAddAddressRange.Size = new System.Drawing.Size(154, 26); + this.btnAddAddressRange.TabIndex = 14; + this.btnAddAddressRange.Text = "Add Address Range"; + this.btnAddAddressRange.UseVisualStyleBackColor = true; + this.btnAddAddressRange.Click += new System.EventHandler(this.btnAddAddressRange_Click); + // + // patch_label_pnl + // + this.patch_label_pnl.Controls.Add(this.lblPatchList); + this.patch_label_pnl.Dock = System.Windows.Forms.DockStyle.Left; + this.patch_label_pnl.Location = new System.Drawing.Point(0, 0); + this.patch_label_pnl.Name = "patch_label_pnl"; + this.patch_label_pnl.Size = new System.Drawing.Size(37, 272); + this.patch_label_pnl.TabIndex = 2; + // + // lblPatchList + // + this.lblPatchList.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + this.lblPatchList.Dock = System.Windows.Forms.DockStyle.Fill; + this.lblPatchList.Font = new System.Drawing.Font("Courier New", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.lblPatchList.Location = new System.Drawing.Point(0, 0); + this.lblPatchList.Margin = new System.Windows.Forms.Padding(8, 6, 8, 6); + this.lblPatchList.Name = "lblPatchList"; + this.lblPatchList.Orientation = Utilities.TransparentControls.Label.Orientation.Vertical; + this.lblPatchList.Size = new System.Drawing.Size(37, 272); + this.lblPatchList.TabIndex = 5; + this.lblPatchList.Text = "Patch List"; + this.lblPatchList.TextAlign = Utilities.TransparentControls.Label.TextAlign.Center; + // + // resultsprogress + // + this.resultsprogress.Dock = System.Windows.Forms.DockStyle.Top; + this.resultsprogress.Location = new System.Drawing.Point(0, 0); + this.resultsprogress.Message = ""; + this.resultsprogress.Name = "resultsprogress"; + this.resultsprogress.ShowPercentageLabel = true; + this.resultsprogress.Size = new System.Drawing.Size(746, 28); + this.resultsprogress.TabIndex = 1; + this.resultsprogress.Value = 0; + // + // timer_update_results + // + this.timer_update_results.Interval = 1; + this.timer_update_results.Tick += new System.EventHandler(this.timer_update_results_Tick); + // + // ResultsUpdateWorkerThread + // + this.ResultsUpdateWorkerThread.WorkerSupportsCancellation = true; + this.ResultsUpdateWorkerThread.DoWork += new System.ComponentModel.DoWorkEventHandler(this.ResultsUpdateWorkerThread_DoWork); + this.ResultsUpdateWorkerThread.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.ResultsUpdateWorkerThread_RunWorkerCompleted); + // // FloatingMemorySearcher // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(284, 262); + this.ClientSize = new System.Drawing.Size(1144, 668); + this.Controls.Add(this.mainsplit); + this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Name = "FloatingMemorySearcher"; this.Text = "Memory Search"; + this.mainsplit.Panel1.ResumeLayout(false); + this.mainsplit.Panel2.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.mainsplit)).EndInit(); + this.mainsplit.ResumeLayout(false); + this.leftsplit.Panel1.ResumeLayout(false); + this.leftsplit.Panel2.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.leftsplit)).EndInit(); + this.leftsplit.ResumeLayout(false); + this.compare_flow.ResumeLayout(false); + this.compare_flow.PerformLayout(); + this.grpDataType.ResumeLayout(false); + this.grpDataType.PerformLayout(); + this.datatype_flow.ResumeLayout(false); + this.datatype_flow.PerformLayout(); + this.grpCompareValue.ResumeLayout(false); + this.comparevalue_flow.ResumeLayout(false); + this.comparevalue_flow.PerformLayout(); + this.grpCompareType.ResumeLayout(false); + this.comparetype_flow.ResumeLayout(false); + this.comparetype_flow.PerformLayout(); + this.buttonflow.ResumeLayout(false); + this.buttonflow.PerformLayout(); + this.splitresults.Panel1.ResumeLayout(false); + this.splitresults.Panel2.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.splitresults)).EndInit(); + this.splitresults.ResumeLayout(false); + this.splitresultslist.Panel1.ResumeLayout(false); + this.splitresultslist.Panel2.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.splitresultslist)).EndInit(); + this.splitresultslist.ResumeLayout(false); + this.results_label_pnl.ResumeLayout(false); + this.patch_tool_pnl.ResumeLayout(false); + this.patch_tool_pnl_flow.ResumeLayout(false); + this.patch_tool_pnl_flow.PerformLayout(); + this.patch_label_pnl.ResumeLayout(false); this.ResumeLayout(false); } #endregion + + private System.Windows.Forms.SplitContainer mainsplit; + private System.Windows.Forms.GroupBox grpDataType; + private System.Windows.Forms.FlowLayoutPanel datatype_flow; + private System.Windows.Forms.RadioButton radio_8bits; + private System.Windows.Forms.RadioButton radio_16bits; + private System.Windows.Forms.RadioButton radio_32bits; + private System.Windows.Forms.RadioButton radio_64bits; + private System.Windows.Forms.CheckBox chkUnsigned; + private System.Windows.Forms.SplitContainer leftsplit; + private System.Windows.Forms.GroupBox grpCompareValue; + private System.Windows.Forms.FlowLayoutPanel comparevalue_flow; + private System.Windows.Forms.RadioButton radio_oldvalue; + private System.Windows.Forms.RadioButton radio_specificvalue; + private System.Windows.Forms.Label lblStart; + private System.Windows.Forms.MaskedHexBox txtStartAddr; + private System.Windows.Forms.Label lblEnd; + private System.Windows.Forms.MaskedHexBox txtEndAddr; + private System.Windows.Forms.GroupBox grpCompareType; + private System.Windows.Forms.FlowLayoutPanel comparetype_flow; + private System.Windows.Forms.RadioButton radiocompare_equal; + private System.Windows.Forms.RadioButton radiocompare_greaterthan; + private System.Windows.Forms.RadioButton radiocompare_lessthan; + private System.Windows.Forms.RadioButton radiocompare_greaterthan_orequal; + private System.Windows.Forms.RadioButton radiocompare_lessthan_orequal; + private System.Windows.Forms.RadioButton radiocompare_notequal; + private System.Windows.Forms.RadioButton radiocompare_between; + private System.Windows.Forms.RadioButton radiocompare_notbetween; + private System.Windows.Forms.FlowLayoutPanel compare_flow; + private System.Windows.Forms.FlowLayoutPanel buttonflow; + private System.Windows.Forms.Button btnSearch; + private System.Windows.Forms.Button btnReset; + private System.Windows.Forms.Button btnCancel; + private System.Windows.Forms.CheckBox chkRefreshResults; + private System.Windows.Forms.Timer timer_update_results; + private System.ComponentModel.BackgroundWorker ResultsUpdateWorkerThread; + private System.Windows.Forms.SplitContainer splitresults; + private System.Windows.Forms.SplitContainer splitresultslist; + private System.Windows.Forms.Panel results_label_pnl; + private Utilities.TransparentControls.Label.TransDirectionalLabel lblResultsList; + private System.Windows.Forms.Panel patch_tool_pnl; + private System.Windows.Forms.FlowLayoutPanel patch_tool_pnl_flow; + private System.Windows.Forms.Button btnImportFile; + private System.Windows.Forms.Button btnExportFile; + private System.Windows.Forms.Button btnImportClipboard; + private System.Windows.Forms.Button btnExportClipboard; + private System.Windows.Forms.Button btnAddPatchAddress; + private System.Windows.Forms.Button btnAddAddressRange; + private System.Windows.Forms.Panel patch_label_pnl; + private Utilities.TransparentControls.Label.TransDirectionalLabel lblPatchList; + private Utilities.TransparentControls.ProgressBarWithPercentageLabel resultsprogress; + private System.Windows.Forms.AddressValuePairList lstResults; + private System.Windows.Forms.AddressValuePairList lstPatchList; } } \ No newline at end of file
ViewVC Help | |
Powered by ViewVC 1.1.22 |