~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to Source/WebCore/platform/qt/PlatformSupportQt.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of the WebKit project.
 
3
 *
 
4
 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
 
5
 *
 
6
 * This library is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU Library General Public
 
8
 * License as published by the Free Software Foundation; either
 
9
 * version 2 of the License, or (at your option) any later version.
 
10
 *
 
11
 * This library is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
 * Library General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU Library General Public License
 
17
 * along with this library; see the file COPYING.LIB.  If not, write to
 
18
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
19
 * Boston, MA 02110-1301, USA.
 
20
 *
 
21
 */
 
22
#include "config.h"
 
23
#include "PlatformSupport.h"
 
24
 
 
25
#include "Frame.h"
 
26
#include "PluginView.h"
 
27
#include "Widget.h"
 
28
#include "npapi.h"
 
29
 
 
30
namespace WebCore {
 
31
 
 
32
bool PlatformSupport::popupsAllowed(NPP npp)
 
33
{
 
34
#if ENABLE(NETSCAPE_PLUGIN_API)
 
35
    if (npp && npp->ndata)
 
36
        return static_cast<PluginView*>(npp->ndata)->arePopupsAllowed();
 
37
#endif
 
38
 
 
39
    return false;
 
40
}
 
41
 
 
42
NPObject* PlatformSupport::pluginScriptableObject(Widget* widget)
 
43
{
 
44
    if (!widget)
 
45
        return 0;
 
46
 
 
47
    if (!widget->isPluginView())
 
48
        return 0;
 
49
 
 
50
#if ENABLE(NETSCAPE_PLUGIN_API)
 
51
    PluginView* pluginView = static_cast<PluginView*>(widget);
 
52
    return pluginView->npObject();
 
53
#else
 
54
    return 0;
 
55
#endif
 
56
}
 
57
 
 
58
}