what's your favorite RAD for wxWidgets? Topic is solved

Do you have a question about makefiles, a compiler or IDE you are using and need to know how to set it up for wxWidgets or why it doesn't compile but other IDE's do ? Post your questions here.
Post Reply
mzgcoco
In need of some credit
In need of some credit
Posts: 6
Joined: Mon Oct 30, 2006 4:11 am

what's your favorite RAD for wxWidgets?

Post by mzgcoco »

I am a newer. Any suggestion?

Thanks.
lowjoel
Part Of The Furniture
Part Of The Furniture
Posts: 1511
Joined: Sun Jun 19, 2005 11:37 am
Location: Singapore
Contact:

Post by lowjoel »

I'll be biased to the IDE I'm helping to write: http://wxdsgn.sourceforge.net/ I use it for practically everything I write.
metalogic
Super wx Problem Solver
Super wx Problem Solver
Posts: 307
Joined: Fri Oct 08, 2004 8:21 am
Location: Area 51
Contact:

Post by metalogic »

I gather from what I see in these forums that these are the top C++ IDEs on Windows for wx development (not in order):

Code::Blocks
wxDev-C++
Visual Studio + DialogBlocks
Visual Studio + wxFormBuilder

I myself use Visual Studio and I'm quite happy with it.

If I had to develop outside of Windows I would probably choose Code::Blocks but wxDev-C++ is also a fine IDE.

(Edit: Added VS + wxFormBuilder which I had missed)
Last edited by metalogic on Mon Nov 27, 2006 10:30 pm, edited 1 time in total.
HeReSY
Earned some good credits
Earned some good credits
Posts: 120
Joined: Fri Sep 17, 2004 8:58 pm
Location: Germany

Post by HeReSY »

I use Dialog::Blocks and wxFormBuilder for standard gui design.

Most of the design I wrote myself, cause no Gui-Builder uses wxAUI which i use in my apps.

HeReSY
jhurtado
Experienced Solver
Experienced Solver
Posts: 53
Joined: Wed Mar 16, 2005 1:40 pm

Post by jhurtado »

HeReSY wrote: Most of the design I wrote myself, cause no Gui-Builder uses wxAUI which i use in my apps.
You can use both. wxAUI manages individual window panes. So, if you design every pane (wxPanel *) separately you can integrate all of them in a simple wxFrame. The problem is if you want to create all subwindows inside the same frame class.

IMHO, with the previous approach your GUI will be more modular and less error prone (I assumed that you use wxAUI because of you have a very complex GUI).

Respect to the topic, I choose wxFormBuilder, of course :lol:
rjmyst3
Knows some wx things
Knows some wx things
Posts: 49
Joined: Tue Oct 10, 2006 7:02 pm
Contact:

Post by rjmyst3 »

I use wxFormBuilder because it is independent of IDE and is cross-platform.
I use it with Code::Blocks on both windows and linux.
RJP Computing
Experienced Solver
Experienced Solver
Posts: 75
Joined: Sat Dec 10, 2005 10:38 pm
Location: Michigan, USA
Contact:

Post by RJP Computing »

I use wxFormBuilder because it has a very good layout and is very easy to use. I use it with both Visual Studio and Code::Blocks. Plus the development team is very responsive. :wink:
- Ryan
RJP Computing
wxPack - Precompiled wxWidgets package.

Ubuntu 9.04 x86_64/WinXP, AMD Athlon x2 3000+, 4000MB RAM, AC 97 Audio, nVidia GeForce 9400GS 1GB
dsilvia
Earned some good credits
Earned some good credits
Posts: 145
Joined: Sun May 29, 2005 3:42 pm
Location: Bettendorf, Iowa, USA (aka, BFE)

Post by dsilvia »

Most definitely DialogBlocks!

It's the most reliable and most solid of those out there. It's author, Julian Smart, is most helpful and supports it quite well (response usually within 24 hr). It generates build files (makefiles/project files) for all the platforms/build systems that support wxWidgets.

Can't go wrong with that one!;)

Dave S.

wxMS_developers
PhoenixPl
I live to help wx-kind
I live to help wx-kind
Posts: 179
Joined: Wed Feb 15, 2006 9:26 am

Post by PhoenixPl »

I'm using wxFormBuilder and Code::Blocks. Both have good support and both are cross- platform.
bigpilot
I live to help wx-kind
I live to help wx-kind
Posts: 184
Joined: Tue Sep 19, 2006 8:33 am

Post by bigpilot »

DialogBlocks + Visual C++ 2005 Express Edition (Windows)
DialogBlocks + GCC (Linux)
DialogBlocks + GCC (Mac OS X)
Soon to be world famous ;)
zhuxuan
In need of some credit
In need of some credit
Posts: 7
Joined: Sat Aug 12, 2006 4:24 am

Post by zhuxuan »

I use Code::Blocks + DialogBlocks.
DialogBlocks is a good GUI builder, but I am used to using Code::Blocks while coding.
Post Reply