]> git.saurik.com Git - wxWidgets.git/blame - include/wx/html/webkit.h
wxMessageBox off the main thread lost result code.
[wxWidgets.git] / include / wx / html / webkit.h
CommitLineData
2c990ba6 1/////////////////////////////////////////////////////////////////////////////
1b88201f 2// Name: wx/html/webkit.h
2c990ba6
KO
3// Purpose: wxWebKitCtrl - embeddable web kit control
4// Author: Jethro Grassie / Kevin Ollivier
5// Modified by:
6// Created: 2004-4-16
2c990ba6 7// Copyright: (c) Jethro Grassie / Kevin Ollivier
65571936 8// Licence: wxWindows licence
2c990ba6
KO
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef _WX_WEBKIT_H
12#define _WX_WEBKIT_H
13
5b8f917c
KO
14#if wxUSE_WEBKIT
15
2c990ba6
KO
16#if !defined(__WXMAC__) && !defined(__WXCOCOA__)
17#error "wxWebKitCtrl not implemented for this platform"
18#endif
19
2c990ba6 20#include "wx/control.h"
df04f800 21DECLARE_WXCOCOA_OBJC_CLASS(WebView);
2c990ba6
KO
22
23// ----------------------------------------------------------------------------
24// Web Kit Control
25// ----------------------------------------------------------------------------
26
eebb8902
KO
27extern WXDLLIMPEXP_DATA_CORE(const char) wxWebKitCtrlNameStr[];
28
29391f32 29class WXDLLIMPEXP_CORE wxWebKitCtrl : public wxControl
2c990ba6
KO
30{
31public:
3ca7ba74 32 DECLARE_DYNAMIC_CLASS(wxWebKitCtrl)
2c990ba6 33
6dd0883d 34 wxWebKitCtrl() {}
2c990ba6 35 wxWebKitCtrl(wxWindow *parent,
3ca7ba74 36 wxWindowID winID,
2c990ba6
KO
37 const wxString& strURL,
38 const wxPoint& pos = wxDefaultPosition,
3ca7ba74
RD
39 const wxSize& size = wxDefaultSize, long style = 0,
40 const wxValidator& validator = wxDefaultValidator,
eebb8902 41 const wxString& name = wxWebKitCtrlNameStr)
2c990ba6
KO
42 {
43 Create(parent, winID, strURL, pos, size, style, validator, name);
6dd0883d 44 }
3ca7ba74 45 bool Create(wxWindow *parent,
2c990ba6
KO
46 wxWindowID winID,
47 const wxString& strURL,
48 const wxPoint& pos = wxDefaultPosition,
49 const wxSize& size = wxDefaultSize, long style = 0,
50 const wxValidator& validator = wxDefaultValidator,
eebb8902 51 const wxString& name = wxWebKitCtrlNameStr);
3ca7ba74 52 virtual ~wxWebKitCtrl();
6953da00 53
2c990ba6 54 void LoadURL(const wxString &url);
6953da00 55
2c990ba6
KO
56 bool CanGoBack();
57 bool CanGoForward();
58 bool GoBack();
59 bool GoForward();
6953da00 60 void Reload();
2c990ba6
KO
61 void Stop();
62 bool CanGetPageSource();
63 wxString GetPageSource();
448f8f12 64 void SetPageSource(const wxString& source, const wxString& baseUrl = wxEmptyString);
2c6dbc21 65 wxString GetPageURL(){ return m_currentURL; }
448f8f12 66 void SetPageTitle(const wxString& title) { m_pageTitle = title; }
2c6dbc21 67 wxString GetPageTitle(){ return m_pageTitle; }
c058cafa 68
448f8f12
KO
69 // since these worked in 2.6, add wrappers
70 void SetTitle(const wxString& title) { SetPageTitle(title); }
71 wxString GetTitle() { return GetPageTitle(); }
c058cafa 72
448f8f12 73 wxString GetSelection();
c058cafa 74
448f8f12
KO
75 bool CanIncreaseTextSize();
76 void IncreaseTextSize();
77 bool CanDecreaseTextSize();
78 void DecreaseTextSize();
c058cafa 79
8e6efd1f 80 void Print(bool showPrompt = false);
c058cafa 81
8e6efd1f 82 void MakeEditable(bool enable = true);
448f8f12 83 bool IsEditable();
c058cafa 84
448f8f12 85 wxString RunScript(const wxString& javascript);
c058cafa 86
448f8f12
KO
87 void SetScrollPos(int pos);
88 int GetScrollPos();
8f3b30d5 89
8a28bf76
VZ
90 // don't hide base class virtuals
91 virtual void SetScrollPos( int orient, int pos, bool refresh = true )
92 { return wxControl::SetScrollPos(orient, pos, refresh); }
93 virtual int GetScrollPos( int orient ) const
94 { return wxControl::GetScrollPos(orient); }
95
2c990ba6 96 //we need to resize the webview when the control size changes
005198fa 97 void OnSize(wxSizeEvent &event);
448f8f12
KO
98 void OnMove(wxMoveEvent &event);
99 void OnMouseEvents(wxMouseEvent &event);
2c990ba6 100protected:
3ca7ba74 101 DECLARE_EVENT_TABLE()
14f21d6d 102 void MacVisibilityChanged();
2c990ba6
KO
103
104private:
105 wxWindow *m_parent;
106 wxWindowID m_windowID;
107 wxString m_currentURL;
108 wxString m_pageTitle;
c058cafa 109
df04f800 110 WX_WebView m_webView;
c058cafa 111
448f8f12
KO
112 // we may use this later to setup our own mouse events,
113 // so leave it in for now.
114 void* m_webKitCtrlEventHandler;
2c990ba6
KO
115};
116
117// ----------------------------------------------------------------------------
118// Web Kit Events
119// ----------------------------------------------------------------------------
120
121enum {
3ca7ba74
RD
122 wxWEBKIT_STATE_START = 1,
123 wxWEBKIT_STATE_NEGOTIATING = 2,
124 wxWEBKIT_STATE_REDIRECTING = 4,
125 wxWEBKIT_STATE_TRANSFERRING = 8,
126 wxWEBKIT_STATE_STOP = 16,
2c990ba6
KO
127 wxWEBKIT_STATE_FAILED = 32
128};
129
448f8f12
KO
130enum {
131 wxWEBKIT_NAV_LINK_CLICKED = 1,
132 wxWEBKIT_NAV_BACK_NEXT = 2,
133 wxWEBKIT_NAV_FORM_SUBMITTED = 4,
134 wxWEBKIT_NAV_RELOAD = 8,
135 wxWEBKIT_NAV_FORM_RESUBMITTED = 16,
136 wxWEBKIT_NAV_OTHER = 32
137
138};
139
140
141
29391f32 142class WXDLLIMPEXP_CORE wxWebKitBeforeLoadEvent : public wxCommandEvent
448f8f12
KO
143{
144 DECLARE_DYNAMIC_CLASS( wxWebKitBeforeLoadEvent )
c058cafa 145
448f8f12
KO
146public:
147 bool IsCancelled() { return m_cancelled; }
148 void Cancel(bool cancel = true) { m_cancelled = cancel; }
149 wxString GetURL() { return m_url; }
150 void SetURL(const wxString& url) { m_url = url; }
151 void SetNavigationType(int navType) { m_navType = navType; }
152 int GetNavigationType() { return m_navType; }
153
d3b9f782 154 wxWebKitBeforeLoadEvent( wxWindow* win = NULL );
448f8f12
KO
155 wxEvent *Clone(void) const { return new wxWebKitBeforeLoadEvent(*this); }
156
157protected:
158 bool m_cancelled;
159 wxString m_url;
160 int m_navType;
161};
162
29391f32 163class WXDLLIMPEXP_CORE wxWebKitStateChangedEvent : public wxCommandEvent
2c990ba6
KO
164{
165 DECLARE_DYNAMIC_CLASS( wxWebKitStateChangedEvent )
166
167public:
3ca7ba74
RD
168 int GetState() { return m_state; }
169 void SetState(const int state) { m_state = state; }
170 wxString GetURL() { return m_url; }
171 void SetURL(const wxString& url) { m_url = url; }
2c990ba6 172
d3b9f782 173 wxWebKitStateChangedEvent( wxWindow* win = NULL );
3ca7ba74 174 wxEvent *Clone(void) const { return new wxWebKitStateChangedEvent(*this); }
2c990ba6
KO
175
176protected:
3ca7ba74
RD
177 int m_state;
178 wxString m_url;
2c990ba6
KO
179};
180
fa34bc53 181
29391f32 182class WXDLLIMPEXP_CORE wxWebKitNewWindowEvent : public wxCommandEvent
fa34bc53 183{
412e6a10 184 DECLARE_DYNAMIC_CLASS( wxWebKitNewWindowEvent )
fa34bc53
RD
185public:
186 wxString GetURL() const { return m_url; }
187 void SetURL(const wxString& url) { m_url = url; }
188 wxString GetTargetName() const { return m_targetName; }
189 void SetTargetName(const wxString& name) { m_targetName = name; }
190
191 wxWebKitNewWindowEvent( wxWindow* win = (wxWindow*)(NULL));
192 wxEvent *Clone(void) const { return new wxWebKitNewWindowEvent(*this); }
193
194private:
195 wxString m_url;
196 wxString m_targetName;
197};
198
2c990ba6 199typedef void (wxEvtHandler::*wxWebKitStateChangedEventFunction)(wxWebKitStateChangedEvent&);
448f8f12 200typedef void (wxEvtHandler::*wxWebKitBeforeLoadEventFunction)(wxWebKitBeforeLoadEvent&);
fa34bc53 201typedef void (wxEvtHandler::*wxWebKitNewWindowEventFunction)(wxWebKitNewWindowEvent&);
2c990ba6 202
3c778901
VZ
203#define wxWebKitStateChangedEventHandler( func ) \
204 wxEVENT_HANDLER_CAST( wxWebKitStateChangedEventFunction, func )
205
206#define wxWebKitBeforeLoadEventHandler( func ) \
207 wxEVENT_HANDLER_CAST( wxWebKitBeforeLoadEventFunction, func )
208
209#define wxWebKitNewWindowEventHandler( func ) \
210 wxEVENT_HANDLER_CAST( wxWebKitNewWindowEventFunction, func )
211
9b11752c
VZ
212wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_WEBKIT_STATE_CHANGED, wxWebKitStateChangedEvent );
213wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_WEBKIT_BEFORE_LOAD, wxWebKitBeforeLoadEvent );
214wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_WEBKIT_NEW_WINDOW, wxWebKitNewWindowEvent );
2c990ba6
KO
215
216#define EVT_WEBKIT_STATE_CHANGED(func) \
a0e9a5df 217 wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_WEBKIT_STATE_CHANGED, \
6953da00
WS
218 wxID_ANY, \
219 wxID_ANY, \
3c778901 220 wxWebKitStateChangedEventHandler( func ), \
d3b9f782 221 NULL ),
c058cafa 222
448f8f12 223#define EVT_WEBKIT_BEFORE_LOAD(func) \
a0e9a5df 224 wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_WEBKIT_BEFORE_LOAD, \
448f8f12
KO
225 wxID_ANY, \
226 wxID_ANY, \
3c778901 227 wxWebKitBeforeLoadEventHandler( func ), \
d3b9f782 228 NULL ),
2c990ba6 229
fa34bc53 230#define EVT_WEBKIT_NEW_WINDOW(func) \
a0e9a5df 231 wxDECLARE_EVENT_TABLE_ENTRY( wxEVT_WEBKIT_NEW_WINDOW, \
fa34bc53
RD
232 wxID_ANY, \
233 wxID_ANY, \
7182483b 234 wxWebKitNewWindowEventHandler( func ), \
d3b9f782 235 NULL ),
5b8f917c
KO
236#endif // wxUSE_WEBKIT
237
1b88201f
WS
238#endif
239 // _WX_WEBKIT_H_