X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ec873c943d71f0d5f13e3398557071448cda6c23..a4027e74873007e3430af3bd77019bcab76f6c04:/wxPython/demo/BitmapComboBox.py diff --git a/wxPython/demo/BitmapComboBox.py b/wxPython/demo/BitmapComboBox.py deleted file mode 100644 index 32cb656ec4..0000000000 --- a/wxPython/demo/BitmapComboBox.py +++ /dev/null @@ -1,60 +0,0 @@ - -import wx -import wx.combo - -import images - -#---------------------------------------------------------------------- - -class TestPanel(wx.Panel): - def __init__(self, parent, log): - self.log = log - wx.Panel.__init__(self, parent, -1) - - bcb = wx.combo.BitmapComboBox(self, pos=(25,25), size=(200,-1)) - - for x in range(12): - funcName = 'getLB%02dImage' % (x+1) - func = getattr(images, funcName) - img = func() - img.Rescale(20,20) - bmp = img.ConvertToBitmap() - bcb.Append('images.%s()' % funcName, bmp, funcName) - - self.Bind(wx.EVT_COMBOBOX, self.OnCombo, bcb) - - def OnCombo(self, evt): - bcb = evt.GetEventObject() - idx = evt.GetInt() - st = bcb.GetString(idx) - cd = bcb.GetClientData(idx) - self.log.write("EVT_COMBOBOX: Id %d, string '%s', clientData '%s'" % (idx, st, cd)) - - -#---------------------------------------------------------------------- - -def runTest(frame, nb, log): - win = TestPanel(nb, log) - return win - -#---------------------------------------------------------------------- - - - -overview = """
-