About Qt: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
(text improvements)
(typo)
Line 8: Line 8:
Development of Qt was started in 1990 by the Norwegian programmers Eirik Chambe-Eng and Haavard Nord. Their company Trolltech, that sold Qt licenses and provided support, went through several acquisitions over the years. Today former Trolltech is named [http://qt.oi The Qt Company] and is a wholly owned subsidiary of [http://www.digia.com/ Digia Plc.], Finland. Although The Qt Company is the main driver behind Qt, Qt is now developed by a bigger alliance: The Qt Project. It consists of many companies and individuals around the globe and follows a meriocratic [[The Qt Governance Model|governance model]].  
Development of Qt was started in 1990 by the Norwegian programmers Eirik Chambe-Eng and Haavard Nord. Their company Trolltech, that sold Qt licenses and provided support, went through several acquisitions over the years. Today former Trolltech is named [http://qt.oi The Qt Company] and is a wholly owned subsidiary of [http://www.digia.com/ Digia Plc.], Finland. Although The Qt Company is the main driver behind Qt, Qt is now developed by a bigger alliance: The Qt Project. It consists of many companies and individuals around the globe and follows a meriocratic [[The Qt Governance Model|governance model]].  


==Licence==
==License==
Qt is available under various licenses: The Qt Company [http://www.qt.io/download/ sells commercial licenses], but Qt is also available as [http://en.wikipedia.org/wiki/Free_software free software] under several versions of the GPL and the LGPL ([http://www.qt.io/FAQ/ Licensing FAQ]).
Qt is available under various licenses: The Qt Company [http://www.qt.io/download/ sells commercial licenses], but Qt is also available as [http://en.wikipedia.org/wiki/Free_software free software] under several versions of the GPL and the LGPL ([http://www.qt.io/FAQ/ Licensing FAQ]).



Revision as of 17:16, 4 June 2015

En Ar Bg De El Es Fa Fi Fr Hi Hu It Ja Kn Ko Ms Nl Pl Pt Ru Sq Th Tr Uk Zh

What is Qt?

Qt is a cross-platform application development framework for desktop, embedded and mobile. Supported Platforms include Linux, OS X, Windows, VxWorks, QNX, Android, iOS, BlackBerry, Sailfish OS and others.

Qt is not a programming language by its on. It is a framework written in C++. A preprocessor, the MOC (Meta-Object Compiler), is used to extend the C++ language with features like signals and slots. At compile-time the MOC parses the source files written in Qt-extended C++ and generates standard compliant C++ sources from them. Thus the framework itself and applications using it can be compiled by any standard compliant C++ compiler like Clang, GCC, ICC, MinGW and MSVC.

The Qt Company and The Qt Project

Development of Qt was started in 1990 by the Norwegian programmers Eirik Chambe-Eng and Haavard Nord. Their company Trolltech, that sold Qt licenses and provided support, went through several acquisitions over the years. Today former Trolltech is named The Qt Company and is a wholly owned subsidiary of Digia Plc., Finland. Although The Qt Company is the main driver behind Qt, Qt is now developed by a bigger alliance: The Qt Project. It consists of many companies and individuals around the globe and follows a meriocratic governance model.

License

Qt is available under various licenses: The Qt Company sells commercial licenses, but Qt is also available as free software under several versions of the GPL and the LGPL (Licensing FAQ).

Build System

Although any build system can be used with Qt, Qt brings its own qmake. It is a cross-platform front-end for platform-native build sytems, like GNU Make, Visual Studio and Xcode.

IDE

Qt comes with its own Integrated Development Environment (IDE), named Qt Creator. It runs on Linux, OS X and Windows and offers intelligent code completion, syntax highlighting, an integrated help system, debugger and profiler integration and also integration for all major version control systems (e.g. git, Bazaar). In addition to Qt Creator developers on Windows can also use Qt's Visual_Studio_Add-in. Other IDEs (e.g. KDevelop on KDE) can also be used. But of course it is in no way mandatory to use any IDE at all.

Internationalization and Localization

Qt features excellent support for internationalization (i18n) and localization (l10n). The tool Qt Linguist and its companions lupdate, lrelease and lconvert make it easy to translate applications to locale languages. Qt supports most languages and writing systems that are in use today. For a complete listing see the corresponding manual pages.

Widgets

With Qt, GUIs can be written directly in C++ using its Widgets module. Qt also comes with an interactive graphical tool called Qt Designer which functions as a code generator for Widgets based GUIs. Qt Designer can be used stand-alone but is also integrated into Qt Creator.

QtQuick

Another way to write GUIs with Qt is to use the QtQuick module. GUIs using QtQuick are written in QML. QML is a declarative object description language that integrates Javascript for procedural programming. QtQuick provides the necessary modules for GUI development with QML. It is possible to write whole applications in QML only, but usually only the GUI is written in QML and the application's backend is implemented in C++ (see Integrating QML and C++). Also Qt Creator features an integrated QtQuick GUI designer and profiler.

More Modules

Not being limited to GUIs, Qt contains modules for cross-platform development with: networks, databases, OpenGL, web content, special hardware (like sensors, Bluetooth, serial ports, NFC, touch devices, graphics tablets), XML and JSON processing, printing and PDF generation. Even more modules are commercially available from The Qt Company and various others.

Language Bindings

Although applications using Qt are usually written in C++ and QML bindings to other languages exist. These are not part of Qt but are provided by various third parties. Riverbank Computing for example provides commercial and free software Python bindings (PyQt). For more language bindings see Category:LanguageBindings.



Statistics

  • 1 million downloads of Qt 5.3 measured just over a month after launch.[1]
  • 250+ commits by 60+ contributors per week[2]
  • Leading companies in over 70 industries use Qt to power millions of devices and applications.[3]
  • Community partners[4]:
    • FRUCT (Finnish-Russian University Cooperation in Telecommunications)
    • KDE e.V. (non-profit organization of KDE community members)

History

Qt 20years infographic big.jpg
Qt-history-logos 1995-2015.gif
  • “In the summer of 1990, Haavard [Nord] and Eirik [Chambe-Eng] were working together on a C++ database application for ultrasound images. The system needed to be able to run with a GUI on Unix, Macintosh, and Windows. One day that summer, Haavard and Eirik went outside to enjoy the sunshine, and as they sat on a park bench, Haavard said, “We need an object-oriented display system.” The resulting discussion laid the intellectual foundation for the object-oriented cross-platform GUI framework they would soon go on to build.”[5]
  • Release history

References

External links