Qt (software)
Original author(s) | Haavard Nord and Eirik Chambe-Eng[1] |
---|---|
Developer(s) |
|
Initial release | 20 May 1995[1] |
Stable release | 6.5 LTS[2] (3 April 2023 ) [±] |
Repository | |
Written in | C++ |
Operating system | Android, iOS, Linux (Embedded, Wayland, X11), macOS, Windows, Windows Phone, …[3] |
Platform | Cross-platform |
Type | Application framework |
License | Qt Commercial License[4] GPL 2.0, 3.0[5] LGPL 3.0[6] |
Website | www |
Qt (/kjuːt/ "cute"[7][8][9]) is a cross-platform application framework that is used for developing application software that can be run on various software and hardware platforms with little or no change in the underlying codebase, while still being a native application with native capabilities and speed. Qt is currently being developed both by The Qt Company, a company listed on the Nasdaq Helsinki Stock Exchange, and the Qt Project under open-source governance, involving individual developers and firms working to advance Qt.[10][11][12] Qt is available with both commercial[4] and open source[13] GPL 2.0, GPL 3.0, and LGPL 3.0 licenses.[5][6]
Purposes and abilities
Qt is used for developing multi-platform applications and graphical user interfaces (GUIs); however, programs without a GUI can be developed, such as command-line tools and consoles for servers. An example of a non-GUI program using Qt is the Cutelyst web framework.[14] GUI programs created with Qt can have a native-looking interface, in which case Qt is classified as a widget toolkit.
Qt uses standard C++ with extensions including signals and slots that simplify handling of events, and this helps in development of both GUI and server applications which receive their own set of event information and should process them accordingly. Qt supports many compilers, including the GCC C++ compiler and the Visual Studio suite. Qt also provides Qt Quick, that includes a declarative scripting language called QML that allows using JavaScript to provide the logic. With Qt Quick, rapid application development for mobile devices became possible, although logic can be written with native code as well to achieve the best possible performance. Qt can 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, JSON parsing, thread management and network support.
Qt market
Organizations using Qt
As a commercial open source product, there are several benefits for using Qt. Among them, performance due to being native, simplicity of API, and being cross platform has lead to a wide adoption of Qt by many well-known organization like European Space Agency,[15] DreamWorks,[16][17] Lucasfilm,[18][19] Panasonic,[20] Philips,[21] Samsung,[22] Siemens,[23] Volvo,[24] Walt Disney Animation Studios,[25] Blizzard Entertainment,[26] Electronic Arts,[27] AMD, Valve Corporation.[28] In 2012, it was estimated that "over 350,000 developers are using Qt globally for numerous applications used in some 70 industries".[29] In 2017, the Qt Company estimates community of approximately 1 million developers worldwide.[30]
Qt company and its products are certified with many standards including ISO 9001:2008 certificate.[31] Qt is provided with different levels of support, for various purposes including application development and device creation. The baseline is the community support for open source users, standard and premium support from the Qt company.[32]
GUI and desktop environments
Several GUIs and desktop environments utilize Qt as widget toolkit, and it is also widely used for device creation. There are cases which famous applications have ported their entire code from other GUI toolkits to Qt, to enjoy the benefits of cross-platform native GUI with Qt. Among them, Wireshark, LXQt, VLC and Rosegarden have switched successfully from Gtk+ to Qt.
These are some of the well-known applications that use Qt:
- AsteroidOS, an open source operating system designed for smartwatches
- Avionics, Panasonic's Inflight Entertainment System[33][34]
- DDE (Deepin Desktop Environment) for Linux Deepin[35][36]
- Hawaii, a Wayland and Qt Quick-based desktop environment
- KDE Plasma, a desktop environment for various form factors like computers, tablets and smartphones[37]
- LiriOS, a workspace built on Qt/QML[38]
- Lumina, a desktop environment designed for PC-BSD[39]
- LXQt (Lightweight X11 Desktop Environment), the successor to the GTK+-based LXDE, based on Qt
- OPIE, a GUI for the Sharp Zaurus
- Sailfish OS, a mobile operating system developed by Jolla
- Sky Q, the home entertainment system of Sky plc[40]
- Tesla Model S in-car UI[41]
- Ubuntu Touch, a phone UI developed by Canonical
- Ultrahaptics, Haptic Interface developer for a wide range of applications.
- webOS, a multitask operating system for smart devices like TVs and smartwatches
- Yunit, a community-based fork of the Unity8-Shell[42]
Applications using Qt
Notable applications using Qt or QML are:
- Adobe Photoshop Album[43]
- Adobe Photoshop Elements[44]
- AMD's Radeon Software Crimson Edition driver tool application.[45]
- Autodesk Maya[46]
- Bitcoin Core
- CryEngine V editor[47]
- Dragonframe[48] stop motion animation software
- FreeMat free open source numerical computing environment
- Google Earth[49]
- Orange data mining suite[50]
- QGIS geographic information system[51]
- Scribus desktop publishing software[52]
- Sibelius music composition and notation software[53]
- Skype
- Source 2 engine tools[54] a 3D video game engine developed by Valve Corporation
- Spotify for Linux[55]
- Stellarium, a planetarium program
- Subsurface, a software for logging and planning scuba dives initially designed and developed by Linus Torvalds[56]
- Telegram, a messaging client available for Windows, Mac and Linux[57]
- VirtualBox OS virtualization software[58]
- VLC media player[59]
- WPS Office[60]
- XnView MP[61]
Editions
There are four editions of Qt available, Community, Indie Mobile, Professional and Enterprise.[62] The Community version is under the open source licenses, while the Indie Mobile, Professional and Enterprise versions, which contain additional functionality and libraries, e.g. Charts and Data Visualization, Enterprise Controls, Virtual Keyboard etc.[62] are commercially sold by The Qt Company.
Licensing
Qt is available under the following free software licenses:[13] GPL 3.0, LGPL 3.0 and LGPL 2.1 (with Qt special exception).[5][63] Note that some modules are only available under a GPL license, which means that applications which statically link to these modules need to comply with that license.[64][65]
In addition, Qt has always been available under a commercial license, like the Qt Commercial License,[4] that allows developing proprietary applications with no restrictions on licensing.
Software architecture
Qt, when it was first released, relied on a few key concepts:
- Complete abstraction of the GUI
- When first released, Qt used its own paint engine and controls, emulating the look of the different platforms it runs on when it drew its widgets. This made the porting work easier because very few classes in Qt depended really on the target platform; however, this occasionally led to slight discrepancies where that emulation was imperfect. Recent versions of Qt use the native style APIs of the different platforms, on platforms that have a native widget set, to query metrics and draw most controls, and do not suffer from such issues as much.[66] On some platforms (such as MeeGo and KDE) Qt is the native API. Some other portable graphical toolkits have made different design decisions; for example, wxWidgets uses the toolkits of the target platform for its implementations.
- Signals and slots
- A language construct introduced in Qt for communication between objects[67] which makes it easy to implement the observer pattern while avoiding boilerplate code. The concept is that GUI widgets can send signals containing event information which can be received by other controls using special functions known as slots.
- Metaobject compiler
- 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++: signals and slots, introspection and asynchronous function calls.
Supported platforms
Qt works on many different platforms; the following are officially supported:
Platform | Description |
---|---|
Linux/Unix | |
X11 | Qt for X Window System (Linux, *BSD, HP-UX, Solaris, AIX, etc.)[68] |
Wayland | Qt for Wayland.[69] Qt applications can switch between graphical backends like X and Wayland at load time with the -platform command line option.[70][71] This allows a seamless transition of Qt applications from X11 to Wayland. |
Embedded Linux | Qt for embedded platforms: personal digital assistant, smartphone, etc.[72] Exists as multiple platforms depending on display technology. DirectFB, LinuxFB and EGLFS (EGL Full Screen). |
Android | Qt for Android,[73] formerly known as Necessitas.[74] |
Apple Platforms | |
macOS | Qt for Apple macOS; supports applications on Cocoa[75] |
iOS | Qt for iOS platforms (iPhone, iPad)[76] |
Microsoft Platforms | |
Windows | Qt for Microsoft Windows XP, Vista, 7,[77] 8 and 10[78] |
Windows CE | Qt for Windows CE 6 and Windows Embedded Compact 7.[79] |
Windows RT | Support for WinRT-based Windows 8 apps and Windows Phone 8[80] With 5.4 minimum supported version: Windows Phone 8.1[81] |
Other Embedded Platforms | |
Integrity | Qt for Integrity[82] |
QNX | Qt for QNX[83] |
VxWorks | Qt for VxWorks.[84] |
After Nokia opened the Qt source code to the community on Gitorious various ports appeared. There are also some ports of Qt that may be available, but are not supported anymore. These platforms are listed in List of platforms supported by Qt.
Software modules
Starting with Qt 4.0 the framework was split into individual modules.[85][86] With Qt 5.0 the architecture was modularized even further.[87][88] Qt is now split into essential and add-on modules.[89]
Qt essentials
Module | Description |
---|---|
Qt Core | The only required Qt module, containing classes used by other modules, including the meta-object system, concurrency and threading, containers, event system, plugins and I/O facilities. |
Qt GUI | The central GUI module. In Qt 5 this module now depends on OpenGL, but no longer contains any widget classes. |
Qt Widgets | Contains classes for classic widget based GUI applications and the QSceneGraph classes. Was split off from QtGui in Qt 5. |
Qt QML | Module for QML and JavaScript languages. |
Qt Quick | The module for GUI application written using QML2. |
Qt Quick Controls | Widget like controls for Qt Quick intended mainly for desktop applications. |
Qt Quick Layouts | Layouts for arranging items in Qt Quick. |
Qt Network | Network abstraction layer. Complete with TCP, UDP, HTTP, SSL and since Qt 5.3 SPDY support. |
Qt Multimedia | Classes for audio, video, radio and camera functionality. |
Qt Multimedia Widgets | The widgets from Qt Multimedia. |
Qt SQL | Contains classes for database integration using SQL. |
Qt WebEngine | A new set of Qt Widget and QML webview APIs based on Chromium. |
Qt Test | Classes for unit testing Qt applications and libraries. |
Qt add-ons
Module | Description |
---|---|
Active Qt | Classes for applications which use ActiveX. |
Qt Bluetooth | Classes accessing Bluetooth hardware. |
Qt D-Bus | Classes for IPC using the D-Bus protocol. |
Qt NFC | Classes accessing NFC hardware. Only officially supported on BlackBerry hardware so far (or N9 in the MeeGo port). |
Qt OpenGL | Legacy module containing the OpenGL classes from Qt 4. In Qt 5 the similar functionality in Qt GUI is recommended. |
Qt Location | Classes for accessing GPS and other location services and for mapping and navigation. Split off from the Qt 4 Mobility module of Qt Location. Supported on Android, BlackBerry, iOS, Linux (using GeoClue), Windows and Sailfish OS. |
Qt Script | Legacy module for scripting Qt application using ECMAScript/JavaScript. In Qt 5, using similar classes in Qt QML is recommended. |
Qt Sensors | Classes for accessing various mobile hardware sensors. Used to be part of Qt Mobile in Qt 4. Supported on Android, BlackBerry, iOS, WinRT, Mer and Linux. |
Qt Serial Port | Classes for access to hardware and virtual serial ports. Supported on Windows, Linux and macOS. |
Qt WebChannel | Provides access to Qt objects to HTML/Js over WebSockets. |
Qt WebKit | Qt's WebKit implementation and API. |
Qt WebKit Widgets | The widget API for Qt WebKit |
Qt WebSockets | Provides a WebSocket implementation. |
Qt XML | Legacy module containing classes for SAX and DOM style XML APIs. Replaced with QXmlStreamReader and QXmlStreamWriter classes in Qt Core. |
Qt XML Patterns | Support for XPath, XQuery, XSLT and XML Schema validation. |
Qt tools
Qt comes with its own set of tools to ease cross-platform development, which can otherwise be cumbersome due to different set of development tools. Qt Creator is a cross-platform IDE for C++ and QML. Qt Designer's GUI layout/design functionality is integrated into the IDE, although Qt Designer can still be started as a standalone tool.
In addition to Qt Creator, Qt provides qmake, a cross-platform build script generation tool that automates the generation of Makefiles for development projects across different platforms. Without such a tool, one would have to write different Makefiles for each platform, so it is useful for abstracting away the differences of various platforms.
There are other tools available in Qt, including the Qt Designer interface builder and the Qt Assistant help browser (which are both embedded in Qt Creator), the Qt Linguist translation tool, uic (user interface compiler), and moc (Meta-Object Compiler).
Programming language bindings
Qt has a range of bindings for various languages,[90] which implement some or all of its feature set.
History of Qt
The latest version of Qt is 5.9 LTS which is released on 31 May 2017, and is supported for 3 years until 31 May 2020.[91] The next planned version of Qt will be Qt 5.10, which is planned to be released on 30 November 2017[92] with several new features including initial Vulkan support for Windows, Linux and Android.[93]
Early developments
In the summer of 1990, Haavard Nord and Eirik Chambe-Eng (the original developers of Qt and the CEO and President, respectively, of Trolltech) were working together on a database application for ultrasound images written in C++ and running on Mac OS, Unix, and Windows.[1][94] They 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 typeface, 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.
On 20 May 1995 Troll Tech publicly released Qt 0.90 for X11/Linux with the source code under the Qt Free Edition License.[95][96][97] This license 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. Trolltech used this license until version 1.45. Controversy erupted around 1998 when it became clear that the K Desktop Environment 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.
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.
Becoming Free Software-friendly
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,[98] which guarantees that Qt would fall under a BSD-style license should no free/open source version of Qt be released during 12 months.[99][100]
In 2000, Qt/X11 2.2 was released under the GPL v2,[101] ending all controversy regarding GPL compatibility.
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 2002, members of the KDE on Cygwin project began porting the GPL licensed Qt/X11 code base to Windows.[102] 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.[103][104] The project achieved reasonable success although it never reached production quality.
This was resolved when Trolltech released Qt 4.0 also for Windows under the GPL in June 2005.[105] Qt 4 supported the same set of platforms in the free software/open source editions as in the proprietary edition, so it is possible, with Qt 4.0 and later releases, to create GPL-licensed free/open source applications using Qt on all supported platforms. The GPL v3 with special exception[106] 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.
Acquisition by Nokia
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.[107] 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.
On 14 January 2009, Qt version 4.5 added another option, the LGPL,[108] which should make Qt even more attractive for non-GPL open source projects and for closed applications.[109]
In February 2011, Nokia announced its decision to drop Symbian technologies and base their future smartphones on the Windows Phone platform instead.[110] One month later, Nokia announced the sale of Qt's commercial licensing and professional services to Digia, with the immediate goal of taking 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.
Merging and demerging with Digia
In March 2011, Nokia sold the commercial licensing part of Qt to Digia creating Qt Commercial.[111] In August 2012, Digia announced that it would acquire Qt from Nokia.[112] The Qt team at Digia started their work in September 2012.[113] They released Qt 5.0 within a month and newer versions every 6 months with new features and additional supported platforms.
In September 2014, Digia transferred the Qt business and copyrights to their wholly owned subsidiary, The Qt Company, which owns 25 brands[114] related to Qt. In May 2016, Digia and Qt have demerged completely into two independent companies.[115]
The Qt Project and Open Governance
Qt 5 was officially released on 19 December 2012. This new version marked a major change in the platform, with hardware-accelerated graphics, QML and JavaScript playing a major role. The traditional C++-only QWidgets continued to be supported, but did not benefit from the performance improvements available through the new architecture.[116] Qt 5 brings significant improvements to the speed and ease of developing user interfaces.[117]
Framework development of Qt 5 moved to open governance, taking place at qt-project.org. There it is now possible for developers outside Digia to submit patches and have them reviewed.[118]
See also
References
- ^ a b c d e Blanchette, Jasmin; Summerfield, Mark (June 2006). "A Brief History of Qt". C++ GUI Programming with Qt 4 (1st ed.). Prentice-Hall. pp. xv–xvii. Retrieved 5 August 2013.
- ^ "Qt 6.5 Release". www.qt.io. The Qt Company. Retrieved 20 December 2023.
- ^ "Supported Platforms".
- ^ a b c "Licenses".
- ^ a b c "New agreement with the KDE Free Qt Foundation and changes for the open source version". The Qt Company.
- ^ a b "Adding LGPL v3 to Qt". 20 August 2014.
- ^ "Qt - About Us".
- ^ "That Smartphone Is So Qt". Ashlee Vance. 16 February 2010. Retrieved 19 February 2010.
- ^ "The Qt 4 Dance" (video). Retrieved 7 September 2015.
- ^ Pintscher, Lydia (21 October 2011). "KDE Applauds Qt's Move to Open Governance". KDE.News. Retrieved 8 May 2013.
- ^ Meyer, David (24 October 2011). "Nokia gives Qt open-source governance". ZDNet. Retrieved 8 May 2013.
- ^ Knoll, Lars (6 August 2014). "Defragmenting Qt and Uniting Our Ecosystem".
- ^ a b "Qt Licensing".
- ^ "Cutelyst - Home".
- ^ "Qt in the European Space Agency". Archived from the original on 23 July 2011.
{{cite web}}
: Unknown parameter|deadurl=
ignored (|url-status=
suggested) (help) - ^ Behind the Scenes at DreamWorks Animation: Making the Apps that Make the Movies.
- ^ UI & System Design Challenges for the NxG Lighting Tool.
- ^ "Lucasfilm Entertainment Company Ltd".
- ^ "Qt in Visual Effects". Archived from the original on 23 July 2011.
{{cite web}}
: Unknown parameter|deadurl=
ignored (|url-status=
suggested) (help) - ^ "Panasonic selects Qt for HD video system". Archived from the original on 23 July 2011.
{{cite web}}
: Unknown parameter|deadurl=
ignored (|url-status=
suggested) (help) - ^ "Qt in IP Communications". Archived from the original on 23 July 2011.
{{cite web}}
: Unknown parameter|deadurl=
ignored (|url-status=
suggested) (help) - ^ "Qt in Home Media". Archived from the original on 23 July 2011.
{{cite web}}
: Unknown parameter|deadurl=
ignored (|url-status=
suggested) (help) - ^ "Qt helped Siemens deliver a C++ development platform for manufacturing software GUIs". Archived from the original on 14 July 2011.
{{cite web}}
: Unknown parameter|deadurl=
ignored (|url-status=
suggested) (help) - ^ "Volvo Mobility Systems". Archived from the original on 14 July 2011.
- ^ "Qt helped Walt Disney reduce development time spent on its cross-platform feature film production application". Archived from the original on 14 July 2011.
{{cite web}}
: Unknown parameter|deadurl=
ignored (|url-status=
suggested) (help) - ^ "Blizzard's additions/modifications to Qt".
- ^ "Open Source - Electronic Arts".
- ^ "Qt - Valve Developer Community". Retrieved 28 April 2017.
- ^ Shneor, Rotem (2012). "Handbook of Research on Born Globals, Chapter 10: Born Global Firms, Internet, and New Forms of Internationalization". Retrieved 8 June 2017.
- ^ "QT GROUP OYJ - Managers' Transactions, 12/4/2017". 12/4/2017. Retrieved 8 June 2017.
{{cite web}}
: Check date values in:|date=
(help) - ^ With, Mikko (26 May 2016). "The Qt Company acquires ISO 9001:2008 certificate". Retrieved 8 June 2017.
- ^ "Qt Support". The Qt Company.
{{cite web}}
: Cite has empty unknown parameter:|1=
(help) - ^ "X Series Qt-based graphical user interface".
- ^ "Avionics powered by Qt".
- ^ "Softpedia News".
- ^ http://blog.deepin.org/2015/12/deepin-15-rc-make-you-only-have-eyes-for-us-by-the-sincerity/?language=en
- ^ "The KDE development platform".
- ^ "LiriOS workspace on Github".
- ^ "Lumina Homepage".
- ^ "Sky teams up with The QT Company on Sky Q".
- ^ "Qt Interface".
- ^ "Yunit Code Repository on Github".
- ^ "C++ GUI Programming with Qt4 By Jasmin Blanchette, Mark Summerfield".
- ^ "Mobile Computing, Applications, and Services: First International ICST Conference, MobiCASE 2009, San Diego, CA, USA, October 26-29, 2009, Revised Selected Papers, Edited by Petros Zerfos, Rebecca Montanari, Thomas Phan".
- ^ Walton, Mark (2 November 2015). "AMD Radeon Software Crimson: A new name and a new look for Catalyst".
- ^ "Qt in Autodesk". Archived from the original on 23 July 2011.
{{cite web}}
: Unknown parameter|deadurl=
ignored (|url-status=
suggested) (help) - ^ "CRYENGINE V Reveal".
- ^ "Dyami Caliri, Qt Champion 2014".
- ^ "Google Earth Includes a Web Browser". Googlesystem.blogspot.de. 15 June 2010. Retrieved 8 April 2013.
- ^ "Orange3 Data Mining Suite".
- ^ "PyQGIS Developer Cookbook: Introduction". qgis.org. Retrieved 1 March 2017.
the whole QGIS code depends on Qt libraries
- ^ "Scribus Development".
- ^ "Sibelius - the leading music composition and notation software". www.sibelius.com. Retrieved 19 October 2016.
- ^ "Panorama - Valve Developer Community". Retrieved 28 April 2017.
- ^ "10 Qt Use Cases You Didn't Know".
- ^ "Subsurface 4.0 has been released". 15 December 2013.
- ^ "Telegram desktop messaging app".
- ^ "VBoxMainLogging - Oracle VM VirtualBox".
- ^ "Qt Interface".
- ^ https://github.com/wps-community/wps_i18n/blob/master/README.md
- ^ "XnView MP".
- ^ a b "Qt Download page". Download Qt. The Qt Company. Retrieved 21 November 2014.
- ^ "Digia Qt LGPL Exception version 1.1".
- ^ "Qt Licensing". The Qt Company. Retrieved 7 January 2017.
- ^ "Obligations of the LGPL". The Qt Company. Retrieved 7 January 2017.
In case of static linking of the library, the application itself may no longer be "work that uses the library" and thus become subject to LGPL. It is recommended to either link dynamically, or provide the application source code to the user under LGPL.
- ^ "Library". Digia.
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.
- ^ "Signals & Slots - QtCore 5.1". Qt Project. 4 July 2013. Retrieved 10 April 2015.
- ^ "Qt Wiki – Support for Linux/X11". Qt Project. 12 August 2011. Retrieved 21 August 2013.
- ^ Lind, Jørgen (18 March 2011). "Multi-process Lighthouse". Qt Project. Retrieved 21 August 2013.
- ^ "Getting started with Lighthouse". Retrieved 25 November 2011.
- ^ Høgsberg, Kristian (25 January 2011). "Add wayland lighthouse plugin".
- ^ "Qt Wiki – Support for Embedded Linux". Qt Project. 12 August 2011. Retrieved 10 April 2015.
- ^ "New Features in Qt 5.1 - Support for New Platforms". Digia. 3 July 2013. Retrieved 10 April 2015.
- ^ "Necessitas project". Retrieved 10 April 2015.
- ^ "Qt Wiki – Support for OS X". Qt Project. 14 August 2011. Retrieved 21 August 2013.
- ^ "Supported Platforms". Retrieved 1 February 2014.
- ^ "Qt Wiki – Support for Windows". Qt Project. 11 August 2011. Retrieved 11 August 2013.
- ^ "Windows 10 Support in Qt". The Qt Company. 29 April 2015. Retrieved 28 January 2016.
- ^ Breitmeyer, Bjoern (21 August 2013). "The State of WinCE Support in Qt5". KDAB. Retrieved 21 August 2013.
- ^ "Qt for WinRT". Qt Project. Retrieved 9 September 2014.
- ^ "New Features in Qt 5.4".
- ^ "Qt Product pages, Supported platforms". Qt - Product - Qt Framework. The Qt Company. Retrieved 21 November 2014.
- ^ Qt Blog. "Qt Commercial Formally Supports QNX | Qt Blog". Blog.qt.digia.com. Retrieved 19 March 2013.
- ^ Qt Blog. "Qt Commercial for VxWorks | Qt Blog". Blog.qt.digia.com. Retrieved 19 March 2013.
- ^ "Trolltech Releases Qt 4.0". KDE. 28 June 2005. Retrieved 5 August 2013.
- ^ "All Modules | Documentation". Qt Project. Retrieved 8 April 2013.
- ^ Qt Blog (19 December 2012). "Introducing Qt 5.0 | Qt Blog". Digia. Retrieved 8 April 2013.
- ^ Kyle Morris (24 December 2012). "Qt 5.0 - Congratulations to the Qt Project". KDE. Retrieved 5 August 2013.
- ^ "QtDoc 5.1: All Modules". Qt Project. Retrieved 8 April 2013.
- ^ "Programming Language Support & Language Bindings". Qt Project. Retrieved 21 August 2013.
- ^ Leppälä, Kimmo (7 June 2017). "Renewed Qt Support Services". Qt Project. Retrieved 8 June 2017.
- ^ Heikkinen, Jani (2 June 2017). "Qt 5.10 Release". The Qt Company. Retrieved 8 June 2017.
- ^ Heikkinen, Jani (2 June 2017). "New Features in Qt 5.10". The Qt Company. Retrieved 8 June 2017.
- ^ "Qt - Qt20". Qt.
- ^ "Qt Free Edition License". Trolltech. 1992. Retrieved 14 October 2016.
{{cite web}}
:|archive-date=
requires|archive-url=
(help) - ^ "Happy 20th Anniversary Qt!". Qt Blog.
- ^ "Qt framework celebrates its 20th anniversary". SD Times.
- ^ "KDE Free Qt Foundation".
- ^ "KDE Free Qt Foundation announcement". June 1998.
- ^ "Software License Agreement" (PDF). Digia. 13 April 2013.
- ^ "Trolltech offers a choice in licensing with the addition of GPL licensing for the upcoming release of Qt". Qt.nokia.com. Archived from the original on 13 March 2012. Retrieved 13 November 2011.
- ^ "Q../Windows Edition history". 5 June 2006. Archived from the original on 31 July 2010.
- ^ E-mail to the kde-cygwin mailing list by Chris January, 4 February 2003
- ^ "Qt Non-commercial FAQ". Trolltech. Archived from the original on 5 October 2003.
- ^ "Trolltech Releases Qt 4.0 | KDE.news". KDE.News. Retrieved 13 November 2011.
- ^ "Nokia Corporation Qt GPL Exception Version 1.3". Doc.trolltech.com. 22 July 1999. Retrieved 13 November 2011.
- ^ Weber, Niels (23 June 2010). "Nokia Qt SDK 1.0 released". Labs.trolltech.com. Retrieved 13 November 2011.
- ^ Nyström, Sebastian (14 January 2009). "Nokia to license Qt under LGPL". Retrieved 17 September 2013.
- ^ "ICS Whitepaper on the Implications of Qt under LGPL for Commercial and Government users" (PDF). Retrieved 13 November 2011.
- ^ "Nokia and Microsoft Announce Plans for a Broad Strategic Partnership to Build a New Global Mobile Ecosystem" (Press release). Microsoft. 10 February 2011. Archived from the original on 1 April 2011. Retrieved 27 October 2011.
- ^ Nystrom, Sebastian (7 March 2011). "Nokia and Digia working together to grow the Qt community". Retrieved 8 July 2011.
- ^ Digia Plc (9 August 2012). "Digia to acquire Qt from Nokia". Digia Plc. Retrieved 17 October 2014.
- ^ Digia Plc (18 September 2012). "The journey starts today". Digia Plc. Retrieved 17 October 2014.
- ^ TMview search result shown on September 12th, 2016
- ^ Digia Newsfeed 2016-05-02
- ^ "Concern about removal of QWidget classes". Qt5-feedback (Mailing list). 7 October 2011.
{{cite mailing list}}
: Unknown parameter|mailinglist=
ignored (|mailing-list=
suggested) (help) - ^ Knoll, Lars (9 May 2011). "Thoughts about Qt 5". Digia. Retrieved 9 May 2011.
- ^ Knoll, Lars (21 October 2011). "The Qt Project is live!". Nokia. Retrieved 8 February 2012.
Bibliography
Qt Wiki provides a comprehensive list of English books about Qt. [1] This is a list of notable books:
- Bocklage-Ryannel, Juergen; Thelin, Johan (12 May 2015). "Qt 5 Cadaques" (1st ed.).
- Blanchette, Jasmin; Summerfield, Mark (14 February 2008). "C++ GUI Programming with Qt 4" (2nd ed.). Prentice Hall. ISBN 978-0-13-235416-5.
- Summerfield, Mark (23 August 2010). "Advanced Qt Programming: Creating Great Software with C++ and Qt 4" (1st ed.). Addison-Wesley. ISBN 978-0-321-63590-7.
- Fitzek, Frank H. P.; Mikkonen, Tommi; Torp, Tony (17 May 2010). "Qt for Symbian" (1st ed.). Wiley. ISBN 0-470-75010-3.
- Summerfield, Mark (28 October 2007). "Rapid GUI Programming with Python and Qt" (1st ed.). Prentice Hall. ISBN 978-0-13-235418-9.
- Molkentin, Daniel (19 July 2007). "The Book of Qt 4: The Art of Building Qt Applications" (1st ed.). No Starch Press. ISBN 978-1-59327-147-3.
- Thelin, Johan (3 August 2007). "Foundations of Qt Development" (1st ed.). Apress. ISBN 978-1-59059-831-3.
- Dalheimer, Matthias (January 2002). "Programming with Qt" (2nd ed.). O'Reilly Media. ISBN 978-0-596-00064-6.
- Ezust, Alan; Ezust, Paul (10 September 2006). "An Introduction to Design Patterns in C++ with Qt 4" (2nd ed.). Prentice Hall. ISBN 978-0-13-187905-8.