35 lines
1.0 KiB
Python
35 lines
1.0 KiB
Python
import gui.fitCommands as cmd
|
|
import gui.mainFrame
|
|
from gui.contextMenu import ContextMenuSingle
|
|
|
|
|
|
class AddToCargoAmmo(ContextMenuSingle):
|
|
|
|
def __init__(self):
|
|
self.mainFrame = gui.mainFrame.MainFrame.getInstance()
|
|
|
|
def display(self, callingWindow, srcContext, mainItem):
|
|
if srcContext not in ("marketItemGroup", "marketItemMisc") or self.mainFrame.getActiveFit() is None:
|
|
return False
|
|
|
|
if mainItem is None:
|
|
return False
|
|
|
|
if mainItem.category.ID != 8:
|
|
return False
|
|
|
|
return True
|
|
|
|
def getText(self, callingWindow, itmContext, mainItem):
|
|
return "Add {0} to Cargo (x1000)".format(itmContext)
|
|
|
|
def activate(self, callingWindow, fullContext, mainItem, i):
|
|
fitID = self.mainFrame.getActiveFit()
|
|
typeID = int(mainItem.ID)
|
|
command = cmd.GuiAddCargoCommand(fitID=fitID, itemID=typeID, amount=1000)
|
|
if self.mainFrame.command.Submit(command):
|
|
self.mainFrame.additionsPane.select("Cargo", focus=False)
|
|
|
|
|
|
AddToCargoAmmo.register()
|