amount of slots in a fit changes or if the fit itself changes, call refresh in all other cases
79 lines
2.9 KiB
Python
79 lines
2.9 KiB
Python
#===============================================================================
|
|
# Copyright (C) 2010 Diego Duclos
|
|
#
|
|
# This file is part of pyfa.
|
|
#
|
|
# pyfa is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# pyfa is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with pyfa. If not, see <http://www.gnu.org/licenses/>.
|
|
#===============================================================================
|
|
|
|
import wx
|
|
|
|
import controller
|
|
import gui.fittingView as fv
|
|
import gui.marketBrowser as mb
|
|
import gui.builtinViewColumns.display as d
|
|
from gui.builtinViewColumns.droneCheckbox import DroneCheckbox
|
|
|
|
class DroneView(d.Display):
|
|
DEFAULT_COLS = ["Drone Checkbox",
|
|
"Drone Name/Amount",
|
|
"Drone DPS",
|
|
"Max range",
|
|
"attr:trackingSpeed",
|
|
"attr:maxVelocity",]
|
|
|
|
def __init__(self, parent):
|
|
d.Display.__init__(self, parent)
|
|
self.mainFrame.Bind(fv.FIT_CHANGED, self.fitChanged)
|
|
self.mainFrame.Bind(mb.ITEM_SELECTED, self.addItem)
|
|
self.Bind(wx.EVT_LEFT_DCLICK, self.removeItem)
|
|
self.Bind(wx.EVT_LEFT_DOWN, self.click)
|
|
|
|
def fitChanged(self, event):
|
|
cFit = controller.Fit.getInstance()
|
|
fit = cFit.getFit(event.fitID)
|
|
|
|
stuff = fit.drones if fit is not None else None
|
|
self.populate(stuff)
|
|
self.refresh(stuff)
|
|
|
|
def addItem(self, event):
|
|
cFit = controller.Fit.getInstance()
|
|
fitID = self.mainFrame.getActiveFit()
|
|
trigger = cFit.addDrone(fitID, event.itemID)
|
|
if trigger:
|
|
wx.PostEvent(self.mainFrame, fv.FitChanged(fitID=fitID))
|
|
|
|
event.Skip()
|
|
|
|
def removeItem(self, event):
|
|
row, _ = self.HitTest(event.Position)
|
|
if row != -1:
|
|
col = self.getColumn(event.Position)
|
|
if col != self.getColIndex(DroneCheckbox):
|
|
fitID = self.mainFrame.getActiveFit()
|
|
cFit = controller.Fit.getInstance()
|
|
cFit.removeDrone(fitID, self.GetItemData(row))
|
|
wx.PostEvent(self.mainFrame, fv.FitChanged(fitID=fitID))
|
|
|
|
def click(self, event):
|
|
row, _ = self.HitTest(event.Position)
|
|
if row != -1:
|
|
col = self.getColumn(event.Position)
|
|
if col == self.getColIndex(DroneCheckbox):
|
|
fitID = self.mainFrame.getActiveFit()
|
|
cFit = controller.Fit.getInstance()
|
|
cFit.toggleDrone(fitID, row)
|
|
wx.PostEvent(self.mainFrame, fv.FitChanged(fitID=fitID))
|