Search found 6 matches

by RoCKdaFrogg
Mon Jul 04, 2005 7:40 am
Forum: Announcements and Discoveries
Topic: wxMDIBook v0.1
Replies: 2
Views: 1328

It does not work on any platform than Windows, most importantly because the client window is forced in front of the notebook (as reparenting the client window brings many problems) using a Win32 function. I'm not really sure how MDI behaves at all under non-Windows platforms... Isn't it simulated us...
by RoCKdaFrogg
Mon Jul 04, 2005 1:00 am
Forum: Announcements and Discoveries
Topic: wxMDIBook v0.1
Replies: 2
Views: 1328

wxMDIBook v0.1

I am releasing some cleaned up code bits of a current wxWidgets project I'm working on. wxMDIBook provides additional features to the wxMDIParentFrame, wxMDIChildFrame, wxDocMDIParentFrame and wxDocMDIChildFrame classes of wxWidgets. It is a mixture of a MDI and a notebook interface. More informatio...
by RoCKdaFrogg
Sun Jul 03, 2005 8:55 pm
Forum: Platform Related Issues
Topic: Bug in wxMDIChildFrame under wxWidgets 2.6.1 MSW
Replies: 2
Views: 1183

After recompiling wxWidgets with the fix built in it works fine. Changes done: src/msw/mdi.cpp new version of wxMDIChildFrame destructor wxMDIChildFrame::~wxMDIChildFrame() { // will be destroyed by DestroyChildren() but reset them before calling it // to avoid using dangling pointers if a callback ...
by RoCKdaFrogg
Sun Jul 03, 2005 8:45 pm
Forum: Platform Related Issues
Topic: Bug in wxMDIChildFrame under wxWidgets 2.6.1 MSW
Replies: 2
Views: 1183

Ahh, just tried my own bugfix, however it does not work, most probably because wxMDIChildFrame::MSWDestroyWindow is called from the wxMDIChildFrame destructor, when my version is already removed from the vtable...

Does anyone have a suggestion? This sucks.
by RoCKdaFrogg
Sun Jul 03, 2005 8:40 pm
Forum: Platform Related Issues
Topic: Bug in wxMDIChildFrame under wxWidgets 2.6.1 MSW
Replies: 2
Views: 1183

Bug in wxMDIChildFrame under wxWidgets 2.6.1 MSW

I am using wxWidgets 2.6.1 MSW. Constructing a wxMDIChildFrame and then destroying it without a call to Create inbetween crashes the application, because MSWDestroyWindow assumes that Create was called... This works with wxFrame for example, and I'm very sure this behaviour wasn't intended. Thus I h...
by RoCKdaFrogg
Sun Jul 03, 2005 2:16 pm
Forum: Announcements and Discoveries
Topic: wxIFM 1.0.5 - docking library for wxWidgets
Replies: 93
Views: 39625

Hello, found another flaw in wxIFM... When I call ShowChild or HideChild now, it does not hide the whole panel but only the child itself... IMHO wxIFM should remove the whole panel when no entry exists in the panel anymore. Otherwise calling ShowChild or HideChild as a reaction to a View menu is kin...