I am having trouble using Boa Constructor, specifically in creating a GUI with a tabbed notebook. I cannot get the App to show the multiple tabs or the panels. I have made wx.App->wx.Frame->wx.Notebook and some panels within the notebook (as shown in the 'Objs' tab of the 'Inspector'.

I have been looking at the example 'Examples\advanced\FramePanels' from the boa folder and looking at the code I can see why it doesn't work. There is a function missing which seems to be generated by boa (as part of the Frame class):

_custom_classes = {'wx.Panel': ['wxPanel1', 'wxPanel2', 'wxPanel3']}
def _init_coll_notebook1_Pages(self, parent):
    # generated method, don't edit

    parent.AddPage(imageId=-1, page=self.panel1, select=False,
          text='Pages0')
    parent.AddPage(imageId=-1, page=self.panel2, select=True, text='Pages1')
    parent.AddPage(imageId=-1, page=self.panel3, select=False,
          text='Pages2')

There is also a line calling the function in the _init_ctrls section of the code. So my question is how can you get boa to add these lines of code?

From my reading I could code it manually, but I do not want to have to do that. My use of wxPython is just making several simple gui's for people who can't use CLI, so I want to streamline the process.

Thank you for your help

link|improve this question

Why dont you use wxglade ? Simpler than BoaCons, maintained and afaik has not problem with notebook tabs. – joaquin Nov 15 '11 at 19:33
I was using that previously, but Boa has been much better until I got to this issue. It may be worth knowing that I wasn't using Windows where it might be less buggy – Anake Nov 16 '11 at 21:14
just to say that wxglade has had many improvements in the last 2-3 years. Now it is highly stable. For recent versions you have to get it from bitbucket (bitbucket.org/agriggio/wxglade) – joaquin Nov 16 '11 at 21:33
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.