mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-18 13:21:40 +00:00
Fixed: Use Xcb plugin for Qt 5 under Linux
This commit is contained in:
parent
ceea904db1
commit
ee056ab47b
4 changed files with 46 additions and 17 deletions
|
@ -80,16 +80,17 @@ public:
|
||||||
|
|
||||||
#include <QtPlugin>
|
#include <QtPlugin>
|
||||||
|
|
||||||
#ifdef Q_OS_WIN32
|
#if defined(Q_OS_WIN32)
|
||||||
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
|
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
|
||||||
#endif
|
#elif defined(Q_OS_MAC)
|
||||||
|
|
||||||
#ifdef Q_OS_MAC
|
|
||||||
Q_IMPORT_PLUGIN(QCocoaIntegrationPlugin)
|
Q_IMPORT_PLUGIN(QCocoaIntegrationPlugin)
|
||||||
#endif
|
#elif defined(Q_OS_UNIX)
|
||||||
|
Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int main( int argc, char **argv )
|
#endif
|
||||||
|
|
||||||
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
#ifndef WIN32
|
#ifndef WIN32
|
||||||
// Workaround to default -style=gtk+ on recent Cinnamon versions
|
// Workaround to default -style=gtk+ on recent Cinnamon versions
|
||||||
|
@ -111,14 +112,13 @@ int main( int argc, char **argv )
|
||||||
CCmdLineParser::parse( argc, argv, params );
|
CCmdLineParser::parse( argc, argv, params );
|
||||||
|
|
||||||
CCrashReportWidget w;
|
CCrashReportWidget w;
|
||||||
w.setup( params );
|
w.setup(params);
|
||||||
w.show();
|
w.show();
|
||||||
|
|
||||||
int ret = app.exec();
|
int ret = app.exec();
|
||||||
|
|
||||||
if( ret != EXIT_SUCCESS )
|
if(ret != EXIT_SUCCESS)
|
||||||
return ret;
|
return ret;
|
||||||
else
|
else
|
||||||
return w.getReturnValue();
|
return w.getReturnValue();
|
||||||
|
|
||||||
}
|
}
|
|
@ -8,6 +8,20 @@
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
|
|
||||||
|
#ifdef QT_STATICPLUGIN
|
||||||
|
|
||||||
|
#include <QtPlugin>
|
||||||
|
|
||||||
|
#if defined(Q_OS_WIN32)
|
||||||
|
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
|
||||||
|
#elif defined(Q_OS_MAC)
|
||||||
|
Q_IMPORT_PLUGIN(QCocoaIntegrationPlugin)
|
||||||
|
#elif defined(Q_OS_UNIX)
|
||||||
|
Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
QApplication app(argc, argv);
|
QApplication app(argc, argv);
|
||||||
|
|
|
@ -12,6 +12,20 @@
|
||||||
#define NL_WORDS_DIC_CFG "."
|
#define NL_WORDS_DIC_CFG "."
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef QT_STATICPLUGIN
|
||||||
|
|
||||||
|
#include <QtPlugin>
|
||||||
|
|
||||||
|
#if defined(Q_OS_WIN32)
|
||||||
|
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
|
||||||
|
#elif defined(Q_OS_MAC)
|
||||||
|
Q_IMPORT_PLUGIN(QCocoaIntegrationPlugin)
|
||||||
|
#elif defined(Q_OS_UNIX)
|
||||||
|
Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
|
@ -25,18 +25,19 @@
|
||||||
|
|
||||||
#include <QtPlugin>
|
#include <QtPlugin>
|
||||||
|
|
||||||
#ifdef Q_OS_WIN32
|
#if defined(Q_OS_WIN32)
|
||||||
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
|
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
|
||||||
#endif
|
#elif defined(Q_OS_MAC)
|
||||||
|
|
||||||
#ifdef Q_OS_MAC
|
|
||||||
Q_IMPORT_PLUGIN(QCocoaIntegrationPlugin)
|
Q_IMPORT_PLUGIN(QCocoaIntegrationPlugin)
|
||||||
#endif
|
#elif defined(Q_OS_UNIX)
|
||||||
|
Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int main( sint32 argc, char **argv )
|
#endif
|
||||||
|
|
||||||
|
int main(sint32 argc, char **argv)
|
||||||
{
|
{
|
||||||
QApplication app( argc, argv );
|
QApplication app(argc, argv);
|
||||||
|
|
||||||
QApplication::setWindowIcon(QIcon(":/resources/welcome_icon.png"));
|
QApplication::setWindowIcon(QIcon(":/resources/welcome_icon.png"));
|
||||||
QPixmap pixmap(":/resources/splash_screen.png" );
|
QPixmap pixmap(":/resources/splash_screen.png" );
|
||||||
|
|
Loading…
Reference in a new issue