Replace 'i < len-1 && func(i+1)' by 'i+1 < len && func(i+1)'
[profile/ivi/qtbase.git] / src / gui / painting / qgraphicssystemfactory.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the QtGui module of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qgraphicssystemfactory_p.h"
43 #include "qgraphicssystemplugin_p.h"
44 #include "private/qfactoryloader_p.h"
45 #include "qmutex.h"
46
47 #include "qapplication.h"
48 #include <private/qapplication_p.h>
49 #include "qgraphicssystem_raster_p.h"
50 #include "qgraphicssystem_runtime_p.h"
51 #include "qdebug.h"
52
53 QT_BEGIN_NAMESPACE
54
55 #ifndef QT_NO_LIBRARY
56 Q_GLOBAL_STATIC_WITH_ARGS(QFactoryLoader, loader,
57     (QGraphicsSystemFactoryInterface_iid, QLatin1String("/graphicssystems"), Qt::CaseInsensitive))
58 #endif
59
60 QGraphicsSystem *QGraphicsSystemFactory::create(const QString& key)
61 {
62     QGraphicsSystem *ret = 0;
63     QString system = key.toLower();
64
65 #if defined (QT_GRAPHICSSYSTEM_OPENGL)
66     if (system.isEmpty()) {
67         system = QLatin1String("opengl");
68     }
69 #elif defined (QT_GRAPHICSSYSTEM_OPENVG)
70     if (system.isEmpty()) {
71         system = QLatin1String("openvg");
72     }
73 #elif defined (QT_GRAPHICSSYSTEM_RUNTIME)
74     if (system.isEmpty()) {
75         system = QLatin1String("runtime");
76     }
77 #elif defined (QT_GRAPHICSSYSTEM_RASTER) && !defined(Q_WS_WIN) && !defined(Q_OS_SYMBIAN) || defined(Q_WS_X11) || (defined (Q_WS_MAC) && defined(QT_MAC_USE_COCOA))
78     if (system.isEmpty()) {
79         system = QLatin1String("raster");
80     }
81 #endif
82
83     QApplicationPrivate::graphics_system_name = system;
84     if (system == QLatin1String("raster"))
85         return new QRasterGraphicsSystem;
86     else if (system == QLatin1String("runtime"))
87         return new QRuntimeGraphicsSystem;
88     else if (system.isEmpty() || system == QLatin1String("native"))
89         return 0;
90
91 #ifndef QT_NO_LIBRARY
92     if (!ret) {
93         if (QGraphicsSystemFactoryInterface *factory = qobject_cast<QGraphicsSystemFactoryInterface*>(loader()->instance(system)))
94             ret = factory->create(system);
95     }
96 #endif
97
98     if (!ret)
99         qWarning() << "Unable to load graphicssystem" << system;
100
101     return ret;
102 }
103
104 /*!
105     Returns the list of valid keys, i.e. the keys this factory can
106     create styles for.
107
108     \sa create()
109 */
110 QStringList QGraphicsSystemFactory::keys()
111 {
112 #ifndef QT_NO_LIBRARY
113     QStringList list = loader()->keys();
114 #else
115     QStringList list;
116 #endif
117     if (!list.contains(QLatin1String("Raster")))
118         list << QLatin1String("raster");
119     return list;
120 }
121
122 QT_END_NAMESPACE
123