Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This source code

class MyToolBar(wx.ToolBar):
  def AddTool2(self, id, shortHelp = '', longHelp = ''):
    global TB_SIZE
    try:
      ArtId = ArtMap.get(id)
      Ico = wx.ArtProvider.GetBitmap(ArtId, wx.ART_TOOLBAR, TB_SIZE)
      self.AddSimpleTool(id, Ico, shortHelp, longHelp)
    except StandardError:
      print('Something wrong, maybe wrong id')

Class MyFrame(wx.Frame):
  def __init__(self, parent, *args, **kwargs):
    wx.Frame.__init__(self, parent, *args, **kwargs)

    ToolBar = MyToolBar(self)
    ToolBar.AddTool2(wx.ID_NEW, 'New', 'Creates new file')
    self.SetToolBar(ToolBar)
    self.GetToolBar().Realize()


ArtMap = { wx.ID_NEW : wx.ART_NEW,
          }
ID_BOUNCE = wx.NewId()
TB_SIZE = wx.Size(16,16)

app = wx.app()
frame = MyFrame(None, -1, 'MyFrame', (0,0))
app.MainLoop()

works well for adding tools to toolbar when the tool has a wx.ART. But how do you add a new tool that have no wx.ART or no wx.ART that can represent it well like the ID_BOUNCE where the tool Bounce is suppose to make a ball bounce in the frame?

Thanks in advance.

share|improve this question

1 Answer

up vote 0 down vote accepted

wx.ToolBar has AddLabelTool method with a bitmap parameter.
Find an example over at zetcode.

share|improve this answer
What about the resolution issue? If I use wx.ART_SUMTHIN, it automatically shows up the right size. – Tendou Kishi May 7 '12 at 2:43
1  
I don't know about the constant, but concerning size I suggest you either provide bitmaps in correct sizes or give the SetSize method of bitmap a try. – phineas May 7 '12 at 6:45
You definitely have to create bitmaps that are the right size. Of course wxPython's builtin art is going to have several sizes available. – Mike Driscoll May 7 '12 at 14:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.