예제 #1
0
 def onTags(self,evt):
   table = self.GetTable()
   pos = self.GetGridCursorRow()
   currentStep = table.steps[pos]
   dlg = TagDialog(self,currentStep.tags())
   if (dlg.ShowModal() == wx.ID_OK):
     currentStep.setTags(dlg.tags())
   dlg.Destroy()
예제 #2
0
파일: StepGrid.py 프로젝트: notabyte/cairis
 def onTags(self, evt):
     table = self.GetTable()
     pos = self.GetGridCursorRow()
     currentStep = table.steps[pos]
     dlg = TagDialog(self, currentStep.tags())
     if (dlg.ShowModal() == wx.ID_OK):
         currentStep.setTags(dlg.tags())
     dlg.Destroy()
예제 #3
0
 def onDoubleClick(self, evt):
     dlg = TagDialog(self, self.theTags)
     if (dlg.ShowModal() == wx.ID_OK):
         self.theTags = dlg.tags()
     self.SetValue(",".join(self.theTags))
예제 #4
0
 def onDoubleClick(self,evt):
   dlg = TagDialog(self,self.theTags)
   if (dlg.ShowModal() == wx.ID_OK):
     self.theTags = dlg.tags()
   self.SetValue(",".join(self.theTags))