The Qt 4 Resource Center 45
e8johan writes "The Qt 4 Resource Center features articles regarding the next generation of Qt. Being the basis for the next generation of KDE and being available under GPL for all major platforms Qt 4 will make it even easier to develop powerful cross-platform applications."
Price (Score:3, Interesting)
Most shops and individuals can't afford that stuff for commercial development. Every other development platform is hella cheaper than Qt (MSDN, Apple, etc.).
Trolltech needs to take a clue from some failed projects that made it too hard for the system to be adopted by the masses because they were listening to the marketing department.
Let the free market work. (Score:5, Insightful)
Now, if YOU can't afford it, then try some of the other open source alternatives. There is always wxWindows, FOX, FLTK, GTK+, the multiple GTK+ C++ wrappers, and so on.
Re:Let the free market work. (Score:2, Interesting)
I know about fixing the code since it's free, but frankly, the code is a mess.
Qt's prices aren't too high at all, so I think we're seeing the free market magic that you're referring to. The price is going up, because Qt is actually
Re:Let the free market work. (Score:2)
As for Qt, we'll see. I think the only
Re:Let the free market work. (Score:1, Insightful)
But you're not comparing like for like there.
The buy-in price for Windows (presumably we're talking about a site license for Visual Studio Enterprise here) may well be cheaper than Qt. But it only gets you Windows development.
The buy-in price for OS X (= the price of the Macs to do your development on, presumably, since XCode is free) may well be cheaper than Qt. But it only gets you OS X development.
Q
free for open source (Score:3, Funny)
http://www.trolltech.com/company/model.html [trolltech.com]
With the exception of java most libraries don't seem to be as complete a cross platform solution. There are other solutions, they're just trying to make a quality cross platform solution, there are alternatives, but you have to collect the parts and put them together yourself, and test etc...
There is GTK which is cross platform for windowing and widgets. (GNOME is built on this)
If you don't like it don't buy it, but
Re:Price (Score:2, Insightful)
As someone else mentioned, your only other real choice for non-opensource cross-platform developement is Java and wxWindows.
Time will tell if the price is too h
Re:Price (Score:1)
Cocoa [gnustep.org]
Re:Price (Score:2)
Re:Price (Score:2)
Commercial? You must mean closed-sourced/proprietary.
Re:Price (Score:1)
Nothing wrong with being closed source. The open source model doesn't fit every business situation. To be honest, I think that the open-source concept has turned being a programmer into being a "superstar".. What I mean is that there are lots of good applications that people could make a living at if they maintained closed source. Those same applications would not bring in enough service revenue to allow the developer a decent living. The few products that DO bring in this much money are the "superstars
Re:Price (Score:2, Insightful)
Maybe its that expensive because its really that good!
Anyhow, there are lots of low cost development tools for developing the standard internal corporate software. People that buy Qt are making commercial apps. If $3000 is going to break you, then perhaps you need to reconsider your business strategy.
Re:Price (Score:2)
QT Enterprise is $ 2880 for a single seat.
Borland JBuilder is 3500 a seat.
Visual Studio Enterprise Architect Edition is $2400
You do not want to see how much money you would spend on Solidworks or a full seat of AutoDesk's stuff.
Yes QT is priced out of the range of hobbyists but not for most shops.
Re:Price (Score:2)
If QT is not worth it to you then don't buy it. Or do OSS development with it. It is free if you GPL your code. You only have to pay to charge.
Re:Price (Score:2)
Re:Price (Score:2)
So if the cost of porting the application and then maintaining separate source trees is greater than the cost of the Qt licence, buying Qt makes sense. Given that the cost of Qt is less than a month's salary per developer, it doesn't seem so bad to me.
GPL for other UNIX's? I.e. Solaris, HP-UX, *BSD (Score:1)
Re:GPL for other UNIX's? I.e. Solaris, HP-UX, *BSD (Score:2)
Re:GPL for other UNIX's? I.e. Solaris, HP-UX, *BSD (Score:1)
Thanks. I misunderstood what they meant by Linux/X11.
Qt4 and extra compile phase? (Score:4, Interesting)
I'm all for meta-language programming. I love it. But not at the expense of an extra compile phase which complicates my makefiles and can introduce errors that were introduced when the generated code was inserted. I'm happy that Qt4 will finish opening up as a GPL'd library (that removes one of my biggest complaints about Qt), but are my technical concerns also going to be invalidated?
To me, this extra phase and the awkwardness of signals and slots syntax is a real weakness when compared to frameworks like Cocoa that don't need to resort to it. Now, I understand dynamic dispatch is hard in C++, but if the Boost people can get HOF-aware template-based lambdas, I'm certain that TrollTech could do better.
Re:Qt4 and extra compile phase? (Score:2)
No, using macros and moc *is* the elegant way.
> preferably one that does not require the use of an extra compile phase
moc is a preprocessor, no compiler.
Re:Qt4 and extra compile phase? (Score:3, Insightful)
Source processing is part of the compiler run. Preprocessing a phase of compilation. Therefore, moc another compile phase. Do not confuse this with compile phase within the cc executable itself, that's something different and lower level.
No. I'm sorry, it is not. C++ is a powerful language, and while it may not be my favorite, I cannot deny that people have done amazing things with it. Check out some of the more i
Re:Qt4 and extra compile phase? (Score:2)
I don't see how. Handling moc in the Makefiles is easy and telling that moc generates broken code is FUD, it for sure is one of the most bug-free parts of Qt. And btw, moc doesn't only add signal/slots to Qt.
Re:Qt4 and extra compile phase? (Score:2)
Oh! No no! moc doesn't generate broken code. I was obviously unclear (that sentance above was supposed to be edited, but I hit Ok accidentally) and I apologize. The problem is it generates a lot of code, and it does so in nearly every Qt file. If you have an error in your code, the generated code can really confuse matters. Also, if you end up w
Re:Qt4 and extra compile phase? (Score:2)
Re:Qt4 and extra compile phase? (Score:1)
I agree with you, I wish they would find a better way. Or, they could at least be honest and admit they're crafting a new C++ compatible language.
Re:Qt4 and extra compile phase? (Score:2)
Sure, some of the clever and typesafe and modern signal-slot implementations work on GCC 3 and up, and on whatever MS has these days. But that's not the entire world of c++ compilers.
GCC2.95 and up should be okay (Score:2)
It's not like we haven't had years to update these sorts of things. With TR1 incorporating some Boost features into the standard, and TR1 being the future of C++ in many eyes, it's time to stop coddling.
Since Qt is primarily a Linux, MacOSX and Windows phenomenon, I seriously doubt that TrollTech would lose sales from such a move.
Re:GCC2.95 and up should be okay (Score:2)
Now, one thing I can't help but wonder -- since I haven't done any Qt programming in 2 years ( moved to Cocoa/OSX, never looked back ) -- is wether the moc is doing things that simply aren't available in a standards based manner. For example, I recall writing a test app that enumerated the signals and slots on an anonymous QObject. I don't think you can do that at *all* with plain old ( even modern ) C++.
But, I c
Re:Qt4 and extra compile phase? (Score:1, Interesting)
are they going to find a more elegant and in-language way to handle signals and slots
Doubtful, and definitely not for 4.0. C++ just isn't equipped to deal with this model of programming, you end up with massive amounts of inheritance or similar messes. "More elegant" and "in-language way" are at odds with each other for C++ GUI development. Trolltech can't get around that short of taking their modifications to C++ to ISO and getting them approved as proper C++.
I'm happy that Qt4 will finish openin
Re:Qt4 and extra compile phase? (Score:2)
I am not a template meta-programming guru. I do not have better suggestions from within C++ off the top of my head. Give me awhile to think about it. :)
But, I am baffled why TrollTech stopped at signals and slots instead of allowing real smalltalk style dynamic message sends. If you're going to introduce code generation to a framework, you need to get as much bang with the least amount of intrusion as possible.
They could have removed these awkward
Re:Qt4 and extra compile phase? (Score:2)
Re:Qt4 and extra compile phase? (Score:2)
The fact that you can suggests to me that trolltech wouldn't require moc when using c++ unless they had to.
I wish (Score:2)
But, when I tried it, PyQt had some flaws. It was awkward when you wanted to make new widgets, in particular. And, maybe this is fixed, but I had a heck of a time reusing some components that my coworkers wrote.
Python is a great language with a lot of potential, but I couldn't help but feel that Qt isn't very Python-ish, and it showed in the experience. I'll check into it again.
Does this mean KDE will run natively on Windows? (Score:2)
Re:Does this mean KDE will run natively on Windows (Score:2)
Re:Does this mean KDE will run natively on Windows (Score:2)
Probably not without a lot of tweaking and extra work. Windows' desktop environment is fundamentally different from X, so I don't think that a full port of KDE is a reasonable expectation. There are, however, some nice Windows clones of *nix shells (e.g., http://www.bb4win.org/ [bb4win.org]), and there is of course always Litestep [beyondconvention.net].
Re:Does this mean KDE will run natively on Windows (Score:2)
BTW, what closed-source media playback software do you use? I use mplayer (under linux, admittedly), and I find it much better than anything I have found under windows (without looking too hard).
Re:Does this mean KDE will run natively on Windows (Score:2)
Then of course there is the Windows Media Center, for when I'm using my remote and my Destination monitor... but I'd like to switch it all to MythTV on that and just get a mac mini for my personal desktop use.