Make doubleclick expand/collapse in the shipBrowser

This commit is contained in:
cncfanatics
2010-08-20 22:15:13 +02:00
parent 57219f56e7
commit baf9ef6dd4

View File

@@ -38,7 +38,7 @@ class ShipBrowser(wx.Panel):
self.shipView.Bind(wx.EVT_TREE_ITEM_EXPANDING, self.expandLookup)
self.shipView.Bind(wx.EVT_TREE_SEL_CHANGED, self.toggleButtons)
self.shipView.Bind(wx.EVT_TREE_END_LABEL_EDIT, self.changeFitName)
self.shipView.Bind(wx.EVT_LEFT_DCLICK, self.renameFit)
self.shipView.Bind(wx.EVT_LEFT_DCLICK, self.renameOrExpand)
#Bind buttons
self.shipMenu.new.Bind(wx.EVT_BUTTON, self.newFit)
@@ -116,6 +116,17 @@ class ShipBrowser(wx.Panel):
self.shipView.SelectItem(childId)
self.shipView.EditLabel(childId)
def renameOrExpand(self, event):
root = self.shipView.GetSelection()
type, _ = self.shipView.GetPyData(root)
if type == "fit":
self.shipView.EditLabel(root)
else:
if not self.shipView.IsExpanded(root):
self.shipView.Expand(root)
else:
self.shipView.Collapse(root)
def renameFit(self, event):
root = self.shipView.GetSelection()
type, _ = self.shipView.GetPyData(root)