Qt Meta Object Compiler Install Flash

Here's the documentation for current moc: Using the Meta-Object Compiler. The executable is located in the bin directory of your Qt installation (next to all the dlls). The executable is located in the bin directory of your Qt installation (next to all the dlls).

  1. Qt Creator Compiler Options
Makefile to build QT projects (Linux) without qmake
qt.mak
CC=g++
MOC=moc-qt4
CFLAGS=-Wall
SOURCES=hello.cc hello_cls.cc
MOC_HEADERS=hello_cls.h
EXECUTABLE=hello
INCDIRS=-I/usr/include/qt4 -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtCore
LIBS=-lQtCore -lQtGui
# Change postfixes
MOC_SOURCES=$(MOC_HEADERS:.h=.moc.cc)
OBJECTS=$(SOURCES:.cc=.o) $(MOC_SOURCES:.cc=.o)
all: $(EXECUTABLE)
@echo Done!
$(EXECUTABLE): $(OBJECTS)
$(CC)$^$(LIBS) -o $@
# Generate object files, rule to change postfix
%.o: %.cc
$(CC)$(CFLAGS)$(INCDIRS) -c $< -o $@
# Generate cc from h via Qt's Meta Object Compiler, rule to change postfix
%.moc.cc: %.h
$(MOC)$(INCDIRS)$< -o $@
.PHONY: tags clean
clean:
rm *.o
# Generate ctags file for all included files (autocomplete and jump to source)
tags:
gcc -M $(INCDIRS)$(SOURCES)
sed -e 's/[ ]/n/g'
sed -e '/^$$/d' -e '/.o:[ t]*$$/d'
ctags -L - --c++-kinds=+p --fields=+iaS --extra=+q

commented Feb 13, 2018

Cool. Could you update it to use with qt5?

commented May 2, 2018
edited

it would be cool to have it auto generate the ui_mainwindow.h file too
uic mainwindow.ui -o ui_mainwindow.h

commented Sep 7, 2019
edited

Cool. Could you update it to use with qt5?

This worked for me:

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment
(Redirected from Qt (toolkit))
Qt
GUI designing in Qt Creator using the embedded Qt Designer on Windows 7
Original author(s)Haavard Nord and Eirik Chambe-Eng[1]
Developer(s)
  • Trolltech (1991–2008)
  • Nokia (2008–2011)
  • Qt Project (2011–present)
  • Digia (2012–2014)
  • The Qt Company (2014–present)
Initial release20 May 1995; 24 years ago[1]
Stable release5.13[2](19 June 2019; 2 months ago)[±]
Repository
Written inC++
Operating systemAndroid, iOS, Linux (embedded, Wayland, X11), macOS, Windows, …[3]
PlatformCross-platform
TypeWidget toolkit and Application framework
LicenseQt Commercial License[4]
GPL 2.0, 3.0[5]
LGPL 3.0[6]
Websitewww.qt.io

Qt (pronounced 'cute'[7][8][9]) is a free and open-sourcewidget toolkit for creating graphical user interfaces as well as cross-platformapplications that run on various software and hardware platforms such as Linux, Windows, macOS, Android or embedded systems 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 by The Qt Company, a publicly listed company, and the Qt Project under open-source governance, involving individual developers and organizations working to advance Qt.[10][11][12] Qt is available under both commercial licenses[4] and open source[13]GPL 2.0, GPL 3.0, and LGPL 3.0 licenses.[5][6]

  • 3Qt in use
  • 4Qt software architecture
    • 4.2Qt modules
  • 5History of Qt

Purposes and abilities[edit]

Qt is used for developing graphical user interfaces (GUIs) and multi-platform applications that run on all major desktop platforms and most mobile or embedded platforms.Most GUI programs created with Qt have a native-looking interface, in which case Qt is classified as a widget toolkit. Also non-GUI programs can be developed, such as command-line tools and consoles for servers. An example of such a non-GUI program using Qt is the Cutelyst web framework.[14]

Qt supports various compilers, including the GCC C++ compiler and the Visual Studio suite and has extensive internationalization support. Qt also provides Qt Quick, that includes a declarativescripting language called QML that allows using JavaScript to provide the logic. With Qt Quick, rapid application development for mobile devices became possible, while logic can still be written with native code as well to achieve the best possible performance.

Other features include SQL database access, XML parsing, JSON parsing, thread management and network support.

Qt releases[edit]

