Questions tagged [wxauitoolbar]

wxpython AUI toolbar widget, a pure Python implementation of an advanced toolbar

Advanced toolbar widget, part of the Advanced User Interface (AUI) widgets which were added to wxpython.

8 questions
3
votes
1 answer

How to find a wxAuiToolBarItem from the wxAuiManager?

I'm trying out the wxAuiToolBar class as a replacement for an existing wxToolbar. My initialization is working fine -- I'm even able to set embedded / vectorized .png files as the bitmaps for the items, which is really cool -- but I'd like for the…
eb1
  • 2,897
  • 3
  • 31
  • 42
2
votes
1 answer

Where is the documentation for wxAUIToolbar?

I looked in http://docs.wxwidgets.org/trunk/ but could't find the documentation for it. Does anyone know where it is and/or why it's not there?
Nathan Osman
  • 71,149
  • 71
  • 256
  • 361
1
vote
1 answer

wxAUI Help - Auto hiding tabs

Can the wxAUI component of the wxWidgets Libary be configured to dock into "auto hiding tabs" like visual studio 2010's own interface does. This is what I want, panels that can be auto hidden in…
Jamie
  • 170
  • 2
  • 16
0
votes
1 answer

How to pass toolbar between classes

I'm trying to create 2 pages of wx.Notebook (each page is wx.Panel as a separate class). Class Main is wx.Frame. And when I try to set the menus it has to be inside of wx.Frame(Main class), however, my toolbars is in wx.Panel(A class). I print (z…
gcs
  • 67
  • 1
  • 12
0
votes
2 answers

ERLANG - WX NOTEBOOK SIZE

Im having a small issue today.. I am trying to create an aui as shown in the demo program of the wx module. The size of the actual tabs will not change no matter what I do. They stay at about 400 by 50 and I can't understand why. I think it may be…
BAR
  • 15,909
  • 27
  • 97
  • 185
0
votes
1 answer

wxAuiToolBar updated not properly

have a wxAuiToolBar to which items are added and removed during runtime. Unfornunately, when adding or removing an item, the toolbar isn't updated (painted) correctly Creating toolbar: _toolbar = new wxAuiToolBar(this, wxID_ANY, wxDefaultPosition,…
0
votes
1 answer

How to set wxAuiToolBar background?

On wxWidgets3.0.0, I want change wxAuiToolBar background, so I create wxAuiToolBar use wxAUI_TB_PLAIN_BACKGROUND style. However, did not reach the expected results. Example: // create some toolbars wxAuiToolBar* tb1 = new wxAuiToolBar(this,…
0
votes
1 answer

PyDeadObjectError when deleting a panel with auitoolbar via the toolbar

I have a panel with auitoolbar in it and a 'delete' button on the toolbar. Pressing this button will delete the panel and everything in it. The problem is that beside wx.EVT_TOOL which I use to trigger the deletion, auitoolbar also triggers OnLeftUp…
hdrz
  • 461
  • 6
  • 12