mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
6b1ed28114
svn path=/trunk/KDE/kdebase/apps/; revision=748198
59 lines
1.9 KiB
C++
59 lines
1.9 KiB
C++
/*
|
|
|
|
Common stuff for all plugin hosts
|
|
|
|
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.h"
|
|
#include <QX11Info>
|
|
|
|
void PluginHost::setupPluginWindow(NSPluginInstance* plugin, void* winID, int width, int height)
|
|
{
|
|
NPWindow win;
|
|
win.x = 0;
|
|
win.y = 0;
|
|
win.width = width;
|
|
win.height = height;
|
|
win.type = NPWindowTypeWindow;
|
|
|
|
// Well, the docu says sometimes, this is only used on the
|
|
// MAC, but sometimes it says it's always. Who knows...
|
|
win.clipRect.top = 0;
|
|
win.clipRect.left = 0;
|
|
win.clipRect.bottom = height;
|
|
win.clipRect.right = width;
|
|
|
|
win.window = winID;
|
|
QX11Info x11info;
|
|
NPSetWindowCallbackStruct win_info;
|
|
win_info.display = QX11Info::display();
|
|
win_info.visual = (Visual*) x11info.visual();
|
|
win_info.colormap = x11info.colormap();
|
|
win_info.depth = x11info.depth();
|
|
win.ws_info = &win_info;
|
|
|
|
NPError error = plugin->NPSetWindow( &win );
|
|
|
|
kDebug(1431) << "error = " << error;
|
|
}
|
|
|
|
// kate: indent-width 4; replace-tabs on; tab-width 4; space-indent on;
|