The latest version is Qt 5.12 LTS, which was released on 6 December 2018.[15]It comes with several new features including Technology Preview of Qt for Python and of Qt for WebAssembly.

The current LTS version is Qt 5.12 LTS. It was released on 6 December 2018 and will be supported for 3 years.[16]

The initial release of Qt software was on 20 May 1995.

Qt in use[edit]

Free autocad books. In 2017, the Qt Company estimated a community of about 1 million developers worldwide[17] in over 70 industries.[18]

Desktop UIs[edit]

KDE's mascot Konqi showing his Qt heart

Graphical user-interfaces and desktop environments that utilize Qt/QML as widget toolkit:

  • KDE Plasma, a libre desktop environment for computers and tablets[19]
  • DDE (Deepin Desktop Environment) of Deepin Linux[20][21]
  • LXQt (Lightweight X11 Desktop Environment)
  • Lumina, a desktop environment designed for BSD-based TrueOS[22]
  • Unity8,[23] a Ubports maintained convergent desktop environment started by Canonical[24]
  • Trinity DE, a continuously developed fork based on KDE3[25]
  • NX-Desktop, a desktop-shell based on Plasma[26]
  • Be-shell, a simple shell based on KDE Frameworks[27]
  • Liquidshell, a shell based on QtWidgets[28]
  • LiriOS, a workspace shell built with Qt/QML[29]
  • SDDM, a display manager that is X11 and Wayland compatible written in QML
  • theShell, a desktop shell written in Qt[30]
Qt Meta Object Compiler Install Flash

Embedded and mobile UIs[edit]

  • Actively developed or maintained
    • AsteroidOS, an open source operating system designed for smartwatches
    • Avionics, Panasonic's in-flight entertainment system[31][32]
    • Blackberry 10, a touchscreen-based mobile OS by Blackberry Ltd.
    • Sailfish OS, a mobile operating system developed by Jolla
    • Glacier-, the Nemo Mobile UX-successor of MeeGo, based on Qt5 and Wayland[33]
    • Plasma Mobile, a touch-based GUI developed by KDE
    • LuneOS, community-driven successor for Palm/HP webOS
    • Ubuntu Touch, a phone UI developed by Ubports, originally by Canonical
    • Tesla Model S in-car UI[34]
    • webOS, a multitask operating system from LG for smart devices like TVs and smartwatches
    • Sky Q, the home entertainment system of Sky plc[35]
  • Available, but inactive
    • MeeGo handset & tablet UX
    • OPIE, a GUI for the Sharp Zaurus
    • Qtopia, a system by Nokia for embedded and mobile devices
    • Ultrahaptics,[36] haptic interface developer for a wide range of applications

Applications using Qt[edit]

Many notable open-source or proprietary cross-platform software are using Qt or QML:

Qt Creator Compiler Options

  • Adobe Photoshop Album[37]
  • Adobe Photoshop Elements[38]
  • AMD's Radeon Software Crimson Edition driver tool application.[39]
  • Autodesk Maya[40]
  • Autodesk 3ds Max[41]
  • Bitcoin Core, a bitcoin client
  • Bitcoin ABC, a bitcoin cash client
  • CryEngine V editor[42]
  • DaVinci Resolve, a video editor
  • Dolphin (emulator), an emulator for the Nintendo Wii and Nintendo GameCube systems.
  • Dorico notation software
  • Dragonframe[43] stop motion animation software
  • EAGLE by CadSoft Computer / Autodesk, an EDA application with schematic capture, PCB layout, auto-router and CAM features
  • FreeMat free open source numerical computing environment
  • Google Earth[44]
  • Krita graphics editing and digital painting software[45]
  • Mathematica, a mathematical symbolic computation program, sometimes termed a computer algebra system or program, used in many scientific, engineering, mathematical, and computing fields.[46]
  • OBS, a libre cross-platform screencast software
  • Orange data mining suite[47]
  • QGIS geographic information system[48]
  • QuiteRSS Feed Reader
  • Scribus desktop publishing software[49]
  • Sibelius music composition and notation software[50]
  • Source 2 engine tools[51] a 3D video game engine developed by Valve Corporation
  • Stellarium, a planetarium program
  • Subsurface, a software for logging and planning scuba dives initially designed and developed by Linus Torvalds[52]
  • Teamviewer, a computer software package for remote control, desktop sharing, online meetings, web conferencing and file transfer between computers[53]
  • Telegram, a messaging client available for Windows, Mac and Linux[54]
  • VirtualBox OS virtualization software[55]
  • VLC media player[56]
  • WPS Office[57]
  • XnView MP[58]

