Qt is a comprehensive, object-oriented development framework that enables development of high-performance, cross-platform rich-client and server-side applications. When you implement a program with Qt, you can run it on the X Window System (Unix/X11), Apple Mac OS X, and Microsoft Windows NT/9x/2000/XP by simply compiling the source code for the platform you want. Qt is the basis for the KDE desktop environment, and is also used in numerous commercial applications such as Google Earth, Skype for Linux, and Adobe Photoshop Elements.
| Tags | Desktop Environment Software Development Libraries Application Frameworks Widget Sets |
|---|---|
| Licenses | GPL QPL LGPL |
| Operating Systems | Windows Windows Windows Windows POSIX |
| Implementation | C++ |
Recent releases


Changes: Documentation and examples have been improved. The Graphics View Framework has been optimized in several areas. Many minor bugfixes have been made.


Changes: The runtime performance of applications was improved. A new pluggable graphics system was introduced. QtBenchLib, a new performance benchmarking library, was added. The latest version of WebKit is provided. Proxy support was improved. A new debugger for the QtScript ECMA scripting engine was added. XSLT support for transformation of XML content into XML, HTML, or other text was added. Support for 64-bit development on Apple's Cocoa Framework was added. LGPL version 2.1 was added to the available licenses.


Changes: This release serves only to rebrand Qt. The copyright has been transferred to Nokia Corporation. The icons and other graphics have been updated to reflect the rebranding. No bug fixes or optimizations have been made.


Changes: The WebKit browser engine was integrated. The KDE Phonon multimedia framework is now used. The QtConcurrent framework for writing multi-threaded programs without using low-level threading primitives was added. The XQuery XML standard is now supported. Many other enhancements were made, and many bugs were fixed.


Changes: Major new additions found in this release include enhanced support for native Windows Vista applications; QtScript: an integrated ECMA standard scripting engine; support for Secure Socket Layer (SSL) communications; faster, higher quality 3D graphics rendering with an improved OpenGL engine; a more flexible Main Window architecture; the ability to both render and generate SVG vector graphics images; and improvements to Qtopia Core, including a new font system and enhanced support for OpenGL ES.
A game where you must jump over gaps and use various floor types to succeed.
A project to increase the surveillance of Swedish parliament members.
- All comments
Recent commentsRe: QT/Windows/Free
Great News!
http://www.trolltech.com/newsroom/announcements/00000192.html
Re: QT/Windows/Free
> When that is available, call me.
This has been announced today:
==
From: Trolltech Information
To: qt-interest@trolltech.com
Date: 2005-02-07 14:23:52
Dear Qt User/Qt Customer:
Trolltech is pleased to announce that we intend to
make Qt 4 for Windows
available under our successful dual licensing
business model. This means that
Open Source projects under the GNU GPL license
will be able to target all
major operating systems using Qt 4. We plan to
release the Windows Open Source
version of Qt at the same time as Qt 4.
==
So now everyone can finally stop using that inferior
toolkit with 3 letters ;)
Re: QT/Windows/Free
> When that is available, call me.
It already is: http://kde-cygwin.sourceforge.net/qt3-win32/
QT/Windows/Free
When that is available, call me.
patch for qt-3.1.2
To fix a problem that causes dialogs automatically close when they're called twice or more:
In "/usr/local/src/qt-x11-free-3.1.2/src/dialogs/qdialog.cpp":
line 395: void QDialog::done( int r )
line 396: {
line 397: hide();
line 398: serResult ( r );
line 399: close(); // JUST *REMOVE* THIS LINE
line 400: }