Search found 3 matches

by doman
Tue Mar 05, 2013 11:56 pm
Forum: The Code Dump
Topic: Removing the sash from a split wxAuiNotebook
Replies: 0
Views: 4674

Removing the sash from a split wxAuiNotebook

I was fixing up an AUI application that programmatically splits an wxAuiNotebook. I was trying to removing the sash because there are some glitches on dock resizing in the wx 2.9 windows build used that I didn't want to have in a production environment. So I was simply trying to remove the sash that...
by doman
Wed Jan 02, 2013 10:22 pm
Forum: C++ Development
Topic: wxAuiNotebook event handlers never reached??
Replies: 2
Views: 1326

Re: wxAuiNotebook event handlers never reached??

Oops... after laying out the problem in my post, when I revisited it I saw the issue fairly quickly. The base class has this prototype instead: virtual void on_change_page( wxAuiNotebookEvent& event ) :oops: Changing it in the inherited class fixed it right up. At least I can share my novice mis...
by doman
Wed Jan 02, 2013 8:54 pm
Forum: C++ Development
Topic: wxAuiNotebook event handlers never reached??
Replies: 2
Views: 1326

wxAuiNotebook event handlers never reached??

I am maintaining a large application utilizing an AUI notebook and need to handle tab changes. The app's UI is built in wxFormBuilder and it also uses the wxFormBuilder to generate dynamic hooks to all the event handlers, and this works flawlessly for every single other control in the application. A...