Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
Programming IT Technology

wxWindows vs. MFC 103

EvanED queries: I'm going to devoloping a chess program, and was until a couple days ago planning to do it in MFC. But then I ran across wxWindows. I think it would be cool if it were able to run under Linux. (At the moment, I do not have Linux on any computer but will as soon as I get my own machine.) Do the benefits of supposed cross-platformness outweigh the drawbacks of having to learn a new system and not having all the (incredibly wonderful) automatic code generation features Visual C++ provides for MFC programs? Or would it perhaps be better to write it in MFC since I am reasonably familiar with it then port it to wxWindows?"
This discussion has been archived. No new comments can be posted.

wxWindows vs. MFC

Comments Filter:
  • by Geek Boy ( 15178 )
    Why not just use Qt? It's free, it works on all those platforms (well not OS/2 that I know of...). It's not free on Windows or MacOS however. I think Qt has a nicer API anyways.
    • Qt does require a strange precompiler. This is the biggest reason I avoid it. I'd rather my programs remain standard C++.
      • Not really a huge deal... just think of the non-standard Qt constructs as macros and go about your life. MFC/VC generates code too, the same as Qt's moc.

    • Re:Qt (Score:2, Insightful)

      by VZ ( 143926 )
      [disclaimer: I'm a wxWindows developer]

      The main advantage wxWindows has over Qt is that it has truely native look and feel (LNF). Try running your Qt program under Windows XP and compare it with a wxWindows one -- which one looks really native? Personal preferences aside (i.e. forgetting that I hate XP LNF), wxWindows clearly fullfills the goal of allowing you to create native looking applications better. The same goes for wxGTK port: Qt apps will never use yyour current GTK+ theme, but wxGTK ones will.

      Further, why ask "why not just use Qt"? Why not rather ask "why use a proprietary and closed (in the sense that you can't modify it nor participate in its development) library instead of completely free, open and at least in some ways superior one"?

    • What about using XUL mozilla stuff?

  • by xirus ( 584691 )
    I guesse it's up to you to see how much time you want to put into it...
  • wxWindows definately (Score:2, Informative)

    by jpt.d ( 444929 )
    wxWindows provides a nice api that renders using a native method (windows uses windows controls, unlike qt which draws its own).

    MFC is not going to be supported by microsoft now because of .Net (which also means platform lockin).

    I can never recommend qt, because of its wierdness with having a preprocessor of its own. If you could, Objective C would be a nice language to do it in :-)
  • by tdelaney ( 458893 ) on Monday July 15, 2002 @05:33PM (#3889206)

    I can pretty much guarantee that you will be more productive and have your product out the door faster, event if you need to ramp up on both Python and wxWindows.

    Lots more information at:

  • Look into Qt [trolltech.com] as one of your options. It is very mature, widely used, intuitive, and now supports Mac OS along with MS Windows and X-Windows. From a Free Software perspective, one downside is that you have to purchase a license for Windows development and/or commercial development (upside: it remains free for Free Software). If you have no budget and are set on the Windows platform, then Qt is not the best option.

    In any case, I wholeheartedly recommend that you do not use MFC. My argument is that developing software around proprietary APIs is very risky. I've witnessed serious problems arise in long-term projects when API vendors go under or stop supporting their products. The fact that Microsoft is #1, etc., does not reduce the long-term risk, since all companies is mortal (and more than a few people argue that MS' days are numbered). If you want to make sure the long hours you put in now don't go to waste later on, choose your APIs wisely, and, no matter the API, find ways to compartmentalize your program to isolate risks.
    • ... leaving you effectively in the same situation as having your vendor die off or stop supporting the product. The only difference is you could continue development on your own. But how many people are really going to do that?

      If you want real portablity, use an ASCII terminal for the display. You'd have a better chance of getting that to work 10-20 years from now than wxWindows, Tk, or MFC.


    • Absolutely, cross-platform is worth a lot.

      If you use MFC, you tie yourself to whatever Microsoft decides about its money-making schemes.

      wxWindows is here to stay. The GUI is native on any platform. Yes, there may be slow-downs in development, but the need will not go away.

      Within two years, after governments evaluate the security risk of using U.S. software, they will pass laws that government workers must use Linux or BSD. That will cause the movement away from Windows to accelerate.

      There will come a time when Linux is the dominant OS. It would be unfortunate if you could not run your program on Linux.
      • I'd like to do a quick shout-out to FOX [fox-toolkit.org].

        Like wxWindows it is cross platform and open. Unlike wxWindows the GUI is part of the library and not a wrapper around the OS user interface. This may be an advantage or a disadvantage. Anyway, FOX is another mature alternative and I like it.
  • by LoveMe2Times ( 416048 ) on Monday July 15, 2002 @05:46PM (#3889349) Homepage Journal
    If you are a newbie, then write it in MFC. Porting to wxWindows is easy--I recently ported an MFC project at work to wxGTK on Solaris, and chaning all the MFC calls to wxWindows calls only took a couple of hours for a 2 man-month project.

    If, on the other hand, you are confident with MFC, then just skip it and write straight to wxWindows. Basically, if you write in MFC with VC++, you can use all the class wizard stuff to set up message maps and create stub functions, etc, and it's just faster to get it up and running if you don't know how to do this yourself. Then, you can do easy search and replace to convert to wxWindows. For example, all of your Invalidates become "Refresh," all of your CDCs become wxDC, CString becomes wxString, etc etc. You will have to make a couple of small changes here and there, but search and replace will be 90% of the work.

    If you know how to set up the message maps and whatnot yourself, then just take one of the example programs (it comes with loads of examples) and start modifying to taste. There is really good documentation on the website, although I found the search capabilities cumbersome.
  • pragmatic answers (Score:5, Insightful)

    by Pauly ( 382 ) on Monday July 15, 2002 @05:46PM (#3889356)
    Do the benefits of supposed cross-platformness outweigh the drawbacks of having to learn a new system...

    This is a question you can only answer yourself. It's always more work to take more than one platform into consideration, and wxWindows is no panacea in this regard. Only bother with cross platform coding if you really indend for the code to be run across platforms. That said, wxWindows is nicer to use than MFC, although for a Windows-based chess program, I doubt you'll be able to avoid MFC entirely. MFC just does more than wxWindows.

    ...and not having all the (incredibly wonderful) automatic code generation features Visual C++ provides for MFC programs?

    This autogenerated code is so awful, I used to create it just to frighten people: "Look how many lines of code it takes for this dialog box!! Pay me more!!" MFC is the single largest reason I've given up on Windows programming permanently (Winsock is a close second). Since this is clearly a learning experience for you (right?), then go ahead, play with MFC. Nothing teaches like pain. But be warned, MFC plus Visual C++ can make you hate real C++ by warping your mind. __int32 indeed.

    Or would it perhaps be better to write it in MFC since I am reasonably familiar with it then port it to wxWindows?
    This is the path of greatest work and quite likely greatest learning. If you'd like to pursue the path of least pain to produce a truly cross-platform GUI app, I suggest, from experience, TrollTech's QT [trolltech.com].

    • Re:pragmatic answers (Score:3, Interesting)

      by Jerf ( 17166 )
      That said, wxWindows is nicer to use than MFC, although for a Windows-based chess program, I doubt you'll be able to avoid MFC entirely. MFC just does more than wxWindows.

      The second sentence is trivially true, but the first is probably false. There are any number of ways to approach the problem, but one first-cut possibility is an 8x8 grid of wxBitmapButtons. You can set all the bitmap states so it doesn't 'look' like a button (raised, etc), and then you need one bitmap per piece per color (plus probably a selection), which isn't that big a deal.

      That's probably what I'd personally go with, just because the events are quite natuarally set up, and the bitmap generation isn't that big a deal. You could of course paint directly into the dialog (wxPaintDC), just like you'd end up doing in MFC.

      Another interesting thing that you can do with wxWindows that is much harder to do with MFC is the possibility of using the various wrappers around it. wxPython is quite mature, and while I've never used it, I'd bet wxPerl is similarly mature. In this case, C++ probably is your best bet, because chess is one of those things that you need speed, thus you need C(++), and it probably isn't worthwhile to write the GUI in Python or Perl and then shell out to the chess program. But learning wxWindows leaves that as a future possibility.

      And believe me, a nice windowing toolkit plus a nice language (Perl or Python depending on temprement... I recommend giving both a good shake before deciding) is a really nice tool to have around. I've knocked together programs in Python/Tk and Python/wxWindows in a couple hours that I'd never even think about doing in MFC/C++ or VB... that goes for (Python/Perl) * (wxWindows/Tk/QT/GTK bindings), not just the combos I've described here.
    • I think that this is a troll, although I can't tell for sure. Seems a little misinformed, at least.

      wxWindows is no silver bullet, but it is very functional. All of my experience has been, "it just works." The main extra work for me in getting code to be cross platform when working with wxWindows is the different build environments. If you're a VC++ developer, then the whole Makefile thing can be confusing for a while.

      You go on to rip on the autogenerated code, which suggests to me that you were having some trouble grasping the MFC framework. It takes a little getting used to if you've never done event based programming before, but apparently this guy has done MFC before, so this shouldn't be a hurdle. The stuff that AppWizard and ClassWizard generate are there for a reason, and very rarely do you have mess with any of it. On the occasions that you do have this need, then yes, you need to read the comments, and should probably get a book. MFC has its shortcomings, sure, but usually people struggle more because they don't understand the windows API programming going on in the background. If you want to do fancy stuff, then you have to know what events to handle, what the creation sequences are, and occasionally there are subtle interactions between MFC and the API. But this guy just wants to write YACP (Yet Another Chess Program), so I doubt he's going to do anything fancy. So VC++ will save him a bunch of time and not cause much in the way of headaches.

      You sum up by suggesting that porting from MFC to wxWindows would be the most work and that QT would be the "least pain." I must humbly disagree. If he already knows MFC, then porting to wxWindows is quite trivial. I have not used QT, so it may also be easy, but QT has licensing issues if you want to distribute a commercial application, whereas wxWindows does not. I realize that he just wants to do YACP, not likely a commercial endeavor, but wxWindows seems like the better skill investment to me. And since you greatly misrepresent the case for wxWindows at least, so I'm dubious of your claim that QT is better.
      • by Pauly ( 382 )
        I think that this is a troll, although I can't tell for sure. Seems a little misinformed, at least.

        I will admit it's been a while since I've used MFC. However, my experience predates Windows by a fair amount, so my appraisal of MFC isn't based so much on an ignorance of the windows API but on knowledge of many GUI api's in general. Having used Iris, OpenStep and others before Win32, I can look at the MFC code generated by the wizards (and by myself) and conclude it's garbage. I've created comparable apps, in other frameworks, and MFC has for me always been the most painful to use. Borland OWL comes in a close second. Motif gets third.

        If you want to do fancy stuff, then you have to know what events to handle, what the creation sequences are, and occasionally there are subtle interactions between MFC and the API.

        The subtleties you have worked hard to understand and work within don't exist in other, more perspicuously designed GUI frameworks. I would rather have something behave the right way the first time than in some peculiar way to be vaguely deduced/read about. I understand your affinity for MFC: once you've gone through the pain and considerable expense in time of learning it, it's hard to believe there's something else out there that's much simpler to use and equally, if not more, powerful.

        If he already knows MFC, then porting to wxWindows is quite trivial.

        Finally, porting fromanything to anything is by definition more work that simply writing that one thing once. If you mean for your code to run on multiple platforms, start from scratch coding using tools intended to work on multiple platforms. If you want to write windows apps, use .NET, cuz' MFC is dead don't ya' know.

        I have not used QT, so it may also be easy, but QT has licensing issues if you want to distribute a commercial application, whereas wxWindows does not.

        This is a valid point. I made the assumption that hardly anyone with this cursory a knowledge in GUI programming on windows would be creating yet another chess program for commercial purposes.

        • First, thanks for replying. Seems like we'll probably agree to disagree, though :)

          The subtleties you have worked hard to understand and work within don't exist in other, more perspicuously designed GUI frameworks.

          Mostly, the subtleties I have worked hard to learn are subtleties of GUI programming in a WIMP environment. There's pretty much no way around knowing what events are generated for various things and what data comes along for the ride. Whatever your environment is, you will occasionally need to know what the construction order is of your windows and other frustrating items. And I won't believe for a minute that there exists a toolkit worth using without subtleties.

          I would rather have something behave the right way the first time than in some peculiar way to be vaguely deduced/read about.

          I find that newbs tend to get confused/frustrated because it's so easy to get started with appwizard that they get misled into thinking that you don't have to know anything to make it work. A lot of them, being fresh out of school, have never done event driven programming, and are just overwhelmed by the whole model ("where's the f*#@ing main() function?!?"). These people should do some windows programming straight to the API before trying MFC or some other toolkit, because they will find any machinery peculiar and has to be read about.

          I understand your affinity for MFC: once you've gone through the pain and considerable expense in time of learning it, it's hard to believe there's something else out there that's much simpler to use and equally, if not more, powerful.

          Let me clarify that I do not like MFC. It has the same problem as pretty much every toolkit that I've worked with: it bundles a GUI toolkit with an application framework with a bunch of utility classes. The GUI toolkit is pretty reasonable given the windows API it has to work with. The app framwork kinda sucks, and I don't like the utility classes much. Now, while people like boost.org [boost.org] are working on utility classes that will rock, they're not ready yet, and nobody that I know of really cares much about app frameworks.

          Finally, porting fromanything to anything is by definition more work that simply writing that one thing once.

          On the surface, this seems like a truism. However, lets say that you have a tool that will save 10% of your development time if you use A instead of B, and that you already know A but not B, and you can port from A to B without really having to know a lot about B, and so you can port in about 1% of the development time. In other words, I think that given this guy's situation, it is very reasonable to expect that appwizard and classwizard will save him more time than he spends porting to wxWindows.

          This is a valid point. I made the assumption that hardly anyone with this cursory a knowledge in GUI programming on windows would be creating yet another chess program for commercial purposes.

          Consider the possibility that he's using this as a learning experience for a future commercial project. Not necessarily a deciding factor, but you do want to keep in mind how your skillsets will help you in the future :)
          • I just read this and nodded my head a lot. Your point about frameworks is excellent -- it brought up memories of A.C.E. and made me shudder. MFC might be no worse than the other do-too-much-frameworks. FLTK [fltk.org] anyone?

  • Get a Mac and try using Objective-C with PBX and IB. woops, Chess is already done and been opensourced because it depends on GNU Chess. Which is the best chess program out there. It even beats the world leader in chess.

    You might want to try to port it to GNUStep.
    Here is the link to it http://developer.apple.com/darwin/projects/misc/
  • CLX is the cross platform version of Borland's VCL which is used in Delphi and C++ Builder. Delphi has a counterpart in Kylix that would allow dual development for both Linux and Windows.. the only downside being you would have to know Delphi (Object Pascal). But it seems as a great multiplatform tool. There are free personal versions of Delphi and Kylix on Borland's website for GPL use, but to distribute a commercial application without the initial popup you would have to purchase one, get someone else to compile them for you, or compile both in Delphi and Kylix. Good luck in whatever you choose.
    • As I understood it, a later version or Kylix (one this fall, maybe?) is supposed to support coding in C++. Also, the CLX is sort of based on Qt -- from what I am seeing at the moment, it looks like the CLX is made up of Pascal bindings around Qt.
      • > As I understood it, a later version or Kylix (one this fall, maybe?) is
        > supposed to support coding in C++.

        Yes, Kylix 3, which is expected sometime this summer supposedly. And the CLX is indeed based on Qt, so on Windows you'd essentially end up with a run-time DLL a la MFC42.DLL for Qt. Not a major thing really, but as an alternative you could stick to plain VCL on Windows and try to isolate (and keep to a minimum) any necessary win32 code such that you could rewrite that code in Kylix using available Linux libraries. VCL code tends to port over to CLX code pretty easily (often verbatim if I remember correctly, at least for many GUI elements), so on Windows you can still have Qt-free code and still have a pretty portable project. This tends to be harder for database apps, since I believe the CLX introduces a new db abstraction model, but for GUI and networking code (use Indy) it's pretty straight forward.
  • Porting to/from MFC is a total pain - I don't reccommend it.

    wxWindows is a great product. One of it's best features, IMHO, are all the language bindings. It's very easy to prototype your app in wxPython, then convert to a C/C++ app later.

    Plus, if you ever want to run your app on anything other than Windows, MFC is defintely not the right choice.

    • Sounds to me like you haven't done much porting between MFC and wxWindows. I've never had an easier porting experience. wxWindows was intentially built to work like MFC to make it easy to port, and they most certainly succeeded, with the notable exception of OLE support. I ported a several man month project in a day or two, and none of it was hard or confusing, it just amounted to looking up the equivalent functions in the help. I could do the conversion much faster now because I wouldn't have to keep glancing at the web page.
  • by tongue ( 30814 ) on Monday July 15, 2002 @06:08PM (#3889531) Homepage
    if you use .Net with GTK#, you not only help out the development effort of gtk# (by testing) and mono (if you go for the whole platform-independent thing), you learn a toolkit that is going to be commonly useful. I don't know much about wxWindows, only that its never been a requirement for any job i've interviewed for, and as far as i'm concerned, MFC is dead... yeah, there's still a lot of apps written in it, but very few new ones.
  • Do you want to make it cross-platform for philosophical reasons? Do you wan to do it for the challenge (maybe Tk would be a better choice MUHHAHAH)? Do you want to sell it as shareware (MFC, duh)?. Are you writing it to learn more about computer Chess AI (MC since you know it)? Or are you writing it to learn more about manipulating on-screen graphics and learn GUI design? Then you should go with Qt, wxWindows, MFC, Tk, etc. And then write a book about your experience. Mind you, the technical aspects, not the nervous breakdown! :-)
  • First, having used both MS Visual C++ and Borland's C++ builder, I almost take offence to the statement that Visual C++ has nice GUI building and code generation features. It is strictly a minimal tool. Borland's GUI designer is actually fully featured and well integrated.

    Now, on to Qt -- it is a C++ API, it is clean, very portable and very easy to use. It used to cost money for a development license for anything on windows, but it no longer does. See the Windows non-commercial edition [trolltech.com]. I work on a project which uses Qt for the GUI, and that source builds unmodified on Linux, Win32, SunOS, AIX, IRIX, and (I think) Mac OS X.

    In addition, it also has a nice graphical designer [trolltech.com] with some nice code generation features, and excellent documentation [trolltech.com].

    Their "pre-processor" is in fact what lets the code REMAIN standard C++ -- it does NOT require language extensions to operate, unlike MS VC++ and Borland C++ Builder.

    They've been around for something like 10 years, too. This is a mature product. And no, I don't work for them or own stock (if it exists) -- just a pleased user.

    • VC++ does not require language extensions. I would, of course, not recomend you try to use MFC with any compiler except VC++ because it'll probably drive you up the wall.

      VC++ and wxWindows both require lots of macros, however.
      • VC++ does not require language extensions.

        No, but MFC does. Try compiling any MFC app with the standard compliance compiler options set in VC++ and see the fireworks. This is one of the major reasons that VC++ still has bizarre non-standard behaviour in places they should long since have fixed; it would break millions of lines of existing MFC-based code if they changed it.

        • VC++ does not require language extensions.
          No, but MFC does.

          Thank you, yes, I misspoke. I meant to say MFC.

          Slightly tangential, but the biggest offender IMO of MS non-standards compliance is their use of the old for-scoping rules that have been "wrong" since at least the '96 C++ draft standard IIRC. You have two options to fix it -- force full ANSI compliance which will prevent almost any windows app from compiling, or use (get this -- this is their idea, not mine):
          #define for if (true) for
          This is true for all Visual Studio compilers, including the latest and greatest .NET, or so sayeth the MSDN Knowledge Base.

          • You have two options to fix it -- force full ANSI compliance which will prevent almost any windows app from compiling, or use (get this -- this is their idea, not mine):

            #define for if (true) for

            Full ANSI compliance will cause almost any Microsoft-based Windows app not to compile. Almost everyone else manages quite happily, though Borland's C++ Builder does make extensive use of a few proprietary extensions as well. :-(

            The for-loop hack has been around for quite a while, of course (sorry, just realised how that reads...) but while that problem is the biggest one, it's not the only offender (or at least, it never used to be).

          • #define for if (true) for

            This is a very dangerous definition, as it invites a following else to be misunderstood. For example, it breaks the following:

            if(foo) for(int i=0;i<42;++i){...}
            else cout<<"Oops!\n";

            A better fix is therefore

            #define for if(0);else for

            (Or use false instead of 0 if you prefer, but there are probably still compilers out there that don't understand bools.)

      • > VC++ and wxWindows both require lots of macros, however.

        Learning MFC is learning Microsoft Macro(TM). It's the most shallow and unambitious class framework I've ever seen, almost to the point of making you wonder why they even bothered with C++ (the templates I guess). Doing anything remotely interesting with the GUI requires falling back to messages and win32 calls. If you look at serious class frameworks (Borland's original OWL, then VCL, Java, .NET), they're so similar in many respects (not by accident either) that learning one makes you comfortable in all the other ones. Leaning MFC OTOH prepares you for not much else. You might as well learn win32 API (well, you have to anyway), since at least you could then create your own framework.
    • Now, on to Qt -- it is a C++ API, it is clean, very portable and very easy to use. It used to cost money for a development license for anything on windows, but it no longer does. See the Windows non-commercial edition

      While it is true that you can get a version of Qt to play with without having to shell out any $$$, there is a catch. If you at any point in time touch your project with any one of their 'no-cost' versions (Non-commercial windows [trolltech.com], Free Edition [trolltech.com], Academic [trolltech.com], etc. ) you can never at any later time [trolltech.com] buy a commercial Qt license and use your project commercially. As Trolltech says:

      A non-commercial setting means that you must not use the package in the course of your employment or whilst engaged in activities that will be compensated. A non-commercial application is an application that cannot be sold, leased, rented or otherwise distributed for recompense.

      So... that first sentence especially might be something to consider. However, if you want to pay for developer seats up front (it's a per-developer licensing scheme, IIRC), there's not a problem. Or if you only ever want to do Open Source work while your're not getting paid to develop. Otherwise, check with a lawyer.

  • Visual Studio... (Score:3, Interesting)

    by ConceptJunkie ( 24823 ) on Monday July 15, 2002 @06:45PM (#3889899) Homepage Journal
    I always felt if someone thought VS's "automatic code generation" is anything other than an annoying waste of time, you've either never used it, or are only a cookbook programmer, and you don't sound like either.

    Starting from scratch, I'd be more inclined to go with wxWindows, although I personally would get up and running much faster with MFC since I have used it for years.

    MFC makes some things easier, but many features carry an obscene amount of bloat, and are often less hassle to write from scratch than deal with Microsoft's way of doing things (I certainly found that to be the case for doing ftp... using MFC required writing more code than doing it from scratch!)

    • > I always felt if someone thought VS's "automatic code generation" is anything
      > other than an annoying waste of time, you've either never used it, or are only a
      > cookbook programmer

      Yeah, automatic code generation is great if you know exactly what you want from the beginning. It'll spit out megabytes of code for you, which even compiles. But start fleshing out this code a bit, and then change your mind about GUI layout or program structure, and you're in one-way-wizard hell. Basically, duplicating the type of code the wizards generate by hand is a massive amount of very tedious work. Rather than delegating (and hiding) tedious setup code to base classes that your code inherits from, the MFC instead relies on wizards to take the tedium away. According to Microsoft, Inheritance + Polymorphism = Wizards (essentially).
      • For about the 1000th time I wish I could mod up a response to one of my comments.

        Automatic code generation just replaces one set of tedium with another... the difference being is once you learn to do it the proper way, it's a lot easier and faster, but if you rely on Microsoft's crappy pseudo-CASE tool, nothing ever gets easier or faster... and in fact, when you want to modify the generated code, you just opened up a big can of trouble.

        • There's one type of code generation that I appreciate, and that's auto-generated event handlers (such as when double-clicking on a button on a form in design mode). But even there I prefer Borland's way of doing things: smart enough to keep element and event handler names synchronized, and to know that when an event handler isn't used anymore to delete it at compile time. VS.NET seems to have better two-way synchronization, but I haven't used it that much yet.
  • by isorox ( 205688 )
    What about java. Cross platform, has AWT and Swing, can do 2D graphics and 3D graphics, even has xml in 1.4

    What will you lose?
    • your soul
    • About 90% of your CPU cycles.
    • three people answered obnoxiously.
    • ---snip
      What will you lose?
      ---snip

      the chess match, unless there are no time limits :)
    • I like Java as a serverside language but as soon as you need to build a gui its useless. Its just too slow - the user experience is similar to a long and painful visit to the dentist. What I would like would be to be able to use Qt or Wxwin with java. Anything like that out there? - I dont like SWT - it may be fast but I dont like the motif downsides when running on linux (irritating to have to use imwheel for mouse wheel support + the poor documentation of SWT).
      - Any suggestions for a way to build a decent GUI with java but without awt/swing?
      PS. If you're thinking of responding to this with one of those "use c - java is crap" responses, dont bother. Just accept that Java is big in some sectors - especially the finance industry. Continuous derading of Java actually hurts the free os'es (as in beer/speech) since this - the support for Java - many times is the main requirement for companies in the finance industry. I've seen FreeBSD/OpenBSD/NetBSD fall on this hurdle so many times - please dont kill Linux this way. Just accept that usefulness of Java varies depending on the specific needs for that user. /m
      • quick google search:
        Java-GTK [informatik.uos.de]
        QTJava [sourceforge.net]
      • I am working in java right now and the speed is not much of an issue. If you take the easy way out when working on the gui you will have a slow program. Forte is writen in java and is a pretty good IDE. The only time I get crazy is when I first run it, switch projects, and Close it. I am betting they have not done much to optimize it.
        For somethings java remains the only answer.
  • Be very wary of starting any application using MFC extensively if you want to port. Because MFC insists on being an "application framework" rather than simply a GUI library, it forces concepts and designs upon you that simply do not translate well to the more usual idioms employed by almost every other GUI library. You could pick most of the others and later move/port to a different one with relative ease, but not to/from any extensive use of MFC.

  • A year ago, we were writing a Checkers program for a Software Engineering class and we considered several toolkits before choosing TkInter + Python. Our requirement stated that we use ncurses + C or Python + *. wxWindows was not really stable then. But it is a lot nicer than Tk.

    Although our requirement was that we only need to get it working on Linux/KDE we were actually running this program on Solaris, Linux and Windows. We did not have to do any additional work (Except for the path seperator) because Python + TkInter ran on all these platforms. It is nice to see that.

    "Write once - Run Anywhere*"
    *Anywhere A, B, C and D work

    On the other hand if I had to distribute this same program to Windows users, I would have to ask them to download and install Python. You
    want to download something named after a snake?

    I do have to ask why one needs a new Chess program when there are multitudes already out there. I do not know of any cross platform ones. So it might be a good thing to make that a requirement - just to differentiate.
    • On the other hand if I had to distribute this same program to Windows users, I would have to ask them to download and install Python. You want to download something named after a snake?

      Not true. The py2exe tool lets you make a bundle of files that include the Python runtime and any extension modules required by your app, and it works very well with wxPython. Your users never need know that they are using Python.

  • by Chuck Messenger ( 320443 ) on Monday July 15, 2002 @09:27PM (#3891104)
    Sounds like you've got a pet project you'd like to develop in order to get your feet wet. Which I heartily recommend. And maybe it will lead to bigger and better things, as time goes on -- maybe even commercial possibilities -- who knows? Or if not, at least it will be fun.

    I've used MFC and wxWindows quite alot. MFC is quite primitive by comparison to wxWindows -- the MFC design is old, and it shows. For example, try making a resizeable dialog in MFC! If you use MFC, you'll be stuck with Windows. Porting the app to wxWindows (or any other GUI framework) will be non-trivial -- you'll be writing from scratch, using your MFC app as a model. Not that that would be all bad -- it's one way to iterate toward a good design. But really, there are faster ways to get to a good design. So, MFC is basically bad, mostly because it ties to you Windows, and secondly because the GUI framework is excessively primitive.

    wxWindows is free. Not GPL -- just plain old free, almost anyway (you'll have to read the fine print -- I think you have to give attribution, etc -- but there is no restriction on selling your creation). That trumps Qt, which is a much GUI framework (on technical merits alone, Qt is hands-down the best C++ framework that I've seen). The problem with Qt is that you must decide up-front whether you're going to create a forever-free (GPL-style) app, or whether you might want to charge for it some day. If you start creating it as a free app, it must forever remain so. What a horrible license. So, for most small-time operators with potential commercial aspirations, that puts Qt firmly out of reach (their developer's license is, or was, around $1000).

    If you go with wxWindows, then by all means you _must_ get wxDesigner - a proprietary GUI builder. I think it's $50-$100 or so (it was $50 when I bought it). What a great program! Once you become fluent with the layout paradigm (which I found to be quite natural), you'll be very productive with it -- much more productive than with MFC.

    Well, I could go on and on.

    A couple of quick thoughts: As someone else pointed out -- you should probably check out wxPython, which makes the wxWindows API available to Python. You'd probably be alot more productive that way -- development with C++ can be very slow (especially on Linux!). If you go the wxPython route, you'll be able to reuse all your GUI design -- wxDesigner can produce both C++ and Python code.

    In short, if you want to have fun, and explore the world of GUI programming, stay away from MFC. It has little to offer. If you want the best, and you're ready to GPL your software, go with Qt, which is the best GUI framework hands-down. If you want to keep your options open, especially in terms of which platforms you want to deliver on, then go with wxWindows (and look into wxPython).
  • Ever notice how programmers write UI libraries, system libraries and libraries to network with the coffee machine for "portability purposes" before getting their hands dirty with the real job at hand? How they avoid writing application code to the last moment, rather writing libraries to make it "possible" to write the application in "zero time"?

    Programmers are easily seduced into creating code to cover all the possibilities of the world. It's more comfortable because;

    a) you avoid doing a lot of the design choices that are involved in actually finishing and shipping applications, and;

    b) you feel like you're doing "good work" and reducing the risks by covering all the possible cases because you don't really know what the design needs

    You're doing good work all the time, you can't possibly fail, right? Wrong! Many projects die well before finishing the library, the engine or the platform that was supposed to be the carrying structure of the application.

    Letting technology desires drive development you can continue your good work for the rest of your natural life without ever having to face the fear of actually completing a project.

    In the real world, porting software is actually often left for the interns and/or outsourced to other companies. Porting solid code after it's done is not the problem that kills projects. Most projects never live long enough.

    Here is a radical idea: design and develop the application first, worry about porting it later. Write solid code for any platform of your choice, it will only take you a fraction of the time to re-do your UI for other platforms you plan to target. If you want to finish, force yourself to only write code that takes the application forward by concrete, measurable steps.

    Work with a product designer who knows what they need to accomplish and how to get there.

    Conquer your fear of making choices and finishing applications, only shipped products contribute to your track record of greatness.

    • Write solid code for any platform of your choice, it will only take you a fraction of the time to re-do your UI for other platforms you plan to target.
      It's important to make wise choices about development platforms, because it takes a significant amount of time to master a development platform. For example, little that you learn in mastering MFC will carry over to a different GUI system (say, Qt, Java, etc.). So, it's wise to think strategically up front. A single person developing alone has only so much bandwidth -- you don't want to squander it uselessly. Once you've mastered your development platform, you can pour your efforts into your unique creation, and be highly effective. But mastering the platform can be very time consuming, and frustrating.

      So, think alot about your development platform, and think strategically.
  • zerg (Score:3, Interesting)

    by Lord Omlette ( 124579 ) on Tuesday July 16, 2002 @12:18AM (#3891793) Homepage
    Make up your mind. If you want Windows only, do it in WTL. There is no part of WTL that is not better than MFC. Microsoft uses it internally.

    If you're used to MFC, then you should check out .NET... C# & Windows Forms are a godsend compared to MFC's nonstop bullshit.

    If you're going to use wxWindows, keep in mind that it works very well with Python, so you may want to go that route rather than play the "VC++ does it this way and GCC does it this way and everyone's telling me to rtfm and I hate my life" game.

    There are plenty of other people here who are qualified to tell you about tk or qt or mozilla or other cross platform toolkits.

    For God's sake, don't do MFC. Not when there are SO many other options and each one brings more benefits to the table. Nothing you could have done, including raping prematurely born babies, could possibly deserve having to write an app in MFC. The world has come so far in the last 10+ years... Join us!
  • There is a lesser-known C++ GUI framework out there called the Windows Template Library that is based heavily on ATL. It is released on the Microsoft Platform SDK, but is officially unsupported. Search for it on google. It is what MFC should have been.

    BTW- my 2 cents on the whole QT/wxWindows thing is don't bother unless you really need cross-platform. Knowing the Win32 API, which is very important when using MFC or WTL, is invaluable being that 95% of the machines on this planet run an operating system that uses Win32.

  • Of course, that requires moving to Object Pascal (for now). But if you're using the CLX, you're in for the easiest porting job of your life. It also requires shelling out some money for Delphi Professional on Windows, since the Personal Edition (free) doesn't support CLX development. But since you're considering the MFC anyway, I assume you're not afraid to pay for your tools.

    Later this summer, Kylix 3 will support cross-platform C++ development via C++ Builder on Windows. But even learning Object Pascal is not that daunting--I've seen many C++ programmers become proficient in a matter of weeks.
  • by yancey ( 136972 ) on Tuesday July 16, 2002 @02:06AM (#3892133)

    Why limit yourself to two platforms? Write the back-end of your chess program so that it communicates with a front-end client by passing certain messages (perhaps in XML format). You might even make the message specifications public so that others could write clients for your chess engine.

    The back-end only needs to concern itself with a virtualized game, not worrying about the details of how to go about putting a picture on the screen or interacting with the user.

    This also allows the engine to apply 99.99% of its compute cycles toward planning its next move. It won't waste any time on mouse movement or other windowing events. Only when it receives a message will it be interrupted from "thinking."

    By separating the core part from the presentation part, it allows you to use your chess engine with multiple front-ends. You might write one front end for Windows, one for Linux, one for Mac, and another with a web interface. The front end only has to know how to interact with the user and send and receive messages to the chess engine.

    You could even expand the engine to handle multiple games at once. That extra feature should be easy to implement if the back-end and front-end are separated. It just means keeping track of more than one game and communicating with more than one client. You could be playing against it on your Windows box while someone else is playing over the web. Or perhaps you could set it up so that another human could play instead of the computer.

    If you write your back-end using reasonable standards, then you should be able to easily port your chess engine to another system since you don't have to worry about different windowing systems.

    Just a thought .. or two.

    • I agree a whole lot with what you said, but I think you missed the origional question a little. There is still the problem of Cross-Platform development even with a good program design. Clearly it is good design to make a fully encapsulated back-end to a program, but the question still remains, what librarys are going to be used to make it. MFC and wxWindows are more then just a GUI (which very well could be a bad design). In order to make the back-end easy to program and cross platform, people look to tools like wx to simplify things. Unfortunaly in my experience wx simply wasn't stable enought to work and on top of that it didn't look right.

      My advice, write the back end in a more portable langauge then c/c++ or use standard (stable) librarys that work and enought platforms. Write the back-end in Scheme, C#, or even (heaven forbid) Java. Then the backend will run on any system and the only code that can really reliably be cross platform is.

      In my opinion, the UI of a program ends up better if the details are worked out for each specific platform. Lets face it users of different systems expect different behavior, wx cannot encode that, so you end up with junk on both platforms.
    • Why limit yourself to two platforms? Write the back-end of your chess program so that it communicates with a front-end client by passing certain messages (perhaps in XML format). You might even make the message specifications public so that others could write clients for your chess engine.

      There's already a very good solution for doing this: XWT [xwt.org].

      XWT allows you to write the interface in XML and JavaScript, and the XWT viewer then downloads and displays that interface. When computation needs to be done, the XWT interface makes an XML-RPC call to a server.

      In fact, there's even a demo chess program on the XWT site, now that I think about it. :)

      --Bruce

    • Oh, wait a minute... Isn't that just what GNUChess does? :-)
  • Writing with a cross-platform GUI is a good idea from the coding standpoint, because it allows you to write the software only once and it will work the same everywhere. But working the same everywhere isn't always what you want...

    Consider that when you write a GUI any given platform, you want it to "feel" like it belongs there. Every OS has its own defining characteristics and expected behaviors, and those are an important aspect from the user's standpoint and greatly help the overall consistency of the user's desktop.

    For example in your cross-platform GUI, do you use standard Windows key bindings? Mac key bindings? Emacs key bindings? It doesn't matter what you choose, it will be foreign to some percentage of users because it doesn't match their expectations (the OS defaults). The same thing applies to a number of other behaviors (like menu organization, right-mouse-button actions, etc.).

    So even if your cross-platform GUI toolkit renders using the native widgets of the platform, it's still not going to "feel" the same as a UI designed specifically for that platform. You may be excited because your app works the same on all platforms, but users won't be excited when it doesn't work quite right on *their* platform.
  • I have job experience using MFC. I will not describe it in detail. I will just sum it up and say that it is truly the most un-productive horrid framework I have ever used. Also, Microsoft's new WTL is no better. In short, the class wizard helps you half the time (if it aint broke when you modify some code) and the message maps are a nightmare. This automatic code generation you speak of is not all that glamorous. All that code generation gives you is a cryptic program that comiles to be Notepad. You're on your own after that. The Document/View architecuture is bad and seems to be a perversion of the Model/View/Controller architecture. Doc/View can be good for small scale, but will break down and give you nightmares on large scale projects.

    I started using two pieces of technology, Delphi and Qt, and I have never looked back. At work I use Visual C++ to program DLL's (using STL and no MFC classes at all) and I use Delphi to front end, as well as write the back end stuff too! If I had my choice I would ditch Visual C++ altogether, I think it gives C++ a bad name. I wish most companies would not buy Microsoft Visual C++.

    I have never used wxWindows, but I can assume that it is better than MFC. As for cross platform needs MFC still is the worst choice. At one of my previous jobs they had a person that programmed a project for both Windows and Mac OS. There is MFC for the Mac platform. However, this programmer was frustrated by the details because what worked on MFC for Windows worked differently (or not at all) for MFC on Mac OS.

    For cross platform I would say check out Qt [trolltech.com] and check out Delphi / C++ Builder [borland.com]. Qt was one of the best C++ libraries I have ever used and I wish I could use it on Windows at work. Delphi kicks ass in all aspects. IMHO Delphi is the only technology I know that can truly claim the title of being a RAD tool. Kylix is Delphi for Linux. C++ Builder should be ported to Linux by Borland soon enough.
  • I used wxWindows for a cross platform project simply because cross platform was a requirement of the project. It ended up with different bugs and querks on each platform that I used. I had to toss multithreading because it completely failed on one platform. It was not a problem to program in wx as it is clearly a copy of the MFC's design. Which makes you ask one question, why would anyone copy the MFC? It makes it easy to program in for an MFC programmer, but really it just gives a delusional sense to a windows programmer that they can do cross platform programming without any work.

    Bottomline, MFC can work in Windows without bugs. Use something other the wx if you want stable cross platform support.
  • by spitzak ( 4019 )
    FLTK is portable between Linux (and other Unix/X systems) and Windows 95/NT/XP, and is also being used on handheld Linux systems, and there is a Mac port. The license is LGPL with an exception added so you can statically link a program with it and not release the source, and the license is the same on all platforms. It's my project, too, so I'm advertising it, I guess.
    • FLTK is an excellent toolkit. I have used many over the years (Gtk, Qt, TK, and Win32 all quite extensively), and FLTK is my current favorite. It is dead simple (in a good way), clean, fast, and doesn't constrain your code as much as other toolkits do...

      BTW Am I correct in assuming that the upcoming public release of Nuke is going to be FLTK-based?
  • It's much simpler to program than ANY other toolkit (yes, Qt included); It doesn't cover as much but it tends to be sufficient for 99% of the programs. It works on Win32, X, MacOS and easy to port to other systems. Did I mention it's open source? It also has an extremely well written manual, and tens of concise, useful example programs.

    And ... there's an included checkers program with full source that you can consult, as the GUI for chess and checkers is similar. Go on, download, compile and check it out; then look at the "possible moves" and "rank moves" display, and tell me if you can do it elegantly with that simplicity and without flickering in any other toolkit.

    FLTK website [fltk.org]
  • During my internship, my task was to compare all available low-cost (preferably but not necessarily Free Software) GUI toolkits. The main criteria was availability for and portability between both Linux and win32 platforms. I started with a large list (including some quite obscure toolkits), and after scratching them while comparing to certain criteria, I finally ended up with Qt and wxWindows as the two finalists.

    The reason why FOX was not chosen was due to its lack of Unicode support.

    Gtk+ would have been very nice, if it wasn't for the fact that the Windows port is quite neglected and only seems to be maintained sporadically, apparently solely for the purpose of porting Gimp to win32.

    At first, wxWindows actually looked better than Qt, because it didn't need a preprocessor, didn't require license fees for commercial development, and provided a native look&feel on each supported OS. Furthermore, the project was about 10 years old, and therefore we expected the sourcecode to be quite mature. Finally, the vast selection of bindings for numerous programming and scripting languages was a major plus.

    If I remember correctly, another really neat feature of wxWindows was the apparent possibility of (cross?)compiling wxWindows-based win32 binaries on Linux (and vice versa?). Someone here please correct me if that's not the case.

    Unfortunately, as soon as we started playing with wxWindows, we noticed some flaws: first of all, the documentation currently available for wxWindows is limited and incomplete.

    Second, part of the API turned out to be OS-dependent, and no warnings or errors whatsoever were issued when compiling code, which contained win32-only wxWindows functions. Under Linux, binaries would just generate a run-time segmentation fault. When the win32-specific functionality was removed and the code recompiled, the remaining product would run without problems. This was a major disappointment for us, since we were definately expecting more on this field from a project that was over 10 years old!

    This serious lack of actual platform-independence, coupled with the fact that the documentation didn't specifically document whether if a certain function was available on every platform or not, would have made cross-platform development with wxWindows really troublesome. Therefore, we ultimately decided to go for Qt instead.

    Let's face it: when it comes to a clear API, platform independence/portability (between X11, win32, and now also the Mac), stability, but especially documentation, Qt is currently unmatched. Given the quality of Qt, we decided that the licensing fees (which really aren't that high compared to some other GUI development products) would definately be worth it, especially considering the company support we would be receiving, as well as community support.

    Another aspect which made Qt more attractive is of course the quality of the available development tools, specifically the excellent Qt Designer.

    So to sum it all up: wxWindows is a promising toolkit, but still needs serious work in the following areas:

    *) complete, accurate and up-to-date documentation (complete documentation of the entire API, including any platform limitations per function)

    *) complete implementation of the entire API across all supported platforms (of course, platform-specific extentions should be allowed, but a definition must first be made of a so-called largest common denominator API for all platforms)

    *) high quality development tools. I know many of you prefer not to use a GUI builder, but many other developers actually need it, or at least find it very convenient.

    During my internship, I found mainly two GUI design tools for wxWindows, one free and one commercial/shareware, but none of them were even close in quality and ease of use to Qt Designer.

    Even better would be a fully-featured develompent suite, integrating an editor, debugger and GUI builder in one. All (L)GPL Of course. :) Something like Delphi/C++builder, but then based on the wxWindows toolkit. That would definately be the ultimate development environment.
  • Use what you think is the best tool for the job at hand.

    One of the worst things you can do is to waste weeks on cross-platform compatiblity when your project doesn't require cross-platform compatability. There are too many programmers who do this. You wind up with GREAT code that works on several platforms, but the company lays off half the staff due to the loss from delays.

    When I want to write a small simple program, I use MFC every time. Why? Because I need it done yesterday and I need it to work.
  • Drop MFC and learn wxWindows immediately!
    You won't regret it.

    Chris

He has not acquired a fortune; the fortune has acquired him. -- Bion

Working...