genode/repos/libports/src/lib/qt5/qtbase/src/plugins/platforms/nitpicker/qnitpickerintegrationplugin.h

44 lines
971 B
C++

/*
* \brief Nitpicker QPA plugin
* \author Christian Prochaska
* \date 2013-05-08
*/
/*
* Copyright (C) 2013-2017 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
#ifndef _QNITPICKERINTEGRATIONPLUGIN_H_
#define _QNITPICKERINTEGRATIONPLUGIN_H_
/* Genode includes */
#include <base/env.h>
/* Qt includes */
#include <qpa/qplatformintegrationplugin.h>
#include "qnitpickerintegration.h"
QT_BEGIN_NAMESPACE
class QNitpickerIntegrationPlugin : public QPlatformIntegrationPlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID QPlatformIntegrationFactoryInterface_iid FILE "nitpicker.json")
private:
static Genode::Env *_env;
public:
QStringList keys() const;
QPlatformIntegration *create(const QString&, const QStringList&);
static void env(Genode::Env &env) { _env = &env; }
};
QT_END_NAMESPACE
#endif /* _QNITPICKERINTEGRATIONPLUGIN_H_ */