Share on Facebook
Qt
Qt-logo.svg
Qt Designer 4 4 3.png
The Qt designer used for GUI designing
Original author(s) Haavard Nord and Eirik Chambe-Eng[1]
Developer(s) Qt Project, Digia
Initial release May 1995; 18 years ago (1995-05)[1]
Stable release 5.0.2[2] / 10 April 2013; 38 days ago (2013-04-10)
Preview release 5.1 Beta[3] / 14 May 2013; 4 days ago (2013-05-14)
Development status Active
Written in C++
Operating system Linux (Embedded, Wayland, X11), OS X, Windows,
Platform Cross-platform
Type Application framework
License GNU Lesser General Public License v2.1 (Qt open-source version)[4]
Qt Commercial License (Qt Commercial version)[5]
Website qt-project.org

Qt (/ˈkjuːt/ "cute", or unofficially as Q-T cue-tee[6][7]) is a cross-platform application framework that is widely used for developing application software with a graphical user interface (GUI) (in which cases Qt is classified as a widget toolkit), and also used for developing non-GUI programs such as command-line tools and consoles for servers.

Qt uses standard C++ but makes extensive use of a special code generator (called the Meta Object Compiler, or moc) together with several macros to enrich the language. Qt can also be used in several other programming languages via language bindings. It runs on the major desktop platforms and some of the mobile platforms. It has extensive internationalization support. Non-GUI features include SQL database access, XML parsing, thread management, network support, and a unified cross-platform application programming interface (API) for file handling.

Qt is available under a commercial license, GPL v3 and LGPL v2. All editions support many compilers, including the GCC C++ compiler and the Visual Studio suite.

Qt is developed by Digia, who owns the Qt technology and trademark, and the Qt Project under open governance, involving individual developers and firms working to advance Qt. Before the launch of the Qt Project, it was produced by Nokia's Qt Development Frameworks division, which came into existence after Nokia's acquisition of the Norwegian company Trolltech, the original producer of Qt.[8] In February 2011 Nokia announced its decision to drop Symbian technologies and base their future smartphones on Microsoft platform instead. One month later Nokia announced the sale of Qt's commercial licensing and professional services to Digia, with the immediate goal of bringing Qt support to Android, iOS and Windows 8 platforms, and to continue focusing on desktop and embedded development, although Nokia was to remain the main development force behind the framework at that time.[9] On 9 May, it was announced on the Qt Labs website that the groundwork was being laid for the next major version of Qt, with the expectation that Qt 5 would be released in August 2012.[10][11]

Contents

Platforms [edit]

Qt works on the following platforms:

External ports [edit]

Since Nokia opened the Qt source code to the community on Gitorious various ports have been appearing. Here are some of them:

Deprecated ports [edit]

Editions [edit]

There are three editions of Qt available on each of these platforms, namely:

  • GUI Framework – commercial entry level GUI edition, stripped of network and database support (formerly named "Desktop Light")
  • Full Framework – complete commercial edition
  • Open Source – complete Open Source edition

Qt is available under the following copyright licenses:

Releases [edit]

Qt 4 [edit]

Trolltech released Qt 4.0 on 28 June 2005 and introduced five new technologies in the framework:

  • Tulip A set of template container classes.
  • Interview A model–view–controller architecture for item views.
  • Arthur A 2D painting framework.
  • Scribe A Unicode text renderer with a public API for performing low-level text layout.
  • MainWindow A modern action-based main window, toolbar, menu, and docking architecture.