Software that was ported to Qt[edit]

There are cases where applications have ported their user interface code from another cross-platform toolkit to Qt to solve the problems they had with them:

Examples
  • Audacious – free and open-source audio player software
  • Wireshark – network packet analyzer
  • LXQt – desktop environment
  • Rosegarden – Digital Audio Workstation
  • Dolphin – video game console emulator for GameCube and Wii

Organizations using Qt[edit]

Qt is utilized by a wide range of companies and organizations such as

  • AMD[59]
  • Blizzard Entertainment[60]
  • BMW[61]
  • Crytek[citation needed]
  • Daimler AG[62][63]
  • Electronic Arts[64]
  • European Space Agency[65]
  • DreamWorks[66][67]
  • Danaher Corporation[citation needed]
  • GE Aviation[citation needed]
  • John Deere[citation needed]
  • LG[68]
  • Lucasfilm[69][70]
  • Luxoft[citation needed]
  • Microsoft[71]
  • Panasonic[72]
  • Philips[73]
  • Robert Bosch GmbH[74]
  • Samsung[75]
  • Siemens[76]
  • Tesla[77]
  • Tomtom[78]
  • Toon Boom Animation[citation needed]
  • Volvo[79]
  • German Air Traffic Control[80]
  • HP[81]
  • Walt Disney Animation Studios[82]
  • Valve Corporation.[83]

Qt software architecture[edit]

Example of Qt usage in Linux-based systems

Qt concepts[edit]

Qt is built on these 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 often.[84] 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[85] 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.
Language bindings
Qt can be used in several other programming languages like Python, Javascript, C# or Rust[86] via language bindings, see

Qt modules[edit]

Starting with Qt 4.0 the framework was split into individual modules.[87][88] With Qt 5.0 the architecture was modularized even further.[89][90] Qt is now split into essential and add-on modules.[91]

Qt essentials[edit]

ModuleDescription
Qt CoreThe 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 GUIThe central GUI module. In Qt 5 this module now depends on OpenGL, but no longer contains any widget classes.
Qt WidgetsContains classes for classic widget based GUI applications and the QSceneGraph classes. Was split off from QtGui in Qt 5.
Qt QMLModule for QML and JavaScript languages.
Qt QuickThe module for GUI application written using QML2.
Qt Quick ControlsWidget like controls for Qt Quick intended mainly for desktop applications.
Qt Quick LayoutsLayouts for arranging items in Qt Quick.
Qt NetworkNetwork abstraction layer. Complete with TCP, UDP, HTTP, SSL and since Qt 5.3 SPDY support.
Qt MultimediaClasses for audio, video, radio and camera functionality.
Qt Multimedia WidgetsThe widgets from Qt Multimedia.
Qt SQLContains classes for database integration using SQL.
Qt WebEngineA new set of Qt Widget and QML webview APIs based on Chromium.
Qt TestClasses for unit testing Qt applications and libraries.

Qt add-ons[edit]

ModuleDescription
Active QtClasses for applications which use ActiveX.
Qt BluetoothClasses accessing Bluetooth hardware.
Qt D-BusClasses for IPC using the D-Bus protocol.
Qt NFCClasses accessing NFC hardware. Only officially supported on BlackBerry hardware so far (or N9 in the MeeGo port).
Qt OpenGLLegacy module containing the OpenGL classes from Qt 4. In Qt 5 the similar functionality in Qt GUI is recommended.
Qt LocationClasses 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 ScriptLegacy module for scripting Qt application using ECMAScript/JavaScript. In Qt 5, using similar classes in Qt QML is recommended.
Qt SensorsClasses 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 PortClasses for access to hardware and virtual serial ports. Supported on Windows, Linux and macOS.
Qt WebChannelProvides access to Qt objects to HTML/Js over WebSockets.
Qt WebKitQt's WebKit implementation and API.
Qt WebKit WidgetsThe widget API for Qt WebKit
Qt WebSocketsProvides a WebSocket implementation.
Qt XMLLegacy module containing classes for SAX and DOM style XML APIs. Replaced with QXmlStreamReader and QXmlStreamWriter classes in Qt Core.
Qt XML PatternsSupport for XPath, XQuery, XSLT and XML Schema validation.

