def __init__(self, title="", size=(300, 100)): self.defaultTextColor = 0 self.columnCount = 0 self.columnTypes = [] self.columnShare = [] self.columnAlign = [] self.rowData = [] BaseOverlay.__init__(self, title=title, size=size)
def updateColors(self): self.defaultTextColor = self.getForegroundColor() BaseOverlay.updateColors(self)
def updateUI(self): BaseOverlay.updateUI(self) self.listFont = wx.Font(config.get("overlayListFontSize"), wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, False, "Arial")
def createUI(self): BaseOverlay.createUI(self) self.raidListBox = wx.BoxSizer(wx.VERTICAL) self.box.Add(self.raidListBox, 1, wx.EXPAND | wx.ALL, 10)