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