/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the plugins of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL21$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see http://www.qt.io/terms-conditions. For further ** information use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** As a special exception, The Qt Company gives you certain additional ** rights. These rights are described in The Qt Company LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qminimalintegration.h" #include "qminimalbackingstore.h" #include #include #include #include #if !defined(Q_OS_WIN) #include #elif defined(Q_OS_WINRT) #include #else #include #endif QT_BEGIN_NAMESPACE static const char debugBackingStoreEnvironmentVariable[] = "QT_DEBUG_BACKINGSTORE"; static inline unsigned parseOptions(const QStringList ¶mList) { unsigned options = 0; foreach (const QString ¶m, paramList) { if (param == QLatin1String("enable_fonts")) options |= QMinimalIntegration::EnableFonts; } return options; } QMinimalIntegration::QMinimalIntegration(const QStringList ¶meters) : m_dummyFontDatabase(0) , m_options(parseOptions(parameters)) { if (qEnvironmentVariableIsSet(debugBackingStoreEnvironmentVariable) && qEnvironmentVariableIntValue(debugBackingStoreEnvironmentVariable) > 0) { m_options |= DebugBackingStore | EnableFonts; } QMinimalScreen *mPrimaryScreen = new QMinimalScreen(); mPrimaryScreen->mGeometry = QRect(0, 0, 240, 320); mPrimaryScreen->mDepth = 32; mPrimaryScreen->mFormat = QImage::Format_ARGB32_Premultiplied; screenAdded(mPrimaryScreen); } QMinimalIntegration::~QMinimalIntegration() { delete m_dummyFontDatabase; } bool QMinimalIntegration::hasCapability(QPlatformIntegration::Capability cap) const { switch (cap) { case ThreadedPixmaps: return true; case MultipleWindows: return true; default: return QPlatformIntegration::hasCapability(cap); } } // Dummy font database that does not scan the fonts directory to be // used for command line tools like qmlplugindump that do not create windows // unless DebugBackingStore is activated. class DummyFontDatabase : public QPlatformFontDatabase { public: virtual void populateFontDatabase() Q_DECL_OVERRIDE {} }; QPlatformFontDatabase *QMinimalIntegration::fontDatabase() const { if (m_options & EnableFonts) return QPlatformIntegration::fontDatabase(); if (!m_dummyFontDatabase) m_dummyFontDatabase = new DummyFontDatabase; return m_dummyFontDatabase; } QPlatformWindow *QMinimalIntegration::createPlatformWindow(QWindow *window) const { Q_UNUSED(window); QPlatformWindow *w = new QPlatformWindow(window); w->requestActivateWindow(); return w; } QPlatformBackingStore *QMinimalIntegration::createPlatformBackingStore(QWindow *window) const { return new QMinimalBackingStore(window); } QAbstractEventDispatcher *QMinimalIntegration::createEventDispatcher() const { #ifdef Q_OS_WIN #ifndef Q_OS_WINRT return new QEventDispatcherWin32; #else // !Q_OS_WINRT return new QEventDispatcherWinRT; #endif // Q_OS_WINRT #else return createUnixEventDispatcher(); #endif } QMinimalIntegration *QMinimalIntegration::instance() { return static_cast(QGuiApplicationPrivate::platformIntegration()); } QT_END_NAMESPACE