Version Release date New features
4.1 20 December 2005[43] Introduced integrated SVG Tiny support, a PDF backend to Qt's printing system, and a few other features.
4.2 4 October 2006[44] Introduced Windows Vista support, introduced native CSS support for widget styling, as well as the QGraphicsView framework for efficient rendering of thousands of 2D objects onscreen, to replace Qt 3.x's QCanvas class.
4.3 30 May 2007[45] Improved Windows Vista support, improved OpenGL engine, SVG file generation, added QtScript (ECMAScript scripting engine based on QSA).[46]
4.4 6 May 2008[47] Features included are improved multimedia support using Phonon, enhanced XML support, a concurrency framework to ease developing multi-threaded applications, an IPC framework with a focus on shared memory, and WebKit integration.
4.5 3 March 2009[48] Major included features are QtCreator, improved graphical engine, improved integration with WebKit, OpenDocument Format write support and new licensing options, as well as OS X Cocoa framework support.
4.6 1 December 2009[49] New APIs are Framework Animation, Gestures, Multi-touch. Now supports (as Tier 1) Symbian and (as Tier 2) Windows 7 and Mac OS X 10.6, support extended for some Unix systems. Improvements have also been made to overall performance.
4.7 21 September 2010[50] QML and Qt Quick.
4.8 15 December 2011[51] Qt Platform Abstraction, Threaded OpenGL support, Multithreaded HTTP, and optimized file system access.

Qt 5 [edit]

Qt 5 was originally expected to be released in June 2012[52] but the release was delayed several times.[53] It was officially released on 19 December 2012. This new version marks a major change in the platform, with hardware-accelerated graphics, QML and JavaScript playing a major role. The traditional C++-only QWidgets continue to be supported, but do not benefit from the performance improvements available through the new architecture.[54] Qt5 brings significant improvements to the speed and ease of developing user interfaces.[10]

Framework development of Qt 5 moved to open governance, taking place at qt-project.org. It is now possible for developers outside Nokia/Digia to submit patches and have them reviewed.[55]

Version Release date New features
5.0 19 December 2012[56] Major overhaul of the Qt 4.x series.
Complete Wayland support, including the client-side decorations.
5.1 June 2013 (ETA) New modules and experimental Android and iOS support.[57]

Design [edit]

The innovation of Qt when it was first released relied on a few key concepts.

Modules [edit]

Starting with Qt 4.0 the framework was split into individual modules.[58][59] With Qt 5.0 the architecture was modularized even further.[60][61] Qt is now split into essential and add-on modules.[62]

Tools [edit]

  • Qt Creator, a cross-platform IDE for C++ and QML
  • qmake, a tool that automates the generation of Makefiles for development project across different platforms

Use of native UI-rendering APIs [edit]

Qt used to emulate the native look of its intended platforms, which occasionally led to slight discrepancies where that emulation was imperfect. Recent versions of Qt use the native style APIs of the different platforms to query metrics and draw most controls, and so do not suffer from such issues as much.[63]

On some platforms (such as MeeGo and KDE) Qt is the native API.

Metaobject compiler [edit]

The metaobject compiler, termed moc, is a tool that is run on the sources of a Qt program. It interprets certain macros from the C++ code as annotations, and uses them to generate added C++ code with Meta Information about the classes used in the program. This meta information is used by Qt to provide programming features not available natively in C++: the signal/slot system, introspection and asynchronous function calls.

QtScript ECMAScript interpreter [edit]

QtScript is a cross-platform toolkit that allows developers to make their Qt/C++ applications scriptable using an interpreted scripting language: Qt Script (based on ECMAScript/JavaScript).

From Qt 4.3.0 onward, the scripting API,[64] which is based on QSA,[65] is integrated as a core part of Qt. With Qt 5.0 it became an add-on module for Qt 4 compatibility.[66]

Programming language bindings [edit]

Qt has a range of bindings for various languages[67] that implement some or all of its feature set.

History [edit]

Haavard Nord and Eirik Chambe-Eng (the original developers of Qt and the CEO and President, respectively, of Trolltech) began development of "Qt" in 1991, three years before the company was incorporated as Quasar Technologies, then changed the name to Troll Tech and then to Trolltech.[1]

The toolkit was called Qt because the letter Q looked appealing in Haavard's Emacs font, and "t" was inspired by Xt, the X toolkit.[1]

