mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
8c731bc1d4
Make flash embedding work much better.. - Make sure to give distinct callback objects distinct IDs, so they talk to the proper KHTMLPart. Fixes only one flash object working per window - Rework the size/init heuristics yet again, following closer to Seli's code, but instead of trying to count events, etc., just have the part tell us when we were really resized, and qwidget isn't making up a random svn path=/trunk/KDE/kdebase/apps/; revision=768880
55 lines
1.7 KiB
C++
55 lines
1.7 KiB
C++
/*
|
|
|
|
XEmbed plugin embedding support
|
|
|
|
Copyright (c) 2000 Matthias Hoelzer-Kluepfel <hoelzer@kde.org>
|
|
Stefan Schimanski <1Stein@gmx.de>
|
|
2003-2005 George Staikos <staikos@kde.org>
|
|
2007 Maksim orlovich <maksim@kde.org>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
#include "pluginhost_xembed.h"
|
|
#include <QX11Info>
|
|
#include <QVBoxLayout>
|
|
#include <QLabel>
|
|
|
|
PluginHostXEmbed::PluginHostXEmbed(NSPluginInstance* plugin):
|
|
_plugin(plugin), _winId(0)
|
|
{}
|
|
|
|
PluginHostXEmbed::~PluginHostXEmbed()
|
|
{}
|
|
|
|
|
|
void PluginHostXEmbed::setupWindow(int winId, int width, int height)
|
|
{
|
|
kDebug() << winId << width << height;
|
|
_winId = winId;
|
|
setupPluginWindow(_plugin, (void*)winId, width, height);
|
|
}
|
|
|
|
void PluginHostXEmbed::resizePlugin(int pluginWinId, int w, int h)
|
|
{
|
|
kDebug() << pluginWinId << _winId << w << h;
|
|
if (_winId) {
|
|
XResizeWindow(QX11Info::display(), pluginWinId, w, h);
|
|
setupPluginWindow(_plugin, (void*)_winId, w, h);
|
|
}
|
|
}
|
|
|
|
// kate: indent-width 4; replace-tabs on; tab-width 4; space-indent on;
|