Qt 4.8
qdecorationfactory_qws.cpp
Go to the documentation of this file.
1 /****************************************************************************
2 **
3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the QtGui module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia. For licensing terms and
14 ** conditions see http://qt.digia.com/licensing. For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file. Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights. These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file. Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41 
42 #include "qdecorationfactory_qws.h"
43 #include "qdecorationplugin_qws.h"
44 #include "private/qfactoryloader_p.h"
45 #include "qmutex.h"
46 
47 #include "qapplication.h"
48 #include "qdecorationdefault_qws.h"
49 #include "qdecorationwindows_qws.h"
50 #include "qdecorationstyled_qws.h"
51 
53 
54 #ifndef QT_NO_LIBRARY
57  QLatin1String("/decorations"), Qt::CaseInsensitive))
58 #endif
59 
60 
61 
99 {
100  QDecoration *ret = 0;
101  QString decoration = key.toLower();
102 #ifndef QT_NO_QWS_DECORATION_DEFAULT
103  if (decoration == QLatin1String("default"))
104  ret = new QDecorationDefault;
105  else
106 #endif
107 #ifndef QT_NO_QWS_DECORATION_WINDOWS
108  if (decoration == QLatin1String("windows"))
109  ret = new QDecorationWindows;
110  else
111 #endif
112 #ifndef QT_NO_QWS_DECORATION_STYLED
113  if (decoration == QLatin1String("styled"))
114  ret = new QDecorationStyled;
115  else
116 #endif
117  { } // Keep these here - they make the #ifdefery above work
118 #ifndef QT_NO_LIBRARY
119  if (!ret) {
120  if (QDecorationFactoryInterface *factory = qobject_cast<QDecorationFactoryInterface*>(loader()->instance(decoration))) {
121  ret = factory->create(decoration);
122  }
123  }
124 #endif
125  return ret;
126 }
127 
134 {
135  QStringList list;
136 #ifndef QT_NO_QWS_DECORATION_STYLED
137  list << QLatin1String("Styled");
138 #endif
139 #ifndef QT_NO_QWS_DECORATION_DEFAULT
140  list << QLatin1String("Default");
141 #endif
142 #ifndef QT_NO_QWS_DECORATION_WINDOWS
143  list << QLatin1String("Windows");
144 #endif
145 
146 #if !defined(Q_OS_WIN32) || defined(QT_MAKEDLL)
147 #ifndef QT_NO_LIBRARY
148  QStringList plugins = loader()->keys();
149  for (int i = 0; i < plugins.size(); ++i) {
150  if (!list.contains(plugins.at(i)))
151  list += plugins.at(i);
152  }
153 #endif //QT_NO_LIBRARY
154 #endif //QT_MAKEDLL
155 
156  return list;
157 }
158 
#define QT_END_NAMESPACE
This macro expands to.
Definition: qglobal.h:90
QLatin1String(DBUS_INTERFACE_DBUS))) Q_GLOBAL_STATIC_WITH_ARGS(QString
The QString class provides a Unicode character string.
Definition: qstring.h:83
#define QDecorationFactoryInterface_iid
The QDecoration class is a base class for window decorations in Qt for Embedded Linux.
static QStringList keys()
Returns the list of valid keys, i.e., the available decorations.
#define QT_BEGIN_NAMESPACE
This macro expands to.
Definition: qglobal.h:89
const T & at(int i) const
Returns the item at index position i in the list.
Definition: qlist.h:468
The QStringList class provides a list of strings.
Definition: qstringlist.h:66
QBool contains(const QString &str, Qt::CaseSensitivity cs=Qt::CaseSensitive) const
Returns true if the list contains the string str; otherwise returns false.
Definition: qstringlist.h:172
static QDecoration * create(const QString &)
int key
QString toLower() const Q_REQUIRED_RESULT
Returns a lowercase copy of the string.
Definition: qstring.cpp:5389
int size() const
Returns the number of items in the list.
Definition: qlist.h:137
The QDecorationDefault class is a base class providing default window decorations.
#define Q_GLOBAL_STATIC_WITH_ARGS(TYPE, NAME, ARGS)
Declares a global static variable with the specified type and name.
Definition: qglobal.h:1982