Editions[edit]

There are four editions of Qt available: Community, Indie Mobile, Professional and Enterprise.[92] 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. Enterprise Controls[92] are commercially sold by The Qt Company.

Supported platforms[edit]

Qt works on many different platforms; the following are officially supported:

PlatformDescription
Linux/Unix
X11 Qt for X Window System (Linux);[93]FreeBSD, NetBSD, OpenBSD, and DragonFly BSD have community support.
WaylandQt for Wayland (e.g. SailfishOS uses that, as it doesn't have X11).[94] Qt applications can switch between graphical backends like X and Wayland at load time with the -platform command line option.[95][96] This allows a seamless transition of Qt applications from X11 to Wayland.
AndroidQt for Android[97] (formerly known as Necessitas).[98]
Embedded LinuxQt for embedded platforms: personal digital assistant, smartphone, etc.[99] Exists as multiple platforms depending on display technology. DirectFB, LinuxFB and EGLFS (EGL Full Screen).
Microsoft platforms
WindowsQt for Microsoft Windows 7,[100]8 and 10[101]
Windows RTSupport for WinRT-based Windows 10 Mobile apps and Windows 10 IoT[102]
Apple platforms
macOSQt for Apple macOS; supports applications on Cocoa[103]
iOSQt for iOS platforms (iPhone, iPad)[104]
Other embedded platforms
IntegrityQt for Integrity[105]
QNXQt for QNX[106][107]
VxWorksQt for VxWorks.[108][109]

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. See also there for current community support for other lesser known platforms, such as SailfishOS.

Licensing[edit]

Qt is available under the following free software licenses:[13]GPL 2.0, GPL 3.0, LGPL 3.0 and LGPL 2.1 (with Qt special exception).[5][110] Note that some modules are available only under a GPL license, which means that applications which statically link to these modules need to comply with that license.[111][112]

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.

Qt tools[edit]

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.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).

History of Qt[edit]

Early developments[edit]

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][113] 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.[114][115][116] This license was viewed as not compliant with 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 available only 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[edit]

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,[117] which guarantees that Qt would fall under a BSD-style license should no free/open source version of Qt be released during 12 months.[118][119]

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

At the end of 2001, Trolltech released Qt 3.0, which added support for Mac OS X (now known as macOS). 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.[121] 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.[122][123] 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.[124] 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[125] 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[edit]

Nokia acquired Trolltech ASA on 17 June 2008 and changed the name first to Qt Software, then to Qt Development Frameworks.

Nokia focused on turning Qt into the main development platform for its devices, including a port to the SymbianS60 platform. Version 1.0 of the Nokia Qt SDK was released on 23 June 2010.[126] The source code was made available over Gitorious, a community oriented git source code repository, with a goal of creating a broader community using and improving Qt.

On 14 January 2009, Qt version 4.5 added another option, the LGPL,[127] to make Qt more attractive for both non-GPL open source projects and closed applications.[128]

In February 2011, Nokia announced its decision to drop Symbian technologies and base their future smartphones on the Windows Phone platform instead (and since then support for that platform has also been dropped).[129] 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[edit]

In March 2011, Nokia sold the commercial licensing part of Qt to Digia creating Qt Commercial.[130] In August 2012, Digia announced that it would acquire Qt from Nokia.[131] The Qt team at Digia started their work in September 2012.[132] 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[133] related to Qt. In May 2016, Digia and Qt demerged completely into two independent companies.[134]

The Qt Project and open governance[edit]

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.[135] Qt 5 brings significant improvements to the speed and ease of developing user interfaces.[136]

Framework development of Qt 5 moved to open governance at qt-project.org, which made it possible for developers outside Digia to submit patches for review.[137]

Qt contributors[edit]

Qt creator no compiler
Distribution of non-Digia Qt contributors (2013, Week 18)

Aside from The Qt Company, many organizations and individuals using Qt as their development platform participate in the open development of Qt via the Qt Project.[138]

One such Qt contributor is Klarälvdalens Datakonsult AB, a Swedish Qt consulting company.[139] KDAB is involved in many areas, including maintenance of several components.[140][141]

Together with RIM/BlackBerry, KDAB is maintaining the QNX and BlackBerry 10 ports of Qt.[138][142]

Another participator is Intel, contributing for example Wayland support.[143]AudioCodes maintains IBM ClearCase support in Qt Creator.[144]