The first two versions of Qt had only two flavors: Qt/X11 for Unix and Qt/Windows for Windows. The Windows platform was only available under a proprietary license, which meant free/open source applications written in Qt for X11 could not be ported to Windows without purchasing the proprietary edition.

At the end of 2001, Trolltech released Qt 3.0, which added support for Mac OS X. The Mac OS X support was available only in the proprietary license until June 2003, when Trolltech released Qt 3.2 with Mac OS X support available under the GPL.

In June 2005, Trolltech released Qt 4.0.[68]

Nokia acquired Trolltech ASA on 17 June 2008 and changed the name first to Qt Software, then to Qt Development Frameworks. Since then it focused on Qt development to turn it into the main development platform for its devices, including a port to the Symbian S60 platform. Version 1.0 of the Nokia Qt SDK was released on 23 June 2010.[69] The source code was made available over Gitorious, a community oriented git source code repository, to gather an even broader community that is not only using Qt but also helping to improve it.

Licensing [edit]

At all times, Qt was available under a commercial license that allows developing proprietary applications with no restrictions on licensing. In addition, Qt has been gradually made available under several increasingly free licenses.

Until version 1.45, source code for Qt was released under the FreeQt license. This was viewed as not compliant with the open source principle by the Open Source Initiative and the free software definition by Free Software Foundation because, while the source was available, it did not allow the redistribution of modified versions.

Controversy erupted around 1998 when it became clear that KDE's KDE Software Compilation was going to become one of the leading desktop environments for Linux. As it was based on Qt, many people in the free software movement worried that an essential piece of one of their major operating systems would be proprietary.

With the release of version 2.0 of the toolkit, the license was changed to the Q Public License (QPL), a free software license but one regarded by the Free Software Foundation as incompatible with the GPL. Compromises were sought between KDE and Trolltech whereby Qt would not be able to fall under a more restrictive license than the QPL, even if Trolltech was bought out or went bankrupt. This led to the creation of the KDE Free Qt foundation, which guarantees that Qt would fall under a BSD-style license should no free/open source version of Qt be released during 12 months.

In 2000, Qt 2.2 was released under the GPL v2,[70] ending all controversy regarding GPL compatibility.

In 2002, members of the KDE on Cygwin project began porting the GPL licensed Qt/X11 code base to Windows.[71] This was in response to Trolltech's refusal to license Qt/Windows under the GPL on the grounds that Windows was not a free/open source software platform.[72][73] The project achieved reasonable success although it never reached production quality.

This was resolved when Trolltech released Qt/Windows 4 under the GPL in June 2005. Qt 4 now supports the same set of platforms in the free software/open source editions as in the proprietary edition, so it is now possible to create GPL-licensed free/open source applications using Qt on all supported platforms. The GPL v3 with special exception[74] was later added as an added licensing option. The GPL exception allows the final application to be licensed under various GPL-incompatible free software/open source licenses such as the Mozilla Public License 1.1.

On 14 January 2009, Qt version 4.5 added another option, the LGPL,[75] which should make Qt even more attractive for non-GPL open source projects and for closed applications.[76]

In March 2011, Nokia sold the commercial licensing part of Qt to Digia creating Qt Commercial.

Uses [edit]

Qt is most notably used in Autodesk Maya,[77][78] BlackBerry,[79] Dassault DraftSight,[80] Mathematica,[81] European Space Agency,[82] DreamWorks,[83][84] Google,[85] HP,[86] KDE,[87] Lucasfilm,[88][89] The Foundry's Nuke, [90] Panasonic,[91] Philips,[92] Samsung,[93] Siemens,[94] Skype,[95] Ubuntu,[96] VirtualBox, VLC media player,[97] Volvo,[98] and Walt Disney Animation Studios.[99]

See also [edit]

External links [edit]

References [edit]

Bibliography [edit]

