MCPcopy Create free account
hub / github.com/pyfa-org/Pyfa / __init__

Method __init__

gui/builtinAdditionPanes/projectedView.py:58–63  ·  view source on GitHub ↗
(self, dropFn, *args, **kwargs)

Source from the content-addressed store, hash-verified

56
57class ProjectedViewDrop(wx.DropTarget):
58 def __init__(self, dropFn, *args, **kwargs):
59 super(ProjectedViewDrop, self).__init__(*args, **kwargs)
60 self.dropFn = dropFn
61 # this is really transferring an EVE itemID
62 self.dropData = wx.TextDataObject()
63 self.SetDataObject(self.dropData)
64
65 def OnData(self, x, y, t):
66 if self.GetData():

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected