Qt (software)
GUI designing in Qt Creator using the embedded Qt Designer | |
Original author(s) | Haavard Nord and Eirik Chambe-Eng[1] |
---|---|
Developer(s) |
|
Initial release | 20 May 1995[1] |
Stable release | 5.5.1 (October 15, 2015 ) [±][2] |
Preview release | 5.6 Beta (December 18, 2015 ) [±][3] |
Development status | Active |
Written in | C++ |
Operating system | Linux (Embedded, Wayland), Unix-like (X11)), OS X, Windows, Windows Phone … |
Platform | Cross-platform |
Type | Application framework |
License |
Qt Commercial License[4] GPL-3.0[5] LGPL-3.0[6][7] LGPL-2.1[8] |
Website |
qt |
Qt (/ˈkjuːt/ "cute",[9][10][11] or unofficially as /kjuːˈtiː/ "Q-T") is a cross-platform application framework that is widely 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 the capabilities and speed thereof. Qt is currently being developed both by the Qt Company, a subsidiary of Digia, and the Qt Project under open-source governance, involving individual developers and firms working to advance Qt.[12][13][14] Digia owns the Qt trademark and copyright. Qt is available with both commercial[4] and open source[15] GPL v3, LGPL v3[7] and LGPL v2 licenses.
Purposes and abilities
Qt is used mainly for developing application software with 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.[16] GUI programs created with Qt can have a native-looking interface, in which cases Qt is classified as a widget toolkit.
Qt uses standard C++ with extensions including signals and slots that simplifies 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.
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.[17] 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[18] 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, FreeBSD, HP-UX, Solaris, AIX, etc.)[19] |
Wayland | Qt for Wayland.[20] Qt applications can switch between graphical backends like X and Wayland at load time with the -platform command line option.[21][22] This allows a seamless transition of Qt applications from X11 to Wayland. |
Embedded Linux | Qt for embedded platforms: personal digital assistant, smartphone, etc.[23] Exists as multiple platforms depending on display technology. DirectFB, LinuxFB and EGLFS (EGL Full Screen). |
Android | Qt for Android,[24] formerly known as Necessitas.[25] |
Apple Platforms | |
OS X | Qt for Apple OS X; supports applications on Cocoa[26] |
iOS | Qt for iOS platforms (iPhone, iPad)[27] |
Microsoft Platforms | |
Windows | Qt for Microsoft Windows XP, Vista, 7,[28] 8 and 10[29] |
Windows CE | Qt for Windows CE 6 and Windows Embedded Compact 7.[30] |
Windows RT | Support for WinRT-based Windows 8 apps and Windows Phone 8[31] With 5.4 minimum supported version: Windows Phone 8.1[32] |
Other Embedded Platforms | |
Integrity | Qt for Integrity[33] |
QNX | Qt for QNX[34] |
VxWorks | Qt for VxWorks.[35] |
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.
Editions
There are four editions of Qt available, Community, Indie Mobile, Professional and Enterprise.[36] 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.[36] are commercially sold by The Qt Company.
Qt is available under the following copyright licenses:[15] Qt Commercial License,[4] GNU GPL-3.0,[5] GNU LGPL-3.0[6] and GNU LGPL-2.1[8] (with Qt special exception)[37]
Releases
Qt 5
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.[38] Qt 5 brings significant improvements to the speed and ease of developing user interfaces.[39]
Framework development of Qt 5 moved to open governance, taking place at qt-project.org. It is now possible for developers outside Digia to submit patches and have them reviewed.[40]
Current recommended version of Qt 5 is Qt 5.5 updated with patch release 1 (Qt 5.5.1). Although Qt 4 is still used in many projects, Qt Company suggest upgrading to the latest Qt 5. Qt 5.6 will have long term support (LTS),[41] and Linux distributions like Ubuntu 16.04 LTS are expected to use this LTS version in their product.
Version | State | Latest release date | Description |
---|---|---|---|
4.8 | Legacy | 26 May 2015 | Updated to 4.8.7, planned to be the last patch release of the Qt 4 series[42] |
5.5 | Recommended | 15 October 2015 | Current version of Qt, Updated to 5.5.1 |
5.6 | Future version | Beta released on 18 December 2015[43] Final release planned for 1 March 2016[44] |
Notable changes and improvements:[45]
|
Software modules
Starting with Qt 4.0 the framework was split into individual modules.[46][47] With Qt 5.0 the architecture was modularized even further.[48][49] Qt is now split into essential and add-on modules.[50]
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 WebKit | Qt's WebKit implementation and API. |
Qt WebKit Widgets | The widget API for Qt WebKit |
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 Positioning | Classes for accessing GPS and other location services. Split off from the Qt 4 Mobile module of Qt Location. Supported on Android, BlackBerry, iOS and Linux (using GeoClue). |
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 Mac OS X. |
Qt WebChannel | Provides access to Qt objects to HTML/Js over WebSockets. |
Qt WebEngine | A new set of Qt Widget and QML webview APIs based on Chromium. |
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. |
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,[51] which implement some or all of its feature set.
Uses
Organizations using Qt
Qt is used by many organizations, including but are not limited to European Space Agency,[52] DreamWorks,[53][54] Lucasfilm,[55][56] Panasonic,[57] Philips,[58] Samsung,[59] Siemens,[60] Volvo,[61] Walt Disney Animation Studios,[62] Blizzard Entertainment,[63] Electronic Arts,[64] AMD.
Software using Qt
Example applications using Qt are Autodesk Maya,[65][66] Mathematica,[67] Google Earth,[68] the RStudio IDE for the R programming language,[69] Spotify for Linux,[70] the VirtualBox OS virtualization software package, the VLC media player,[71] and AMD's Radeon Software Crimson Edition driver tool application.[72]
The KDE desktop environment for UNIX-like operating systems[73] uses Qt as its widget toolkit.
History
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 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. 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.[74]
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.[75] 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.
In February 2011, Nokia announced its decision to drop Symbian technologies and base their future smartphones on the Windows Phone platform instead.[76] 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.
In March 2011, Nokia sold the commercial licensing part of Qt to Digia creating Qt Commercial. In August 2012, Digia announced that it will acquire Qt from Nokia[77] The Qt team started working in Digia in September 2012.[78] Qt team at Digia, released Qt 5.0 within a month, and released newer versions every 6 months with new features and additional supported platforms.
Licensing
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.
On 20 May 1995 Troll Tech publicly release Qt 0.90 for X11/Linux with the source code under the FreeQt license. 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 (now known as the 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,[79] which guarantees that Qt would fall under a BSD-style license should no free/open source version of Qt be released during 12 months.[80][81]
In 2000, Qt/X11 2.2 was released under the GPL v2,[82] 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.[83] 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.[84][85] 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[86] 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,[87] which should make Qt even more attractive for non-GPL open source projects and for closed applications.[88]
In March 2011, Nokia sold the commercial licensing part of Qt to Digia creating Qt Commercial.[89] In September 2014, Digia transferred the Qt business and copyrights to their wholly owned subsidiary, the Qt Company.
In January 2016, the licensing of Qt was changed,[90] forbidding the distribution of closed embedded devices excepting by acquiring a commercial license.
See also
References
- 1 2 3 4 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.
- ↑ Tuukka Turunen (2015-10-15). "Qt 5.5.1 released". Retrieved 2015-11-02.
- ↑ Tuukka Turunen (18 December 2015). "Qt 5.6 Beta released". Qt Project. Retrieved 14 January 2016.
- 1 2 3 "Qt Commercial Licenses".
- 1 2 "Qt GNU GPL v. 3.0 Version".
- 1 2 "Qt GNU LGPL v. 3.0 Version".
- 1 2 "Adding LGPL v3 to Qt". 20 August 2014.
- 1 2 "Qt GNU LGPL v. 2.1 Version".
- ↑ "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.
- ↑ Lydia Pintscher (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".
- 1 2 "Qt Licensing".
- ↑ "Cutelyst - Home".
- ↑ "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 Apr 2015.
- ↑ "Qt Wiki – Support for Linux/X11". Qt Project. 12 August 2011. Retrieved 21 August 2013.
- ↑ Jørgen Lind (18 March 2011). "Multi-process Lighthouse". Qt Project. Retrieved 21 August 2013.
- ↑ "Getting started with Lighthouse". Retrieved 25 November 2011.
- ↑ Kristian Høgsberg (25 January 2011). "Add wayland lighthouse plugin".
- ↑ "Qt Wiki – Support for Embedded Linux". Qt Project. 12 August 2011. Retrieved 10 Apr 2015.
- ↑ "New Features in Qt 5.1 - Support for New Platforms". Digia. 3 July 2013. Retrieved 10 Apr 2015.
- ↑ "Necessitas project". Retrieved 10 Apr 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". Qt Company. 29 April 2015. Retrieved 28 January 2016.
- ↑ Bjoern Breitmeyer (21 August 2013). "The State of WinCE Support in Qt5". KDAB. Retrieved 21 August 2013.
- ↑ "Qt for WinRT". Qt Project. Retrieved 9 September 2014.
- ↑ https://wiki.qt.io/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.
- 1 2 "Qt Download page". Download Qt. The Qt Company. Retrieved 2014-11-21.
- ↑ "Digia Qt LGPL Exception version 1.1".
- ↑ "Concern about removal of QWidget classes". Qt5-feedback (Mailing list). 7 October 2011.
- ↑ Knoll, Lars (9 May 2011). "Thoughts about Qt 5". Digia. Retrieved 9 May 2011.
- ↑ Lars Knoll (21 October 2011). "The Qt Project is live!". Nokia. Retrieved 8 February 2012.
- ↑ Turunen, Tuukka (18 December 2015). "Introducing Long Term Support". Qt Company. Retrieved 28 Jan 2016.
- ↑ Turunen, Tuukka (26 May 2015). "Qt 4.8.7 Released". Qt Company. Retrieved 28 Jan 2016.
- ↑ Tuukka Turunen (18 December 2015). "Qt 5.6 Beta released". Qt Project. Retrieved 2016-01-28.
- ↑ "Qt-5.6-release - Qt Wiki". wiki.qt.io. Retrieved 2016-01-28.
- ↑ Qt Project contributors (9 September 2015). "New Features in Qt 5.6". Qt Project. Retrieved 12 September 2015.
- ↑ "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.
- ↑ "Qt in the European Space Agency".
- ↑ 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".
- ↑ "Panasonic selects Qt for HD video system".
- ↑ "Qt in IP Communications".
- ↑ "Qt in Home Media".
- ↑ "Qt helped Siemens deliver a C++ development platform for manufacturing software GUIs".
- ↑ "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".
- ↑ "Blizzard's additions/modifications to Qt".
- ↑ "Open Source - Electronic Arts".
- ↑ "Qt in Autodesk".
- ↑ "Qt in visual effects".
- ↑ "Qt delivered advanced, cross-platform C++ GUI for Mathematica’s development team".
- ↑ "Google Earth Includes a Web Browser". Googlesystem.blogspot.de. 15 June 2010. Retrieved 8 April 2013.
- ↑ Verzani, John. Getting Started with RStudio. O'Reilly Media, Inc. p. 4. ISBN 9781449309039.
- ↑ "10 Qt Use Cases You Didn’t Know".
- ↑ "Qt Interface".
- ↑ Mark Walton (2 November 2015). "AMD Radeon Software Crimson: A new name and a new look for Catalyst".
- ↑ "The KDE development platform".
- ↑ "Trolltech Releases Qt 4.0 | KDE.news". Dot.kde.org. Retrieved 13 November 2011.
- ↑ Niels Weber (23 June 2010). "Nokia Qt SDK 1.0 released". Labs.trolltech.com. 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.
- ↑ 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.
- ↑ "KDE Free Qt Foundation".
- ↑ "KDE Free Qt Foundation announcement". June 1998.
- ↑ "Software License Agreement" (PDF). Digia. April 13, 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 2012-03-13. 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.
- ↑ "Nokia Corporation Qt GPL Exception Version 1.3". Doc.trolltech.com. 22 July 1999. 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.
- ↑ Nystrom, Sebastian (7 March 2011). "Nokia and Digia working together to grow the Qt community". Retrieved 8 July 2011.
- ↑ "Qt open source licensing changed and product structure updated to strengthen community and extend adoption". The Qt Company. 2016-01-13. Retrieved 2016-01-17.
New versions of Qt will be licensed under a commercial license, GPLv2, GPLv3, and LGPLv3, but no longer under LGPLv2.1(...) LGPLv3 explicitly forbids the distribution of closed embedded devices.
Bibliography
Qt Wiki provides a comprehensive list of Enlgish books about Qt. 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.
External links
Wikimedia Commons has media related to Qt. |
Wikibooks has a book on the topic of: Qt |
|
|
|