From 790391e3a90a709160301953e47bd8f2fdc39c07 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sun, 13 Mar 2011 02:42:19 +0000 Subject: [PATCH] Enhance support for Flash in Konqueror (closes Bug 351) Patch courtesy of Ilya git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1224648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- nsplugins/viewer/nsplugin.cpp | 20 ++++++++++++++++++++ nsplugins/viewer/nsplugin.h | 4 ++++ 2 files changed, 24 insertions(+) diff --git a/nsplugins/viewer/nsplugin.cpp b/nsplugins/viewer/nsplugin.cpp index f91e3fd9f..a349468da 100644 --- a/nsplugins/viewer/nsplugin.cpp +++ b/nsplugins/viewer/nsplugin.cpp @@ -1330,6 +1330,9 @@ DCOPRef NSPluginViewer::newClass( TQString plugin ) /****************************************************************************/ +bool NSPluginClass::s_initedGTK = false; + +typedef void gtkInitFunc(int *argc, char ***argv); NSPluginClass::NSPluginClass( const TQString &library, TQObject *parent, const char *name ) @@ -1377,6 +1380,23 @@ NSPluginClass::NSPluginClass( const TQString &library, // initialize plugin kdDebug(1431) << "Plugin library " << library << " loaded!" << endl; + + // see if it uses gtk + if (!s_initedGTK) { + gtkInitFunc* gtkInit = (gtkInitFunc*)_handle->symbol("gtk_init"); + if (gtkInit) { + kdDebug(1431) << "Calling gtk_init for the plugin" << endl; + // Prevent gtk_init() from replacing the X error handlers, since the Gtk + // handlers abort when they receive an X error, thus killing the viewer. + int (*old_error_handler)(Display*,XErrorEvent*) = XSetErrorHandler(0); + int (*old_io_error_handler)(Display*) = XSetIOErrorHandler(0); + gtkInit(0, 0); + XSetErrorHandler(old_error_handler); + XSetIOErrorHandler(old_io_error_handler); + s_initedGTK = true; + } + } + _constructed = true; _error = initialize()!=NPERR_NO_ERROR; } diff --git a/nsplugins/viewer/nsplugin.h b/nsplugins/viewer/nsplugin.h index e968eb684..1c241cc8e 100644 --- a/nsplugins/viewer/nsplugin.h +++ b/nsplugins/viewer/nsplugin.h @@ -315,6 +315,10 @@ private: TQPtrList _trash; TQCString _app; + + // If plugins use gtk, we call the gtk_init function for them --- + // but only do it once. + static bool s_initedGTK; };