Beispiel #1
0
    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)
Beispiel #2
0
    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)
Beispiel #3
0
 def updateColors(self):
     self.defaultTextColor = self.getForegroundColor()
     BaseOverlay.updateColors(self)
Beispiel #4
0
 def updateUI(self):
     BaseOverlay.updateUI(self)
     self.listFont = wx.Font(config.get("overlayListFontSize"), wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL, False, "Arial")
Beispiel #5
0
    def createUI(self):
        BaseOverlay.createUI(self)

        self.raidListBox = wx.BoxSizer(wx.VERTICAL)

        self.box.Add(self.raidListBox, 1, wx.EXPAND | wx.ALL, 10)
Beispiel #6
0
 def updateColors(self):
     self.defaultTextColor = self.getForegroundColor()
     BaseOverlay.updateColors(self)
Beispiel #7
0
 def updateUI(self):
     BaseOverlay.updateUI(self)
     self.listFont = wx.Font(config.get("overlayListFontSize"),
                             wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL,
                             wx.FONTWEIGHT_NORMAL, False, "Arial")
Beispiel #8
0
    def createUI(self):
        BaseOverlay.createUI(self)

        self.raidListBox = wx.BoxSizer(wx.VERTICAL)

        self.box.Add(self.raidListBox, 1, wx.EXPAND | wx.ALL, 10)