Notes [edit]

  1. ^ a b c d "A Brief History of Qt". Retrieved 20 December 2007. 
  2. ^ "Qt 5.0.2 Released". 10 April 2013. Retrieved 11 April 2013. 
  3. ^ http://blog.qt.digia.com/blog/2013/05/14/qt-5-1-beta-released/
  4. ^ a b "Qt GNU LGPL v. 2.1 Version". 
  5. ^ a b "Qt Commercial version under the Qt Commercial License". 
  6. ^ "That Smartphone Is So Qt". Ashlee Vance. 16 February 2010. Retrieved 19 February 2010. 
  7. ^ "The Qt 4 Dance" (video). Retrieved 19 February 2010. 
  8. ^ Qt Software – Nokia acquired Trolltech[dead link]
  9. ^ Nystrom, Sebastian (7 March 2011). "Nokia and Digia working together to grow the Qt community". Retrieved 8 March 2011. 
  10. ^ a b Knoll, Lars (9 May 2011). "Thoughts about Qt 5". Retrieved 9 May 2011. 
  11. ^ "Final Qt 5.0 release delayed until August". H-online.com. 2012-05-01. Retrieved 2013-03-19. 
  12. ^ "Qt Wiki – Support for Windows". Developer.qt.nokia.com. 11 August 2011. Retrieved 13 November 2011. 
  13. ^ "Qt Wiki – Support for Mac OS X". Developer.qt.nokia.com. 14 August 2011. Retrieved 13 November 2011. 
  14. ^ "Qt Wiki – Support for Linux/X11". Developer.qt.nokia.com. 12 August 2011. Retrieved 13 November 2011. 
  15. ^ "Qt Wiki – Support for Embedded Linux". Developer.qt.nokia.com. 12 August 2011. Retrieved 13 November 2011. 
  16. ^ "Getting started with Lighthouse". Retrieved 25 November 2011. 
  17. ^ Kristian Høgsberg (25 January 2011). "Add wayland lighthouse plugin". 
  18. ^ Qt Blog. "Qt Commercial Formally Supports QNX | Qt Blog". Blog.qt.digia.com. Retrieved 2013-03-19. 
  19. ^ nratelle. "Github project". Github.com. Retrieved 13 November 2011. 
  20. ^ "Blackberry | Qt Wiki". Qt Project. 2013-01-16. Retrieved 2013-03-19. 
  21. ^ "[Phoronix] Android Support Being Merged For Qt 5.1". Phoronix.com. 2013-02-07. Retrieved 2013-03-19. 
  22. ^ "Necessitas project". Retrieved 3 December 2012. 
  23. ^ "Necessitas old Sourceforge.net project". Sourceforge.net. Retrieved 13 November 2011. 
  24. ^ "First Alpha of Qt For Android Released". Slashdot. 22 February 2011. Retrieved 22 February 2011. 
  25. ^ "[Phoronix] Digia Merging Apple iOS Support Into Qt 5.1". Phoronix.com. 2013-02-18. Retrieved 2013-03-19. 
  26. ^ Qt Blog. "Qt Commercial for VxWorks | Qt Blog". Blog.qt.digia.com. Retrieved 2013-03-19. 
  27. ^ "KDE on OpenSolaris". Hub.opensolaris.org. 26 October 2009. Retrieved 13 November 2011. 
  28. ^ "Qt Applications and UI Framework for Haiku". Qt-haiku.ru. Retrieved 13 November 2011. 
  29. ^ "Qt 4 Application and UI Framework for eCS". Svn.netlabs.org. 15 September 2011. Retrieved 13 November 2011. 
  30. ^ Qt webOS port
  31. ^ darron (25 February 2010). "Blog: Qt on the Palm Pre". Griffin.net. Retrieved 13 November 2011. 
  32. ^ darron (30 January 2010). "Blog: Qt on Amazon Kindle DX". Griffin.net. Retrieved 13 November 2011. 
  33. ^ "Qt Mir support in Launchpad". Launchpad.net. 2013-01-29. Retrieved 2013-03-19. 
  34. ^ "Qt Wiki – Support for Windows CE and Windows Mobile". Developer.qt.nokia.com. 12 August 2011. Retrieved 13 November 2011. 
  35. ^ "Support for Symbian | Qt Wiki". Qt Project. 2012-08-29. Retrieved 2013-03-19. 
  36. ^ "Qt for S60 – Forum Nokia Wiki". Wiki.forum.nokia.com. Retrieved 13 November 2011. 
  37. ^ "Nokia Announce Technology preview of Qt on S60". All About Symbian. 20 October 2008. Retrieved 13 November 2011. 
  38. ^ Paul, Ryan (20 October 2008). "Nokia releases first Qt preview for Symbian S60". ars technica. Retrieved 13 November 2011. 
  39. ^ Espen Riskedal (20 October 2008). "Qt Labs Blogs – We’re porting Qt to S60!". Labs.trolltech.com. Retrieved 13 November 2011. 
  40. ^ "Qt Software – Technology Preview – Qt for S60". Trolltech.com. Retrieved 13 November 2011. 
  41. ^ "David Wood: S60 / Avkon are dead". Tamss60.tamoggemon.com. Retrieved 13 November 2011. 
  42. ^ "Qt GNU GPL v. 3.0 Version". 
  43. ^ Trolltech Releases Qt 4.1, qt.nokia.com. Retrieved 27 November 2011.
  44. ^ Qt 4.2.0 released by Harald Fernengel, labs.qt.nokia.com. Retrieved 27 November 2011.
  45. ^ Qt 4.3.0 released by Girish Ramakrishnan, labs.qt.nokia.com. Retrieved 27 November 2011.
  46. ^ Trolltech: What’s New in Qt 4.3[dead link]
  47. ^ Qt 4.4.0 fully released by Thiago Macieira, labs.qt.nokia.com. Retrieved 27 November 2011.
  48. ^ Qt 4.5 hits the (virtual) shelves by Jason McDonald, labs.qt.nokia.com. Retrieved 27 November 2011.
  49. ^ Qt 4.6.0 Released Early due to Good Behaviour by Jason McDonald, labs.qt.nokia.com. Retrieved 27 November 2011.
  50. ^ Qt 4.7.0 now available by Jason McDonald, labs.qt.nokia.com. Retrieved 27 November 2011.
  51. ^ Qt 4.8.0 Released by Sinan Tanilkan, labs.qt.nokia.com. Retrieved 15 December 2011.
  52. ^ "Qt_5.0 | Qt Wiki". Qt Project. 2012-03-13. Retrieved 2013-03-19. 
  53. ^ "Qt 5 | Qt Wiki". Qt Project. Retrieved 2013-03-19. 
  54. ^ Concern about removal of QWidget classes, Qt5-feedback mailing list, 7 October 2011
  55. ^ The Qt Project is live! by Lars Knoll, labs.qt.nokia.com. Retrieved 8 February 2012.
  56. ^ Qt Blog. "Introducing Qt 5.0 | Qt Blog". Blog.qt.digia.com. Retrieved 2013-03-19. 
  57. ^ "[Phoronix] Qt 5.1 Will Bring With It Several New Features". Phoronix.com. 2013-04-02. Retrieved 2013-04-08. 
  58. ^ http://dot.kde.org/2005/06/28/trolltech-releases-qt-40
  59. ^ "All Modules | Documentation". Qt Project. Retrieved 2013-04-08. 
  60. ^ Qt Blog. "Introducing Qt 5.0 | Qt Blog". Blog.qt.digia.com. Retrieved 2013-04-08. 
  61. ^ http://dot.kde.org/2012/12/24/qt-50-congratulations-qt-project
  62. ^ "QtDoc 5.1: All Modules". Doc-snapshot.qt-project.org. Retrieved 2013-04-08. 
  63. ^ Products – Qt – A cross-platform application and UI framework 'Qt uses the native graphics APIs of each platform it supports, taking full advantage of system resources and ensuring that applications have native look and feel.'
  64. ^ "Qt 4.3: QtScript Module". Doc.trolltech.com. Retrieved 13 November 2011. 
  65. ^ "QSA 1.2: Qt Script for Applications". Doc.trolltech.com. Retrieved 13 November 2011. 
  66. ^ "QtDoc 5.0: All Modules | Documentation". Qt Project. Retrieved 2013-04-08. 
  67. ^ "Qt Language Bindings". Qt.nokia.com. Retrieved 13 November 2011. 
  68. ^ "Trolltech Releases Qt 4.0 | KDE.news". Dot.kde.org. Retrieved 13 November 2011. 
  69. ^ Niels Weber (23 June 2010). "Nokia Qt SDK 1.0 released". Labs.trolltech.com. Retrieved 13 November 2011. 
  70. ^ "Trolltech offers a choice in licensing with the addition of GPL licensing for the upcoming release of Qt". Qt.nokia.com. Retrieved 13 November 2011. 
  71. ^ Q../Windows Edition history, 5 June 2006[dead link]
  72. ^ E-mail to the kde-cygwin mailing list by Chris January, 4 February 2003
  73. ^ Qt Non-commercial FAQ, 5 October 2003
  74. ^ "Nokia Corporation Qt GPL Exception Version 1.3". Doc.trolltech.com. 22 July 1999. Retrieved 13 November 2011. 
  75. ^ LGPL License Option Added to Qt 14 January 2009
  76. ^ "ICS Whitepaper on the Implications of Qt under LGPL for Commercial and Government users" (PDF). Retrieved 13 November 2011. 
  77. ^ "Qt in Autodesk". 
  78. ^ "Qt in visual effects". 
  79. ^ "Qt for Blackberry Tablet OS & BB10". 
  80. ^ "Dassault Systemes Releases Free DraftSight For Linux.". 
  81. ^ "Qt delivered advanced, cross-platform C++ GUI for Mathematica’s development team". 
  82. ^ "Qt in the European Space Agency". 
  83. ^ "Behind the Scenes at DreamWorks Animation: Making the Apps that Make the Movies". 
  84. ^ "UI & System Design Challenges for the NxG Lighting Tool". 
  85. ^ "Google Earth Includes a Web Browser". Googlesystem.blogspot.de. 2010-06-15. Retrieved 2013-04-08. 
  86. ^ "Developing Innovative Desktop and Embedded HP Products with Qt". 
  87. ^ "The KDE development platform". 
  88. ^ "Lucasfilm Entertainment Company Ltd.". 
  89. ^ "Qt in Visual Effects". 
  90. ^ "Qt provided The Foundry with a solution that required minimal tweaking and customization.". 
  91. ^ "Panasonic selects Qt for HD video system". 
  92. ^ "Qt in IP Communications". 
  93. ^ "Qt in Home Media". 
  94. ^ "Qt helped Siemens deliver a C++ development platform for manufacturing software GUIs". 
  95. ^ "Qt in use – Skype.". Archived from the original on 2009-02-26. 
  96. ^ "Canonical's Windowing Shift: More than a Mir Techie Footnote". Linux.com. 2013-03-06. Retrieved 2013-04-08. 
  97. ^ "Qt in VideoLan Player". 
  98. ^ "Volvo Mobility Systems". 
  99. ^ "Qt helped Walt Disney reduce development time spent on its cross-platform feature film production application". 
Wikipedia content is licensed under the GNU Free Document License or Creative Commons CC-BY-SA
Loading...
Loading...
Top Videos
Latest Videos
Images Source: Flickr. Images licensed under the Creative Commons CC-BY-SA

Here you can share your comments or contribute with more information, content, resources or links about this topic.