]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/src/webkit.i
Added wxMouseCaptureLostEvent
[wxWidgets.git] / wxPython / src / webkit.i
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: webkit.i
3// Purpose: Embedding Apple's WebKit in wxWidgets
4//
5// Author: Robin Dunn / Kevin Ollivier
6//
7// Created: 18-Oct-2004
8// RCS-ID: $Id$
9// Copyright: (c) 2004 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
13%define DOCSTRING
14"wx.webkit.WebKitCtrl for Mac OSX."
15%enddef
16
17%module(package="wx", docstring=DOCSTRING) webkit
18
19%{
20
21#include "wx/wxPython/wxPython.h"
22#include "wx/wxPython/pyclasses.h"
23#include "wx/wxPython/pyistream.h"
24
25#ifdef __WXMAC__ // avoid a bug in Carbon headers
26#define scalb scalbn
27#endif
28
29#if wxUSE_WEBKIT
30#include "wx/html/webkit.h"
31#endif
32%}
33
34//---------------------------------------------------------------------------
35
36%import core.i
37%pythoncode { wx = _core }
38%pythoncode { __docfilter__ = wx.__DocFilter(globals()) }
39
40
41//---------------------------------------------------------------------------
42
43// Put some wx default wxChar* values into wxStrings.
44MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
45MAKE_CONST_WXSTRING2(WebKitNameStr, wxT("webkitctrl"))
46
47
48
49
50%{
51#if !wxUSE_WEBKIT
52// a dummy class for ports that don't have wxWebKitCtrl
53class wxWebKitCtrl : public wxControl
54{
55public:
56 wxWebKitCtrl(wxWindow *parent,
57 wxWindowID winID,
58 const wxString& strURL,
59 const wxPoint& pos = wxDefaultPosition,
60 const wxSize& size = wxDefaultSize, long style = 0,
61 const wxValidator& validator = wxDefaultValidator,
62 const wxString& name = wxPyWebKitNameStr)
63 { wxPyRaiseNotImplemented(); }
64
65 wxWebKitCtrl() { wxPyRaiseNotImplemented(); }
66
67 bool Create(wxWindow *parent,
68 wxWindowID winID,
69 const wxString& strURL,
70 const wxPoint& pos = wxDefaultPosition,
71 const wxSize& size = wxDefaultSize, long style = 0,
72 const wxValidator& validator = wxDefaultValidator,
73 const wxString& name = wxPyWebKitNameStr)
74 { return false; }
75
76 void LoadURL(const wxString &url) {}
77
78 bool CanGoBack() { return false; }
79 bool CanGoForward() { return false; }
80 bool GoBack() { return false; }
81 bool GoForward() { return false; }
82 void Reload() {}
83 void Stop() {}
84 bool CanGetPageSource() { return false; }
85 wxString GetPageSource() { return wxEmptyString; }
86 void SetPageSource(wxString& source, const wxString& baseUrl = wxEmptyString) {}
87 wxString GetPageURL() { return wxEmptyString; }
88 wxString GetPageTitle() { return wxEmptyString; }
89};
90
91
92enum {
93 wxWEBKIT_STATE_START = 0,
94 wxWEBKIT_STATE_NEGOTIATING = 0,
95 wxWEBKIT_STATE_REDIRECTING = 0,
96 wxWEBKIT_STATE_TRANSFERRING = 0,
97 wxWEBKIT_STATE_STOP = 0,
98 wxWEBKIT_STATE_FAILED = 0,
99
100 wxEVT_WEBKIT_STATE_CHANGED = 0
101};
102
103class wxWebKitStateChangedEvent : public wxCommandEvent
104{
105public:
106 wxWebKitStateChangedEvent( wxWindow* win = NULL )
107 { wxPyRaiseNotImplemented(); }
108
109 int GetState() { return 0; }
110 void SetState(const int state) {}
111 wxString GetURL() { return wxEmptyString; }
112 void SetURL(const wxString& url) {}
113};
114
115
116#endif
117%}
118
119// Now define it for SWIG, using either the real class or the dummy above.
120
121MustHaveApp(wxWebKitCtrl);
122
123class wxWebKitCtrl : public wxControl
124{
125public:
126 %pythonAppend wxWebKitCtrl "self._setOORInfo(self)"
127 %pythonAppend wxWebKitCtrl() ""
128
129 wxWebKitCtrl(wxWindow *parent,
130 wxWindowID winID = -1,
131 const wxString& strURL = wxPyEmptyString,
132 const wxPoint& pos = wxDefaultPosition,
133 const wxSize& size = wxDefaultSize, long style = 0,
134 const wxValidator& validator = wxDefaultValidator,
135 const wxString& name = wxPyWebKitNameStr);
136
137 %RenameCtor(PreWebKitCtrl, wxWebKitCtrl());
138
139
140 bool Create(wxWindow *parent,
141 wxWindowID winID = -1,
142 const wxString& strURL = wxPyEmptyString,
143 const wxPoint& pos = wxDefaultPosition,
144 const wxSize& size = wxDefaultSize, long style = 0,
145 const wxValidator& validator = wxDefaultValidator,
146 const wxString& name = wxPyWebKitNameStr);
147
148 void LoadURL(const wxString &url);
149
150 bool CanGoBack();
151 bool CanGoForward();
152 bool GoBack();
153 bool GoForward();
154 void Reload();
155 void Stop();
156 bool CanGetPageSource();
157 wxString GetPageSource();
158 void SetPageSource(wxString& source, const wxString& baseUrl = wxPyEmptyString);
159 wxString GetPageURL();
160 wxString GetPageTitle();
161};
162
163
164//---------------------------------------------------------------------------
165
166
167enum {
168 wxWEBKIT_STATE_START,
169 wxWEBKIT_STATE_NEGOTIATING,
170 wxWEBKIT_STATE_REDIRECTING,
171 wxWEBKIT_STATE_TRANSFERRING,
172 wxWEBKIT_STATE_STOP,
173 wxWEBKIT_STATE_FAILED,
174};
175
176
177%constant wxEventType wxEVT_WEBKIT_STATE_CHANGED;
178
179
180class wxWebKitStateChangedEvent : public wxCommandEvent
181{
182public:
183 wxWebKitStateChangedEvent( wxWindow* win = NULL );
184
185 int GetState();
186 void SetState(const int state);
187 wxString GetURL();
188 void SetURL(const wxString& url);
189};
190
191
192%pythoncode %{
193 EVT_WEBKIT_STATE_CHANGED = wx.PyEventBinder(wxEVT_WEBKIT_STATE_CHANGED)
194%}
195
196
197//---------------------------------------------------------------------------
198
199%init %{
200
201%}
202
203//---------------------------------------------------------------------------