aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtWebKit/typesystem_webkit.xml
blob: 39326c7e22b83ad24a0fe3d2b596bf513cc7a48a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<?xml version="1.0"?>
<!--
    This file is part of PySide project.
    Copyright (C) 2009-2010 Nokia Corporation and/or its subsidiary(-ies).
    Contact: PySide team <contact@pyside.org>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 2.1 of the License, or (at your option) any later version.

    This library 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
    Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-->
<typesystem package="PySide.QtWebKit">
  <load-typesystem name="typesystem_core.xml" generate="no"/>
  <load-typesystem name="typesystem_gui.xml" generate="no"/>
  <load-typesystem name="typesystem_network.xml" generate="no"/>

  <namespace-type name="WebCore"/>

  <object-type name="QWebView">
    <modify-function signature="setPage(QWebPage*)">
        <modify-argument index="1">
            <reference-count action="set"/>
        </modify-argument>
    </modify-function>
    <modify-function signature="page() const">
        <modify-argument index="return">
            <define-ownership class="target" owner="default"/>
        </modify-argument>
        <inject-code position="end">
            SbkObject* _pyReturn = reinterpret_cast&lt;SbkObject*&gt;(%PYARG_0);
            if (!Shiboken::Object::hasParentInfo(_pyReturn))
                Shiboken::Object::setParent(%PYSELF, %PYARG_0);
        </inject-code>
    </modify-function>
    <modify-function signature="print(QPrinter*)const" rename="print_" />
  </object-type>
  <object-type name="QWebFrame">
    <enum-type name="RenderLayer" since="4.6"/>
    <modify-function signature="addToJavaScriptWindowObject(QString,QObject*)">
      <modify-argument index="2">
          <parent index="this" action="add"/>
      </modify-argument>
    </modify-function>
    <modify-function signature="print(QPrinter*)const" rename="print_" />
    <modify-function signature="metaData()const">
        <modify-argument index="return">
            <replace-type modified-type="PyObject" />
        </modify-argument>
        <inject-code position="end">
            <insert-template name="convertFromMultiMap">
                <replace from="%MAP_NAME" to="%0"/>
                <replace from="%RETURN_NAME" to="%PYARG_0"/>
                <replace from="%KEY_TYPE" to="QString"/>
                <replace from="%VALUE_TYPE" to="QString"/>
            </insert-template>
        </inject-code>
    </modify-function>
  </object-type>

  <object-type name="QWebSettings">
    <enum-type name="FontFamily"/>
    <enum-type name="FontSize"/>
    <enum-type name="WebAttribute"/>
    <enum-type name="WebGraphic"/>
  </object-type>
  <object-type name="QWebPage">
    <enum-type name="FindFlag" flags="FindFlags"/>
    <enum-type name="LinkDelegationPolicy"/>
    <enum-type name="NavigationType"/>
    <enum-type name="WebAction"/>
    <enum-type name="WebWindowType"/>
    <!-- Qt 4.6 -->
    <enum-type name="ErrorDomain" since="4.6"/>
    <enum-type name="Extension"/>

   <value-type name="ChooseMultipleFilesExtensionOption" />
   <value-type name="ChooseMultipleFilesExtensionReturn" />
   <value-type name="ErrorPageExtensionOption" since="4.6" />
   <value-type name="ErrorPageExtensionReturn" since="4.6" />
   <value-type name="ExtensionOption" />
   <value-type name="ExtensionReturn" />

   <modify-function signature="extension(QWebPage::Extension, const QWebPage::ExtensionOption*, QWebPage::ExtensionReturn*)">
        <template name="qwebpage_extension_argument_conversion">
        PyObject* %out = 0;
        // Cast the parameters according to the extension type
        if (extension == QWebPage::ChooseMultipleFilesExtension) {
            const ChooseMultipleFilesExtension$TYPE_SUFFIX* _in = reinterpret_cast&lt;const ChooseMultipleFilesExtension$TYPE_SUFFIX*>(%in);
            %out = %CONVERTTOPYTHON[const ChooseMultipleFilesExtension$TYPE_SUFFIX*](_in);
        #if QT_VERSION >= 0x040600
        } else if (extension == QWebPage::ErrorPageExtension) {
            const ErrorPageExtension$TYPE_SUFFIX* _in = reinterpret_cast&lt;const ErrorPageExtension$TYPE_SUFFIX*>(%in);
            %out = %CONVERTTOPYTHON[const ErrorPageExtension$TYPE_SUFFIX*](_in);
        #endif
        }
        </template>
        <modify-argument index="2" invalidate-after-use="yes">
            <conversion-rule class="target">
                <insert-template name="qwebpage_extension_argument_conversion">
                    <replace from="$TYPE_SUFFIX" to="Option"/>
                </insert-template>
            </conversion-rule>
        </modify-argument>
        <modify-argument index="3" invalidate-after-use="yes">
            <conversion-rule class="target">
                <insert-template name="qwebpage_extension_argument_conversion">
                    <replace from="$TYPE_SUFFIX" to="Return"/>
                </insert-template>
            </conversion-rule>
        </modify-argument>
   </modify-function>

   <modify-function signature="setNetworkAccessManager(QNetworkAccessManager*)">
        <modify-argument index="1">
            <reference-count action="set"/>
        </modify-argument>
   </modify-function>
   <modify-function signature="networkAccessManager()const">
        <modify-argument index="return">
            <reference-count action="set" variable-name="setNetworkAccessManager(QNetworkAccessManager*)1" />
        </modify-argument>
   </modify-function>
   <modify-function signature="view()const">
        <modify-argument index="return">
            <define-ownership owner="default"/>
        </modify-argument>
   </modify-function>
   <modify-function signature="pluginFactory()const">
        <modify-argument index="return">
            <define-ownership owner="default"/>
        </modify-argument>
   </modify-function>

    <modify-function signature="javaScriptPrompt(QWebFrame*,const QString &amp;,const QString &amp;,QString*)">
      <modify-argument index="return">
        <replace-type modified-type="PyObject"/>
      </modify-argument>
      <modify-argument index="4">
        <remove-argument />
      </modify-argument>
      <modify-argument index="return">
        <replace-type modified-type="(retval, result)"/>
      </modify-argument>
      <inject-code class="target" position="end">
        QString str;
        %RETURN_TYPE retval_ = %CPPSELF.%FUNCTION_NAME(%1, %2, %3, &amp;str);
        %PYARG_0 = Shiboken::makeTuple(retval_, str);
      </inject-code>
    </modify-function>
  </object-type>
  <object-type name="QWebHistory"/>
  <object-type name="QWebHistoryInterface"/>
  <object-type name="QWebPluginFactory">
    <enum-type name="Extension"/>
    <value-type name="Plugin"/>
    <value-type name="MimeType"/>
    <modify-function signature="create(const QString &amp;, const QUrl &amp;, const QStringList &amp;, const QStringList &amp;) const">
        <modify-argument index="return">
            <define-ownership class="native" owner="c++"/>
            <define-ownership class="target" owner="target"/>
        </modify-argument>
    </modify-function>
  </object-type>
  <value-type name="QWebDatabase"/>
  <value-type name="QWebHistoryItem"/>
  <value-type name="QWebHitTestResult"/>
  <value-type name="QWebSecurityOrigin"/>

  <!-- Qt 4.6 -->
  <object-type name="QGraphicsWebView" since="4.6"/>
  <object-type name="QWebInspector" since="4.6"/>
  <value-type name="QWebElement" since="4.6">
    <enum-type name="StyleResolveStrategy"/>
  </value-type>
  <value-type name="QWebElementCollection" since="4.6">
    <add-function signature="__len__">
        <inject-code>
        return %CPPSELF.count();
        </inject-code>
    </add-function>
    <add-function signature="__getitem__">
        <inject-code>
        if (_i &lt; 0 || _i >= %CPPSELF.count()) {
            PyErr_SetString(PyExc_IndexError, "index out of bounds");
            return 0;
        }
        QWebElement element = %CPPSELF.at(_i);
        return %CONVERTTOPYTHON[QWebElement](element);
        </inject-code>
    </add-function>
  </value-type>
</typesystem>