As a heavy user of Qt, the KDE project submits many patches and features from its developer library KDE Frameworks back to Qt.[145]

See also[edit]

Bibliography[edit]

Qt Wiki provides a comprehensive list of English books about Qt.[146] 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. ISBN978-0-13-235416-5.
  • Summerfield, Mark (23 August 2010). 'Advanced Qt Programming: Creating Great Software with C++ and Qt 4' (1st ed.). Addison-Wesley. ISBN978-0-321-63590-7.
  • Fitzek, Frank H. P.; Mikkonen, Tommi; Torp, Tony (17 May 2010). 'Qt for Symbian' (1st ed.). Wiley. ISBN0-470-75010-3. Archived from the original on 19 December 2009.Cite uses deprecated parameter deadurl= (help)
  • Summerfield, Mark (28 October 2007). 'Rapid GUI Programming with Python and Qt' (1st ed.). Prentice Hall. ISBN978-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. ISBN978-1-59327-147-3.
  • Thelin, Johan (3 August 2007). 'Foundations of Qt Development' (1st ed.). Apress. ISBN978-1-59059-831-3.
  • Dalheimer, Matthias (January 2002). 'Programming with Qt' (2nd ed.). O'Reilly Media. ISBN978-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. ISBN978-0-13-187905-8.

