From 9077371aa0c92b77e700af499fe7796a85539261 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Fri, 18 Feb 2011 06:29:22 +0000 Subject: [PATCH] Ram Watch - add context menu to listview object --- .../tools/RamWatch.Designer.cs | 91 +++++++++++++++++++ BizHawk.MultiClient/tools/RamWatch.cs | 60 ++++++++++++ BizHawk.MultiClient/tools/RamWatch.resx | 3 + 3 files changed, 154 insertions(+) diff --git a/BizHawk.MultiClient/tools/RamWatch.Designer.cs b/BizHawk.MultiClient/tools/RamWatch.Designer.cs index e4955b19b5..bf4a4c8fe2 100644 --- a/BizHawk.MultiClient/tools/RamWatch.Designer.cs +++ b/BizHawk.MultiClient/tools/RamWatch.Designer.cs @@ -28,6 +28,7 @@ /// private void InitializeComponent() { + this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RamWatch)); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.filesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); @@ -75,8 +76,18 @@ this.MoveDownStripButton1 = new System.Windows.Forms.ToolStripButton(); this.WatchCountLabel = new System.Windows.Forms.Label(); this.MessageLabel = new System.Windows.Forms.Label(); + this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); + this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.duplicateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.pokeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator(); + this.insertSeperatorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.moveUpToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.moveDownToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.menuStrip1.SuspendLayout(); this.toolStrip1.SuspendLayout(); + this.contextMenuStrip1.SuspendLayout(); this.SuspendLayout(); // // menuStrip1 @@ -304,6 +315,7 @@ this.Address, this.Value, this.Notes}); + this.WatchListView.ContextMenuStrip = this.contextMenuStrip1; this.WatchListView.FullRowSelect = true; this.WatchListView.GridLines = true; this.WatchListView.LabelEdit = true; @@ -494,6 +506,75 @@ this.MessageLabel.TabIndex = 5; this.MessageLabel.Text = " "; // + // contextMenuStrip1 + // + this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.editToolStripMenuItem, + this.removeToolStripMenuItem, + this.duplicateToolStripMenuItem, + this.pokeToolStripMenuItem, + this.toolStripSeparator6, + this.insertSeperatorToolStripMenuItem, + this.moveUpToolStripMenuItem1, + this.moveDownToolStripMenuItem1}); + this.contextMenuStrip1.Name = "contextMenuStrip1"; + this.contextMenuStrip1.Size = new System.Drawing.Size(166, 186); + this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening); + // + // editToolStripMenuItem + // + this.editToolStripMenuItem.Name = "editToolStripMenuItem"; + this.editToolStripMenuItem.Size = new System.Drawing.Size(165, 22); + this.editToolStripMenuItem.Text = "&Edit"; + this.editToolStripMenuItem.Click += new System.EventHandler(this.editToolStripMenuItem_Click); + // + // removeToolStripMenuItem + // + this.removeToolStripMenuItem.Name = "removeToolStripMenuItem"; + this.removeToolStripMenuItem.Size = new System.Drawing.Size(165, 22); + this.removeToolStripMenuItem.Text = "&Remove"; + this.removeToolStripMenuItem.Click += new System.EventHandler(this.removeToolStripMenuItem_Click); + // + // duplicateToolStripMenuItem + // + this.duplicateToolStripMenuItem.Name = "duplicateToolStripMenuItem"; + this.duplicateToolStripMenuItem.Size = new System.Drawing.Size(165, 22); + this.duplicateToolStripMenuItem.Text = "&Duplicate"; + this.duplicateToolStripMenuItem.Click += new System.EventHandler(this.duplicateToolStripMenuItem_Click); + // + // pokeToolStripMenuItem + // + this.pokeToolStripMenuItem.Name = "pokeToolStripMenuItem"; + this.pokeToolStripMenuItem.Size = new System.Drawing.Size(165, 22); + this.pokeToolStripMenuItem.Text = "&Poke"; + this.pokeToolStripMenuItem.Click += new System.EventHandler(this.pokeToolStripMenuItem_Click); + // + // toolStripSeparator6 + // + this.toolStripSeparator6.Name = "toolStripSeparator6"; + this.toolStripSeparator6.Size = new System.Drawing.Size(162, 6); + // + // insertSeperatorToolStripMenuItem + // + this.insertSeperatorToolStripMenuItem.Name = "insertSeperatorToolStripMenuItem"; + this.insertSeperatorToolStripMenuItem.Size = new System.Drawing.Size(165, 22); + this.insertSeperatorToolStripMenuItem.Text = "&Insert Separator"; + this.insertSeperatorToolStripMenuItem.Click += new System.EventHandler(this.insertSeperatorToolStripMenuItem_Click); + // + // moveUpToolStripMenuItem1 + // + this.moveUpToolStripMenuItem1.Name = "moveUpToolStripMenuItem1"; + this.moveUpToolStripMenuItem1.Size = new System.Drawing.Size(165, 22); + this.moveUpToolStripMenuItem1.Text = "Move &Up"; + this.moveUpToolStripMenuItem1.Click += new System.EventHandler(this.moveUpToolStripMenuItem1_Click); + // + // moveDownToolStripMenuItem1 + // + this.moveDownToolStripMenuItem1.Name = "moveDownToolStripMenuItem1"; + this.moveDownToolStripMenuItem1.Size = new System.Drawing.Size(165, 22); + this.moveDownToolStripMenuItem1.Text = "Move &Down"; + this.moveDownToolStripMenuItem1.Click += new System.EventHandler(this.moveDownToolStripMenuItem1_Click); + // // RamWatch // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); @@ -516,6 +597,7 @@ this.menuStrip1.PerformLayout(); this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); + this.contextMenuStrip1.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); @@ -569,5 +651,14 @@ private System.Windows.Forms.ToolStripButton toolStripButton1; private System.Windows.Forms.ToolStripButton PoketoolStripButton2; private System.Windows.Forms.ToolStripMenuItem pokeAddressToolStripMenuItem; + private System.Windows.Forms.ContextMenuStrip contextMenuStrip1; + private System.Windows.Forms.ToolStripMenuItem editToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem removeToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem duplicateToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem pokeToolStripMenuItem; + private System.Windows.Forms.ToolStripSeparator toolStripSeparator6; + private System.Windows.Forms.ToolStripMenuItem insertSeperatorToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem moveUpToolStripMenuItem1; + private System.Windows.Forms.ToolStripMenuItem moveDownToolStripMenuItem1; } } \ No newline at end of file diff --git a/BizHawk.MultiClient/tools/RamWatch.cs b/BizHawk.MultiClient/tools/RamWatch.cs index 91cb5c4e20..fc2ad8dfad 100644 --- a/BizHawk.MultiClient/tools/RamWatch.cs +++ b/BizHawk.MultiClient/tools/RamWatch.cs @@ -777,12 +777,72 @@ namespace BizHawk.MultiClient editWatchToolStripMenuItem.Enabled = true; duplicateWatchToolStripMenuItem.Enabled = true; removeWatchToolStripMenuItem.Enabled = true; + moveUpToolStripMenuItem.Enabled = true; + moveDownToolStripMenuItem.Enabled = true; } else { editWatchToolStripMenuItem.Enabled = false; duplicateWatchToolStripMenuItem.Enabled = false; removeWatchToolStripMenuItem.Enabled = false; + moveUpToolStripMenuItem.Enabled = false; + moveDownToolStripMenuItem.Enabled = false; + } + } + + private void editToolStripMenuItem_Click(object sender, EventArgs e) + { + EditWatch(); + } + + private void removeToolStripMenuItem_Click(object sender, EventArgs e) + { + RemoveWatch(); + } + + private void duplicateToolStripMenuItem_Click(object sender, EventArgs e) + { + DuplicateWatch(); + } + + private void pokeToolStripMenuItem_Click(object sender, EventArgs e) + { + PokeAddress(); + } + + private void insertSeperatorToolStripMenuItem_Click(object sender, EventArgs e) + { + InsertSeparator(); + } + + private void moveUpToolStripMenuItem1_Click(object sender, EventArgs e) + { + MoveUp(); + } + + private void moveDownToolStripMenuItem1_Click(object sender, EventArgs e) + { + MoveDown(); + } + + private void contextMenuStrip1_Opening(object sender, CancelEventArgs e) + { + ListView.SelectedIndexCollection indexes = WatchListView.SelectedIndices; + if (indexes.Count == 0) + { + contextMenuStrip1.Items[0].Visible = false; + contextMenuStrip1.Items[1].Visible = false; + contextMenuStrip1.Items[2].Visible = false; + contextMenuStrip1.Items[3].Visible = false; + contextMenuStrip1.Items[4].Visible = false; + contextMenuStrip1.Items[6].Visible = false; + contextMenuStrip1.Items[7].Visible = false; + + } + else + { + for (int x = 0; x < contextMenuStrip1.Items.Count; x++) + contextMenuStrip1.Items[x].Visible = true; } } } diff --git a/BizHawk.MultiClient/tools/RamWatch.resx b/BizHawk.MultiClient/tools/RamWatch.resx index f6eb3e8d48..e8ed4a3d48 100644 --- a/BizHawk.MultiClient/tools/RamWatch.resx +++ b/BizHawk.MultiClient/tools/RamWatch.resx @@ -120,6 +120,9 @@ 17, 17 + + 225, 17 + 126, 17