Search found 274 matches
- Thu Mar 28, 2013 7:22 pm
- Forum: Platform Related Issues
- Topic: Application sometimes not starting on Linux
- Replies: 16
- Views: 7300
Application sometimes not starting on Linux
I am using wxWidgets 2.9.4 shared library, unicode, release build on Ubuntu 12.10. Approximately 30% of the time wxWidgets applications do not start. This applies to both the wxWidgets sample applications run from the command line and applications I have developed myself run from within Codelite. Un...
- Tue Mar 26, 2013 8:56 pm
- Forum: C++ Development
- Topic: wxRibbon Office 2010 / Metro ArtProvider
- Replies: 5
- Views: 2292
wxRibbon Office 2010 / Metro ArtProvider
Hello, has anyone had a go at producing an Office 2010 or Metro style art provider for wxRibbon.
I am thinking of having a go but don't want to re-invent the wheel.
I am thinking of having a go but don't want to re-invent the wheel.
- Tue Mar 26, 2013 8:13 pm
- Forum: C++ Development
- Topic: wxGrid
- Replies: 28
- Views: 6870
Re: wxGrid
+1 thanks to doublemax, your minimal.cpp in your latest reply is exactly what I needed to get me started with wxStringTokenizer.
It would be great if the example here http://docs.wxwidgets.org/trunk/classwx ... nizer.html contained your code lines 186 - 217
It would be great if the example here http://docs.wxwidgets.org/trunk/classwx ... nizer.html contained your code lines 186 - 217

- Tue Mar 19, 2013 9:21 pm
- Forum: C++ Development
- Topic: Fixed Row Size in wxGrid
- Replies: 1
- Views: 867
Re: Fixed Row Size in wxGrid
Hi, I am not sure that I correctly understand your question, but here goes... You can use the wxEVT_SIZE event to resize the row height, for example: void myFrame::onGridSizeEvent(wxSizeEvent& event) { myFrame->SetDefaultRowSize((event.GetSize().GetHeight() - 40) / 4)); event.Skip(); } If you want t...