1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** All rights reserved.
|
---|
5 | ** Contact: Nokia Corporation ([email protected])
|
---|
6 | **
|
---|
7 | ** This file is part of the documentation of the Qt Toolkit.
|
---|
8 | **
|
---|
9 | ** $QT_BEGIN_LICENSE:FDL$
|
---|
10 | ** Commercial Usage
|
---|
11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
13 | ** Software or, alternatively, in accordance with the terms contained in a
|
---|
14 | ** written agreement between you and Nokia.
|
---|
15 | **
|
---|
16 | ** GNU Free Documentation License
|
---|
17 | ** Alternatively, this file may be used under the terms of the GNU Free
|
---|
18 | ** Documentation License version 1.3 as published by the Free Software
|
---|
19 | ** Foundation and appearing in the file included in the packaging of this
|
---|
20 | ** file.
|
---|
21 | **
|
---|
22 | ** If you have questions regarding the use of this file, please contact
|
---|
23 | ** Nokia at [email protected].
|
---|
24 | ** $QT_END_LICENSE$
|
---|
25 | **
|
---|
26 | ****************************************************************************/
|
---|
27 |
|
---|
28 | /*!
|
---|
29 | \group qt-embedded
|
---|
30 | \title Qt for Embedded Platforms
|
---|
31 | \brief Documents related to Qt for Embedded Platforms.
|
---|
32 | \ingroup platform-specific
|
---|
33 |
|
---|
34 | Qt is available for embedded platforms and devices as well as for a number
|
---|
35 | of desktop platforms. The features provided for each platform depend on the
|
---|
36 | capabilities and architecture of the operating system.
|
---|
37 |
|
---|
38 | \image qt-embedded-architecture.png
|
---|
39 |
|
---|
40 | Currently, three embedded platforms are supported by Qt:
|
---|
41 |
|
---|
42 | \table 90%
|
---|
43 | \header \o Embedded Linux \o Windows CE \o Symbian platform
|
---|
44 | \row
|
---|
45 | \o \l{Qt for Embedded Linux} is designed to be used on Linux devices
|
---|
46 | without X11 or existing graphical environments. This flavor of
|
---|
47 | Qt includes a framework for creating both applications and an
|
---|
48 | environment for them. As a result, it includes features for
|
---|
49 | window management, inter-process communication and facilities
|
---|
50 | for handling input and display devices.
|
---|
51 | \o \l{Qt for Windows CE} is used to create applications running in
|
---|
52 | existing Windows CE and Windows Mobile environments.
|
---|
53 | Applications use the appropriate style for the embedded
|
---|
54 | environment and use native features, such as menus, to conform
|
---|
55 | to the native style guidelines.
|
---|
56 | \o \l{Qt for the Symbian platform} is used to create applications running
|
---|
57 | in existing Symbian platform environments. Applications use the appropriate
|
---|
58 | style for the embedded environment and use native features, such as menus,
|
---|
59 | to conform to the native style guidelines.
|
---|
60 | \endtable
|
---|
61 | */
|
---|