1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Embedding Apple's WebKit in wxWidgets
5 // Author: Robin Dunn / Kevin Ollivier
7 // Created: 18-Oct-2004
9 // Copyright: (c) 2004 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
14 "wx.webkit.WebKitCtrl for Mac OSX."
17 %module(package="wx", docstring=DOCSTRING) webkit
21 #include "wx/wxPython/wxPython.h"
22 #include "wx/wxPython/pyclasses.h"
23 #include "wx/wxPython/pyistream.h"
25 #ifdef __WXMAC__ // avoid a bug in Carbon headers
30 #include "wx/html/webkit.h"
34 //---------------------------------------------------------------------------
37 %pythoncode { wx = _core }
38 %pythoncode { __docfilter__ = wx.__DocFilter(globals()) }
41 %include _webkit_rename.i
43 //---------------------------------------------------------------------------
45 // Put some wx default wxChar* values into wxStrings.
46 MAKE_CONST_WXSTRING_NOSWIG(EmptyString);
47 MAKE_CONST_WXSTRING2(WebKitNameStr, wxT("webkitctrl"))
54 // a dummy class for ports that don't have wxWebKitCtrl
55 class wxWebKitCtrl : public wxControl
58 wxWebKitCtrl(wxWindow *parent,
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(); }
67 wxWebKitCtrl() { wxPyRaiseNotImplemented(); }
69 bool Create(wxWindow *parent,
71 const wxString& strURL,
72 const wxPoint& pos = wxDefaultPosition,
73 const wxSize& size = wxDefaultSize, long style = 0,
74 const wxValidator& validator = wxDefaultValidator,
75 const wxString& name = wxPyWebKitNameStr)
78 void LoadURL(const wxString &url) {}
80 bool CanGoBack() { return false; }
81 bool CanGoForward() { return false; }
82 bool GoBack() { return false; }
83 bool GoForward() { return false; }
86 bool CanGetPageSource() { return false; }
87 wxString GetPageSource() { return wxEmptyString; }
88 void SetPageSource(wxString& source, const wxString& baseUrl = wxEmptyString) {}
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,
101 class wxWebKitStateChangedEvent : public wxCommandEvent
104 wxWebKitStateChangedEvent( wxWindow* win = NULL )
105 { wxPyRaiseNotImplemented(); }
107 int GetState() { return 0 }
108 void SetState(const int state) {}
109 wxString GetURL() { return wxEmptyString; }
110 void SetURL(const wxString& url) {}
117 // Now define it for SWIG, usign either the real class or the dummy above.
119 MustHaveApp(wxWebKitCtrl);
121 class wxWebKitCtrl : public wxControl
124 %pythonAppend wxWebKitCtrl "self._setOORInfo(self)"
125 %pythonAppend wxWebKitCtrl() ""
127 wxWebKitCtrl(wxWindow *parent,
128 wxWindowID winID = -1,
129 const wxString& strURL = wxPyEmptyString,
130 const wxPoint& pos = wxDefaultPosition,
131 const wxSize& size = wxDefaultSize, long style = 0,
132 const wxValidator& validator = wxDefaultValidator,
133 const wxString& name = wxPyWebKitNameStr);
135 %name(PreWebKitCtrl)wxWebKitCtrl();
138 bool Create(wxWindow *parent,
139 wxWindowID winID = -1,
140 const wxString& strURL = wxPyEmptyString,
141 const wxPoint& pos = wxDefaultPosition,
142 const wxSize& size = wxDefaultSize, long style = 0,
143 const wxValidator& validator = wxDefaultValidator,
144 const wxString& name = wxPyWebKitNameStr);
146 void LoadURL(const wxString &url);
154 bool CanGetPageSource();
155 wxString GetPageSource();
156 void SetPageSource(wxString& source, const wxString& baseUrl = wxPyEmptyString);
160 //---------------------------------------------------------------------------
164 wxWEBKIT_STATE_START,
165 wxWEBKIT_STATE_NEGOTIATING,
166 wxWEBKIT_STATE_REDIRECTING,
167 wxWEBKIT_STATE_TRANSFERRING,
169 wxWEBKIT_STATE_FAILED,
173 %constant wxEventType wxEVT_WEBKIT_STATE_CHANGED;
176 class wxWebKitStateChangedEvent : public wxCommandEvent
179 wxWebKitStateChangedEvent( wxWindow* win = NULL );
182 void SetState(const int state);
184 void SetURL(const wxString& url);
189 EVT_WEBKIT_STATE_CHANGED = wx.PyEventBinder(wxEVT_WEBKIT_STATE_CHANGED)
193 //---------------------------------------------------------------------------
199 //---------------------------------------------------------------------------