Also, we've precompiled wxpropertygrid (for wx2.8 ) for windows in wxadditions at wxpack.sf.net.
It is also available precompiled for ubuntu.
Search found 49 matches
- Tue Dec 16, 2008 11:39 pm
- Forum: C++ Development
- Topic: Header File for Property Grid
- Replies: 2
- Views: 892
- Thu May 08, 2008 2:41 am
- Forum: wxCode
- Topic: compiling wxThings and by extension wxPlotCtrl
- Replies: 3
- Views: 1801
It might be easier for you to just install wxPack.
http://wxpack.sf.net
It is precompiled wxWidgets libraries.
It includes some 3rd-party widgets, wxPlotCtrl included.
http://wxpack.sf.net
It is precompiled wxWidgets libraries.
It includes some 3rd-party widgets, wxPlotCtrl included.
- Fri Apr 18, 2008 3:03 am
- Forum: C++ Development
- Topic: wxStyledTextControl vs. wxScintilla for Syntax Highlighting
- Replies: 19
- Views: 3746
The main goal of wxPack is to provide the wxWidgets libraries pre-built. That problem is already solved on mac and linux. wxAdditions (a subset of wxPack) is a collection of contributed wxWidgets controls, and happens to include wxScintilla. wxAdditions is not available prebuilt for linux or mac, al...
- Thu Apr 17, 2008 11:56 pm
- Forum: C++ Development
- Topic: wxStyledTextControl vs. wxScintilla for Syntax Highlighting
- Replies: 19
- Views: 3746
On windows, I recommend you use wxPack. http://wxpack.sourceforge.net It includes compiled wxScintilla libraries - built with both MinGW and Visual Studio. The source for that version of wxScintilla are also much improved over Otto's last release. They include a much more recent version of Scintilla...
- Sun Apr 06, 2008 1:21 am
- Forum: Platform Related Issues
- Topic: MacOSX: did someone could compile wxThings / wxPlotCtrl ?
- Replies: 4
- Views: 1039
- Wed Mar 26, 2008 11:54 am
- Forum: Platform Related Issues
- Topic: Question about references in C++ and GCC
- Replies: 1
- Views: 627
If you change AppendCustomValue(wxString&) to AppendCustomValue(const wxString&) then this m_object->AppendCustomValue(event.GetString()) will work. Here's why: When you pass the result of event.GetString() to AppendCustomValue(), it is only ever a temporary object. The C++ standard does not allow a...
- Sat Mar 22, 2008 6:19 pm
- Forum: Compiler / Linking / IDE Related
- Topic: template compilation problem with STL
- Replies: 5
- Views: 1187
I don't know all the rules with templates in this scenario. But, because "iterator" is a typedef built with the "T" type, it may help to indicate to GCC that "iterator" is a type, like this:
Code: Select all
typename std::list<T*>::iterator it;
- Fri Mar 21, 2008 12:35 am
- Forum: The Code Dump
- Topic: wxFlatNotebook
- Replies: 248
- Views: 62947
- Tue Mar 18, 2008 12:20 pm
- Forum: Compiler / Linking / IDE Related
- Topic: GUI Designer for Ubuntu
- Replies: 8
- Views: 1760
I tried installing wxformbuilder but I get an error: Dependency is not satifiable : libwxbase2.8-0 I installed the above package from Synaptics Package Manager but it still shows the same error. Same for Code::Blocks just that it is libwxgtk2.8-0. I'm sorry, I forgot about that. The currently relea...
- Tue Mar 18, 2008 1:00 am
- Forum: Compiler / Linking / IDE Related
- Topic: GUI Designer for Ubuntu
- Replies: 8
- Views: 1760
wxFormBuilder is included in Ubuntu Hardy (8.04) - which will be released in April. That'll probably be the easiest to install on Ubuntu. It also works quite well, although I'm a developer of it, so you'll have to take that into account when you consider my opinion. There are .debs available to ins...
- Sat Mar 08, 2008 3:43 am
- Forum: Platform Related Issues
- Topic: Bogus wxFrame assertion failure on GTK2 w/AUI
- Replies: 3
- Views: 772
- Thu Feb 21, 2008 8:06 pm
- Forum: C++ Development
- Topic:
- Replies: 5
- Views: 1407
You can force the control to lose focus like this:
Code: Select all
wxFocusEvent focusEvent( wxEVT_KILL_FOCUS );
txtLicencia->ProcessEvent( focusEvent );
- Thu Feb 21, 2008 2:32 am
- Forum: C++ Development
- Topic: wxXmlDocument and XML Parsing error dialog
- Replies: 4
- Views: 1506
just a shot in the dark, but if wxXml is using wxLog to pop that up, constructing an object of wxLogNull before calling Load() will prevent that message box.
Docs for wxLogNull:
Docs for wxLogNull:
Code: Select all
wxLogNull
- Wed Dec 19, 2007 11:09 am
- Forum: Compiler / Linking / IDE Related
- Topic: Help: how to install wxWidgets into my vs2005
- Replies: 6
- Views: 1763
One of the reasons that wxWidgets is better than MFC, is that wxWidgets can use "sizers" to position GUI elements ("widgets"). This allow the GUI of a wxWidgets app to be flexible, such that a window can be resized, and the widgets either move or grow, it is up to the programmer. Sizers are so much ...
- Tue Dec 18, 2007 12:56 pm
- Forum: Compiler / Linking / IDE Related
- Topic: Help: how to install wxWidgets into my vs2005
- Replies: 6
- Views: 1763
The idea behind wxPack is that you do not need to build wxWidgets yourself. It is an installer for compiled libraries.
Install wxPack, open Visual Studio, run the wxWidgets wizard, click Build, click Run, be happy!
Install wxPack, open Visual Studio, run the wxWidgets wizard, click Build, click Run, be happy!