bottomPanel = wx.Panel(p, style=wx.SUNKEN_BORDER, name="bottomPanel")
bottomPanel.SetMinSize((640,240))
bottomPanel = wx.Panel(p, style=wx.SUNKEN_BORDER, name="bottomPanel")
bottomPanel.SetMinSize((640,240))
sb = wx.StaticBox(self, -1, label)
self._fgtxt = wx.TextCtrl(self, -1, "", style=wx.TE_READONLY)
self._fgclr = wx.Panel(self, style=wx.SIMPLE_BORDER)
sb = wx.StaticBox(self, -1, label)
self._fgtxt = wx.TextCtrl(self, -1, "", style=wx.TE_READONLY)
self._fgclr = wx.Panel(self, style=wx.SIMPLE_BORDER)
self._bgtxt = wx.TextCtrl(self, -1, "", style=wx.TE_READONLY)
self._bgclr = wx.Panel(self, style=wx.SIMPLE_BORDER)
self._bgtxt = wx.TextCtrl(self, -1, "", style=wx.TE_READONLY)
self._bgclr = wx.Panel(self, style=wx.SIMPLE_BORDER)
# setup the layout
fgs = wx.FlexGridSizer(2, 3, 5, 5)
# setup the layout
fgs = wx.FlexGridSizer(2, 3, 5, 5)
self._fgtxt.SetValue( clr2hex(win.GetForegroundColour(), self._fgclr) )
self._bgtxt.SetValue( clr2hex(win.GetBackgroundColour(), self._bgclr) )
self._fgtxt.SetValue( clr2hex(win.GetForegroundColour(), self._fgclr) )
self._bgtxt.SetValue( clr2hex(win.GetBackgroundColour(), self._bgclr) )