diff gtk-gui/IBBoard.WarFoundry.GTK.FrmMainWindow.cs @ 30:5fafbb1b4592

Re #145: Add UI to remove units from army * Add initial right-click "remove unit" for GTK app Existing problems: * Right-click occurs before selection changes, so it can be a click out of synch
author IBBoard <dev@ibboard.co.uk>
date Fri, 04 Sep 2009 20:11:02 +0000
parents 2e5448a662b6
children 1b603f97e7de
line wrap: on
line diff
--- a/gtk-gui/IBBoard.WarFoundry.GTK.FrmMainWindow.cs	Tue Sep 01 19:42:53 2009 +0000
+++ b/gtk-gui/IBBoard.WarFoundry.GTK.FrmMainWindow.cs	Fri Sep 04 20:11:02 2009 +0000
@@ -240,6 +240,8 @@
             this.redoActionButton.Activated += new System.EventHandler(this.redoTBButtonActivated);
             this.miExportAsBasicHtml.Activated += new System.EventHandler(this.OnMiExportAsBasicHtmlActivated);
             this.treeUnits.RowActivated += new Gtk.RowActivatedHandler(this.ArmyRowActivated);
+            this.treeUnits.PopupMenu += new Gtk.PopupMenuHandler(this.OnTreeUnitsPopupMenu);
+            this.treeUnits.ButtonPressEvent += new Gtk.ButtonPressEventHandler(this.UnitTreeButtonPressed);
         }
     }
 }