Files
Phoenix/docs/sphinx/rest_substitutions/snippets/python/converted/wx.ArtProvider.1.py
2016-05-18 16:38:18 -07:00

19 lines
497 B
Python

class MyProvider(wx.ArtProvider):
def CreateBitmap(self, id, client, size):
# Your implementation of CreateBitmap here
pass
# optionally override this one as well
def CreateIconBundle(self, id, client):
# Your implementation of CreateIconBundle here
pass
# Later on...
wx.ArtProvider.Push(MyProvider())