References[edit]

  1. ^ abcdeBlanchette, 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.
  2. ^Knoll, Lars (19 June 2019). 'Qt 5.13 Released'. Qt Blog. The Qt Company. Retrieved 19 June 2019.
  3. ^'Supported Platforms'.
  4. ^ abc'Licenses'.
  5. ^ abc'New agreement with the KDE Free Qt Foundation and changes for the open source version'. The Qt Company.
  6. ^ ab'Adding LGPL v3 to Qt'. 20 August 2014.
  7. ^'Qt - About Us'. Archived from the original on 22 February 2017.
  8. ^'That Smartphone Is So Qt'. Ashlee Vance. 16 February 2010. Retrieved 19 February 2010.
  9. ^'The Qt 4 Dance'(video). Retrieved 7 September 2015.
  10. ^Pintscher, Lydia (21 October 2011). 'KDE Applauds Qt's Move to Open Governance'. KDE.News. Retrieved 8 May 2013.
  11. ^Meyer, David (24 October 2011). 'Nokia gives Qt open-source governance'. ZDNet. Retrieved 8 May 2013.
  12. ^Knoll, Lars (6 August 2014). 'Defragmenting Qt and Uniting Our Ecosystem'.
  13. ^ abCompany, The Qt. 'Legal - FAQ - Qt'. www.qt.io. Retrieved 25 April 2019.
  14. ^'Cutelyst - Home'.
  15. ^Heikkinen, Jani (6 December 2018). 'Qt 5.12 Release'. The Qt Company. Retrieved 21 February 2019.
  16. ^Leppälä, Kimmo (7 June 2017). 'Renewed Qt Support Services'. Qt Project. Retrieved 8 June 2017.
  17. ^'QT GROUP OYJ - Managers' Transactions, 12/4/2017'. 12 April 2017. Retrieved 8 June 2017.
  18. ^Shneor, Rotem (2012). 'Handbook of Research on Born Globals, Chapter 10: Born Global Firms, Internet, and New Forms of Internationalization'. Retrieved 8 June 2017.
  19. ^'The KDE development platform'.
  20. ^Marius Nestor (24 December 2015). 'Beautifully Crafted Deepin 15 Linux OS Drops Ubuntu for Debian Sid, RC Out Now'. The Deepin desktop environment has been refactored in the latest Qt GUI toolkit, replacing the HTML5 and WebKit frameworks, while Go is still used for the backend.
  21. ^'深度操作系统 15 RC ——用真心捕获你的芳心 – 深度科技社区'. Deepin.org. 23 December 2015. Retrieved 15 June 2017.
  22. ^'Lumina Homepage'.
  23. ^'Unity8 – A convergent desktop environment'. Unity8.io. Retrieved 7 January 2019.
  24. ^'Unity8 Code Repository on Github'. Github.com.
  25. ^'About Trinity'. www.trinitydesktop.org. Retrieved 25 April 2019.
  26. ^'NX Desktop'. GitHub. Retrieved 25 April 2019.
  27. ^'BE::Shell / Wiki / Home'. sourceforge.net. Retrieved 25 April 2019.
  28. ^'Liquidshell: KDE's upcoming lower resource replacement of Plasma'. Manjaro Linux Forum. 10 November 2017. Retrieved 25 April 2019.
  29. ^'LiriOS Shell on Github'.
  30. ^'Desktop Shell written in Qt. Contribute to vicr123/theshell development by creating an account on GitHub'. 23 April 2019. Retrieved 25 April 2019 – via GitHub.
  31. ^'X Series Qt-based graphical user interface'.
  32. ^'Avionics powered by Qt'.
  33. ^'Next interface for Nemo mobile'.
  34. ^'Qt Interface'.
  35. ^'Sky teams up with The QT Company on Sky Q'.
  36. ^'Ultrahaptics - A remarkable connection with technology'. Ultrahaptics. Retrieved 15 June 2017.
  37. ^'C++ GUI Programming with Qt4 By Jasmin Blanchette, Mark Summerfield'.
  38. ^'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'.
  39. ^Walton, Mark (2 November 2015). 'AMD Radeon Software Crimson: A new name and a new look for Catalyst'.
  40. ^'Qt in Autodesk'. Archived from the original on 23 July 2011.Cite uses deprecated parameter deadurl= (help)
  41. ^'What's New: 3ds Max 2018 SDK'. help.autodesk.com. Retrieved 14 June 2019. 3ds Max 2018 now uses Qt 5.6.2, and plug-ins can build UIs in Qt using the standard GPL Qt 5.6.2 distribution, and the Visual Studio 2015 Qt add-on
  42. ^'An update on our Sandbox interface and the Legacy Editor'.
  43. ^'Dyami Caliri, Qt Champion 2014'.
  44. ^'Google Earth Includes a Web Browser'. Googlesystem.Blogspot.de. 15 June 2010. Retrieved 8 April 2013.
  45. ^'Krita 3.0 Released'. 31 May 2016. Retrieved 5 September 2017.
  46. ^'Mathematica by Wolfram Research'. Archived from the original on 29 May 2013.Cite uses deprecated parameter deadurl= (help)CS1 maint: BOT: original-url status unknown (link)
  47. ^'Orange3 Data Mining Suite'.
  48. ^'PyQGIS Developer Cookbook: Introduction'. qgis.org. Retrieved 1 March 2017. the whole QGIS code depends on Qt libraries
  49. ^'Scribus Development'.
  50. ^'Sibelius - the leading music composition and notation software'. www.sibelius.com. Retrieved 19 October 2016.
  51. ^'Panorama - Valve Developer Community'. Retrieved 28 April 2017.
  52. ^'Subsurface 4.0 has been released'. 15 December 2013.
  53. ^'TeamViewer 13'.
  54. ^'Telegram desktop messaging app'.
  55. ^'VBoxMainLogging - Oracle VM VirtualBox'.
  56. ^'Qt Interface'.
  57. ^wps-community (14 June 2017). 'wps_i18n: KSO/WPS internationalization support'. Retrieved 15 June 2017 – via GitHub.
  58. ^'XnView MP'.
  59. ^'AMD's Radeon Software Crimson Edition'. Retrieved 30 June 2016.
  60. ^'Blizzard's additions/modifications to Qt'.
  61. ^QtWS16- Qt Creator as BMW Car IT Automotive IDE, Helio Chissini de Castro, BMW Car IT.
  62. ^'Qt selected for In-Vehicle Infotainment (IVI) Systems by leading automotive OEMs' (Press release).
  63. ^Built with Qt: Mercedes-Benz Generation EQ.
  64. ^'Open Source - Electronic Arts'.
  65. ^'Qt in the European Space Agency'. Archived from the original on 23 July 2011.Cite uses deprecated parameter deadurl= (help)
  66. ^Behind the Scenes at DreamWorks Animation: Making the Apps that Make the Movies.
  67. ^UI & System Design Challenges for the NxG Lighting Tool.
  68. ^https://www.theverge.com/2019/6/26/18759414/lg-qt-partnership-webos-cars-automotive-robots-smart-home-devices
  69. ^'Lucasfilm Entertainment Company Ltd'.
  70. ^'Qt in Visual Effects'. Archived from the original on 23 July 2011.Cite uses deprecated parameter deadurl= (help)
  71. ^'Qt World Summit talk'.
  72. ^'Panasonic selects Qt for HD video system'. Archived from the original on 23 July 2011.Cite uses deprecated parameter deadurl= (help)
  73. ^'Qt in IP Communications'. Archived from the original on 23 July 2011.Cite uses deprecated parameter deadurl= (help)
  74. ^'Bosch DruckMessWT built with Qt'. January 2019.
  75. ^'Qt in Home Media'. Archived from the original on 23 July 2011.Cite uses deprecated parameter deadurl= (help)
  76. ^'Qt helped Siemens deliver a C++ development platform for manufacturing software GUIs'. Archived from the original on 14 July 2011.Cite uses deprecated parameter deadurl= (help)
  77. ^Fred Lambert (19 May 2018). 'Tesla releases some of its software to comply with open source licences'.
  78. ^'TomTom Builds Automotive HMIs with Qt'. Retrieved 20 May 2019.
  79. ^'Volvo Mobility Systems'. Archived from the original on 14 July 2011.
  80. ^'10 Qt use cases you didn't know'. Archived from the original on 30 July 2013.
  81. ^'Developing Innovative Desktop and Embedded HP Products with Qt'. Archived from the original on 6 May 2014.
  82. ^'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 uses deprecated parameter deadurl= (help)
  83. ^'Qt - Valve Developer Community'. Retrieved 28 April 2017.
  84. ^'Library'. Digia. Archived from the original on 1 November 2013. 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.Cite uses deprecated parameter deadurl= (help)
  85. ^'Signals & Slots - QtCore 5.1'. Qt Project. 4 July 2013. Retrieved 10 April 2015.
  86. ^'Qt applications with Cargo'. www.vandenoever.info. 30 October 2018. Retrieved 25 April 2019.
  87. ^'Trolltech Releases Qt 4.0'. KDE. 28 June 2005. Retrieved 5 August 2013.
  88. ^'All Modules Documentation'. Qt Project. Retrieved 8 April 2013.
  89. ^Qt Blog (19 December 2012). 'Introducing Qt 5.0 Qt Blog'. Digia. Retrieved 8 April 2013.
  90. ^Kyle Morris (24 December 2012). 'Qt 5.0 - Congratulations to the Qt Project'. KDE. Retrieved 5 August 2013.
  91. ^'QtDoc 5.1: All Modules'. Qt Project. Retrieved 8 April 2013.
  92. ^ ab'Qt Download page'. Download Qt. The Qt Company. Retrieved 21 November 2014.
  93. ^'Qt Wiki – Support for Linux/X11'. Qt Project. 24 March 2016. Retrieved 27 July 2019.
  94. ^Lind, Jørgen (18 March 2011). 'Multi-process Lighthouse'. Qt Project. Retrieved 21 August 2013.
  95. ^'Getting started with Lighthouse'. Retrieved 25 November 2011.
  96. ^Høgsberg, Kristian (25 January 2011). 'Add wayland lighthouse plugin'. Archived from the original on 3 February 2016.Cite uses deprecated parameter deadurl= (help)
  97. ^'New Features in Qt 5.1 - Support for New Platforms'. Digia. 3 July 2013. Retrieved 10 April 2015.
  98. ^'Necessitas project'. Retrieved 10 April 2015.
  99. ^'Qt Wiki – Support for Embedded Linux'. Qt Project. 12 August 2011. Retrieved 10 April 2015.
  100. ^'Qt Wiki – Support for Windows'. Qt Project. 11 August 2011. Retrieved 11 August 2013.
  101. ^'Windows 10 Support in Qt'. The Qt Company. 29 April 2015. Retrieved 28 January 2016.
  102. ^'Qt for WinRT'. Qt Project. Retrieved 9 September 2014.
  103. ^'Qt Wiki – Support for OS X'. Qt Project. 14 August 2011. Retrieved 21 August 2013.
  104. ^'Supported Platforms'. Retrieved 1 February 2014.
  105. ^'Qt Product pages, Supported platforms'. Qt - Product - Qt Framework. The Qt Company. Retrieved 21 November 2014.
  106. ^Katherine Barrios (29 November 2011). 'Qt Commercial Formally Supports QNX Qt Blog'. Retrieved 13 March 2018.
  107. ^'Platform and Compiler Notes - QNX Qt 5.10'.
  108. ^Tuukka Turunen (28 June 2012). 'Qt Commercial for VxWorks Qt Blog'. Retrieved 13 March 2018.
  109. ^'Qt for VxWorks Qt 5.10'.
  110. ^'Digia Qt LGPL Exception version 1.1'.
  111. ^'Qt Licensing'. The Qt Company. Retrieved 7 January 2017.
  112. ^'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.
  113. ^'Qt - Qt20'. Qt.
  114. ^'Qt Free Edition License'. Trolltech. 1992. Archived from the original on 14 October 2016. Retrieved 14 October 2016.Cite uses deprecated parameter dead-url= (help)
  115. ^'Happy 20th Anniversary Qt!'. Qt Blog.
  116. ^'Qt framework celebrates its 20th anniversary'. SD Times.
  117. ^'KDE Free Qt Foundation'.
  118. ^'KDE Free Qt Foundation announcement'. June 1998.
  119. ^'Software License Agreement'(PDF). Digia. 13 April 2013.
  120. ^'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.
  121. ^'Q./Windows Edition history'. 5 June 2006. Archived from the original on 31 July 2010.
  122. ^E-mail to the kde-cygwin mailing list by Chris January, 4 February 2003
  123. ^'Qt Non-commercial FAQ'. Trolltech. Archived from the original on 5 October 2003.
  124. ^'Trolltech Releases Qt 4.0 KDE.news'. KDE.News. Retrieved 13 November 2011.
  125. ^'Nokia Corporation Qt GPL Exception Version 1.3'. Doc.trolltech.com. 22 July 1999. Retrieved 13 November 2011.
  126. ^Weber, Niels (23 June 2010). 'Nokia Qt SDK 1.0 released'. Labs.trolltech.com. Retrieved 13 November 2011.
  127. ^Nyström, Sebastian (14 January 2009). 'Nokia to license Qt under LGPL'. Retrieved 17 September 2013.
  128. ^'ICS Whitepaper on the Implications of Qt under LGPL for Commercial and Government users'(PDF). Retrieved 13 November 2011.
  129. ^'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.
  130. ^Nystrom, Sebastian (7 March 2011). 'Nokia and Digia working together to grow the Qt community'. Retrieved 8 July 2011.
  131. ^Digia Plc (9 August 2012). 'Digia to acquire Qt from Nokia'. Digia Plc. Retrieved 17 October 2014.
  132. ^Digia Plc (18 September 2012). 'The journey starts today'. Digia Plc. Retrieved 17 October 2014.
  133. ^'TMview search result shown on September 12th, 2016'. TMDN.org. Retrieved 15 June 2017.
  134. ^'Digia and Qt have demerged into two companies – Digia's new strategy's main themes revealed'. Digia. Retrieved 15 June 2017.
  135. ^'Concern about removal of QWidget classes'. Qt5-feedback (Mailing list). 7 October 2011.
  136. ^Knoll, Lars (9 May 2011). 'Thoughts about Qt 5'. Digia. Retrieved 9 May 2011.
  137. ^Knoll, Lars (21 October 2011). 'The Qt Project is live!'. Nokia. Retrieved 8 February 2012.
  138. ^ abMacieira, Thiago. 'Qt Project Statistics'. Thiago Macieira's blog. Macieira.org. Retrieved 8 May 2013.
  139. ^'contributions to Qt 5.0 (part 1)'. KDAB. 20 December 2012. Retrieved 8 May 2013.
  140. ^'contributions to Qt 5.0 (part 2)'. KDAB. 21 December 2012. Retrieved 8 May 2013.
  141. ^'Maintaining Qt3D'. KDAB. 21 December 2012. Retrieved 8 May 2013.
  142. ^'Qt5 on the QNX operating system'. KDAB. 19 April 2012. Retrieved 8 May 2013.
  143. ^'[Phoronix] Qt Is Now Drawing On Wayland'. Phoronix.com. 21 September 2010. Retrieved 8 May 2013.
  144. ^'Maintainers Qt Wiki'. Qt Project. 12 April 2013. Retrieved 8 May 2013.
  145. ^'Frameworks/Epics/Contributions to Qt5'. KDE Community Wiki. Retrieved 27 April 2015.
  146. ^'Books - Qt Wiki'. wiki.Qt.io. Retrieved 15 June 2017.

External links[edit]

Wikimedia Commons has media related to Qt.
Wikibooks has a book on the topic of: Qt
  • Official website
Retrieved from 'https://en.wikipedia.org/w/index.php?title=Qt_(software)&oldid=914580140'
Posted :