Last updated:
0 purchases
wxiconstango 0.1.1
This package provides a wxPython wxArtProvider class with icons from the Tango Icon Theme.
To use it in your application:
from wx_icons_tango import wxTangoIconTheme
class MyApp(wx.App):
def OnInit(self):
wx.ArtProvider.Push(wxTangoIconTheme())
self.frame = TestFrame(None, wx.ID_ANY)
self.SetTopWindow(self.frame)
self.frame.Show()
return True
And then the icons can be accessed through wx.ArtProvider:
wx.ArtProvider.GetBitmap('document-new', wx.ART_OTHER, wx.Size(48, 48))
Any FreeDesktop Icon Theme Specification name can be used.
Currently the Client ID is not used, so just pass wx.ART_OTHER.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.