Search found 7 matches

by bitplane
Thu May 08, 2008 11:17 pm
Forum: C++ Development
Topic: wxAuiNotebookEvent::GetSelection()
Replies: 1
Views: 522

*bump


* I'm not sure what the policies are on bumping topics, could anyone please tell me where wxAui devs are most active? I've been trying to reach them about this problem for weeks.
by bitplane
Tue May 06, 2008 5:15 pm
Forum: C++ Development
Topic: wxAuiNotebookEvent::GetSelection()
Replies: 1
Views: 522

wxAuiNotebookEvent::GetSelection()

I'm vetoing the Page close event for wxAuiNotebook, however when I try to use "event.GetSelection()" and divert it to a DoPageClose function, if I split the tab and try to close it there, it returns -1 as the currently selected page index. Which is wrong obviously... I can't seem to figure...
by bitplane
Tue May 06, 2008 4:13 am
Forum: Compiler / Linking / IDE Related
Topic: Visual C++ Express 2008 Precompiled Header
Replies: 0
Views: 395

Visual C++ Express 2008 Precompiled Header

For my project I have stdwx.h standard header file which I make into a precompiled header... I have CConf.cpp and CMain.cpp which contain #include "stdwx.h" stdwx.h contains #include "CConf.h" and "CMain.h" and all the wx header files and other stuff... However, when I ...
by bitplane
Sat Apr 19, 2008 6:17 am
Forum: C++ Development
Topic: wxAuiSimpleTabArt
Replies: 2
Views: 1270

wxAuiSimpleTabArt

Two problems I'm currently having with wxAuiNotebook... 1. When the notebook is created with wxBORDER_NONE or wxNO_BORDER, there is still a small border around the notebook window 2. when I derive a class from wxAuiSimpleTabArt, and override the DrawTab function, it doesn't draw anything. It just us...
by bitplane
Mon Apr 07, 2008 6:09 am
Forum: Component Writing
Topic: newbie: wxAuiTabArt
Replies: 2
Views: 1344

I'm having similar problems as stated above only I have implimented all the required functions and it compiles fine. I even was able to draw my custom background. Only problem is I don't know the steps to take to draw custom tabs. when I draw black rectangles in DrawTab it doesn't display... Is ther...
by bitplane
Wed Feb 13, 2008 3:59 am
Forum: Compiler / Linking / IDE Related
Topic: Ubuntu build issues
Replies: 2
Views: 733

Ubuntu build issues

[quote]../src/regex/regc_locale.c:30: warning: excess elements in struct initializer
../src/regex/regc_locale.c:30: warning: (near initialization for
by bitplane
Sun Feb 03, 2008 9:06 pm
Forum: C++ Development
Topic: delayed destruction
Replies: 1
Views: 532

delayed destruction

could someone provide me with a small example of how to implement delayed destruction for a control with a parent. When my window is deleted, the child control gets destroyed, but doesn't throw a wxEVT_CLOSE_WINDOW, It does however, trigger an OnDestroy... But I need to be able to veto... Can't Veto...