Search found 20 matches

by rex666
Wed May 19, 2010 7:10 am
Forum: Platform Related Issues
Topic: wxMac 2.8.10 global operator new/delete problem
Replies: 1
Views: 708

wxMac 2.8.10 global operator new/delete problem

wxMac 2.8.10 on XCode 3.1.3 on OS-X 10.5.8 (problem has happened on 10.6, too) on an Intel Mac (not tested on PPC) My project uses wxWidgets as a monolithic shared library. Another shared library in the project provides a global allocator new/delete. If I modify the allocation size to allow library ...
by rex666
Wed Oct 14, 2009 5:48 am
Forum: Platform Related Issues
Topic: No horizontal scrollbar in wxTextCtrl on Mac
Replies: 5
Views: 1660

Thank you. I posted a new ticket:

http://trac.wxwidgets.org/ticket/11321

I used your sample reproduced project in the ticket, I hope that's OK.

-robin
by rex666
Tue Oct 13, 2009 11:20 pm
Forum: Platform Related Issues
Topic: No horizontal scrollbar in wxTextCtrl on Mac
Replies: 5
Views: 1660

I've never done that before. How does one go about posting a bug report?

Thanks
-robin
by rex666
Tue Oct 13, 2009 12:51 am
Forum: Platform Related Issues
Topic: No horizontal scrollbar in wxTextCtrl on Mac
Replies: 5
Views: 1660

No horizontal scrollbar in wxTextCtrl on Mac

Using wxWidgets 2.8.10 on Windows and Mac. I create a window with a wxTextCtrl with the following style: m_Output = new wxTextCtrl( this, wxID_ANY, "", wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE | wxTE_READONLY | wxTE_DONTWRAP | wxTE_RICH ); On Windows, if the text I use to fill the ...
by rex666
Mon Jun 30, 2008 1:29 am
Forum: Component Writing
Topic: Issues with Enhanced wxTreeListCtrl
Replies: 12
Views: 10859

Re: Issues with Enhanced wxTreeListCtrl

I got to the bottom of this one. This may sound dumb, but is there anywhere I can download the current version of the wxTreeListCtrl files? I went to your website, but the files there are still from last year (the version I am currently using) and there are some issues using it on wxMac (using wxMa...
by rex666
Wed Jan 30, 2008 7:54 pm
Forum: C++ Development
Topic: Bring to foreground
Replies: 10
Views: 2825

I was having the same problem on wxMac. In my situation, I double-clicked on a list to show a window with info about the item. I found that if I used the menu or menu shortcut the new window would be above my list window, but if the list control's activate handler was used the new window would be be...
by rex666
Mon Sep 10, 2007 7:11 am
Forum: Compiler / Linking / IDE Related
Topic: glitz still linked with configure --without-opengl on wxGTK
Replies: 3
Views: 1043

Thank you for your help. I already looked at that message, but it did not really address my issue. I'm on SuSE 10.1, using wxWidgets 2.6.3. If I create a clean build: % mkdir static_debug % cd static_debug % ../configure --disable-opengl % ./wx-config --libs -L/home/robin/dev/wxGTK-2.6.3/static_debu...
by rex666
Sun Sep 09, 2007 4:25 am
Forum: Compiler / Linking / IDE Related
Topic: glitz still linked with configure --without-opengl on wxGTK
Replies: 3
Views: 1043

glitz still linked with configure --without-opengl on wxGTK

I'm not using any OpenGL features, and I configured and built my wx libs with --without-opengl, yet the glitz lib is still listed in the libs (wx-config --libs). I am statically linking to the wxWidgets libs, and I am not using any OpenGL features, so I thought the linker would link it out, but that...
by rex666
Tue Oct 03, 2006 4:54 pm
Forum: C++ Development
Topic: Icons in the header of the new wxTreeListCtrl on wxMSW
Replies: 0
Views: 516

Icons in the header of the new wxTreeListCtrl on wxMSW

I'm trying to get the new wxTreeListCtrl to have an icon in the headers when it is sorted on wxMSW. However, the icons are never displayed. I can't find any code that actually sets the image list for the underlying Windows list control, and the paint functionality for Windows for the header control ...
by rex666
Sat Jun 25, 2005 2:26 am
Forum: C++ Development
Topic: wxListCtrl::SetItemData Memory Leak
Replies: 7
Views: 2340

I see it has already been fixed in 2.6.1

Thanks
-robin
by rex666
Tue Jun 21, 2005 4:15 pm
Forum: C++ Development
Topic: wxListCtrl::SetItemData Memory Leak
Replies: 7
Views: 2340

This is a stupid question, but how do I create a patch?

Thanks
-robin
by rex666
Tue Jun 21, 2005 7:58 am
Forum: C++ Development
Topic: wxListCtrl::SetItemData Memory Leak
Replies: 7
Views: 2340

The problem seems to be in the wxListCtrl::MSWOnNotify method It sets the count to zero before the event is sent, and then tries to clean up the user data after, but because the count was already set to zero, wxListCtrl::FreeAllInternalData doesn't free anything. I moved the m_count = 0 line to be a...
by rex666
Thu Mar 10, 2005 10:18 pm
Forum: C++ Development
Topic: icons in wxStatusBar
Replies: 4
Views: 1908

icons in wxStatusBar

Has anyone done this in a cross-platform way?

Thanks
-robin
by rex666
Fri Mar 04, 2005 8:37 am
Forum: C++ Development
Topic: wxSlider change in 2.5.4
Replies: 0
Views: 719

wxSlider change in 2.5.4

I have a question about a change in wxSlider in 2.5.4 in wxMSW: In 2.5.3, when I used the wxSL_LABELS style (in a horizontal slider) the label numbers appeared to the left and right of the slider, with a little box on the left with the actual value. This worked well in my control layout, because it ...
by rex666
Fri Mar 04, 2005 8:06 am
Forum: C++ Development
Topic: Possible bug in Choicebook
Replies: 1
Views: 849

Possible bug in Choicebook

I am using Choicebook in my app, but the way I'm using it involves a single actual wxChoicebook object that I use DeleteAllPages() and then AddPage() to add the new pages depending on a selection in a list. What I found is that when you call DeleteAllPages(), the m_selection member doesn't get reset...