]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/html/webkit.h
Fixes to comparison operators for wxDVC classes.
[wxWidgets.git] / include / wx / html / webkit.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/html/webkit.h
3// Purpose: wxWebKitCtrl - embeddable web kit control
4// Author: Jethro Grassie / Kevin Ollivier
5// Modified by:
6// Created: 2004-4-16
7// RCS-ID: $Id$
8// Copyright: (c) Jethro Grassie / Kevin Ollivier
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_WEBKIT_H
13#define _WX_WEBKIT_H
14
15#if wxUSE_WEBKIT
16
17#if !defined(__WXMAC__) && !defined(__WXCOCOA__)
18#error "wxWebKitCtrl not implemented for this platform"
19#endif
20
21#include "wx/control.h"
22
23// ----------------------------------------------------------------------------
24// Web Kit Control
25// ----------------------------------------------------------------------------
26
27class WXDLLIMPEXP_CORE wxWebKitCtrl : public wxControl
28{
29public:
30 DECLARE_DYNAMIC_CLASS(wxWebKitCtrl)
31
32 wxWebKitCtrl() {};
33 wxWebKitCtrl(wxWindow *parent,
34 wxWindowID winID,
35 const wxString& strURL,
36 const wxPoint& pos = wxDefaultPosition,
37 const wxSize& size = wxDefaultSize, long style = 0,
38 const wxValidator& validator = wxDefaultValidator,
39 const wxString& name = wxT("webkitctrl"))
40 {
41 Create(parent, winID, strURL, pos, size, style, validator, name);
42 };
43 bool Create(wxWindow *parent,
44 wxWindowID winID,
45 const wxString& strURL,
46 const wxPoint& pos = wxDefaultPosition,
47 const wxSize& size = wxDefaultSize, long style = 0,
48 const wxValidator& validator = wxDefaultValidator,
49 const wxString& name = wxT("webkitctrl"));
50 virtual ~wxWebKitCtrl();
51
52 void LoadURL(const wxString &url);
53
54 bool CanGoBack();
55 bool CanGoForward();
56 bool GoBack();
57 bool GoForward();
58 void Reload();
59 void Stop();
60 bool CanGetPageSource();
61 wxString GetPageSource();
62 void SetPageSource(const wxString& source, const wxString& baseUrl = wxEmptyString);
63 wxString GetPageURL(){ return m_currentURL; }
64 void SetPageTitle(const wxString& title) { m_pageTitle = title; }
65 wxString GetPageTitle(){ return m_pageTitle; }
66
67 // since these worked in 2.6, add wrappers
68 void SetTitle(const wxString& title) { SetPageTitle(title); }
69 wxString GetTitle() { return GetPageTitle(); }
70
71 wxString GetSelection();
72
73 bool CanIncreaseTextSize();
74 void IncreaseTextSize();
75 bool CanDecreaseTextSize();
76 void DecreaseTextSize();
77
78 void Print(bool showPrompt = false);
79
80 void MakeEditable(bool enable = true);
81 bool IsEditable();
82
83 wxString RunScript(const wxString& javascript);
84
85 void SetScrollPos(int pos);
86 int GetScrollPos();
87
88 // don't hide base class virtuals
89 virtual void SetScrollPos( int orient, int pos, bool refresh = true )
90 { return wxControl::SetScrollPos(orient, pos, refresh); }
91 virtual int GetScrollPos( int orient ) const
92 { return wxControl::GetScrollPos(orient); }
93
94 //we need to resize the webview when the control size changes
95 void OnSize(wxSizeEvent &event);
96 void OnMove(wxMoveEvent &event);
97 void OnMouseEvents(wxMouseEvent &event);
98protected:
99 DECLARE_EVENT_TABLE()
100 void MacVisibilityChanged();
101
102private:
103 wxWindow *m_parent;
104 wxWindowID m_windowID;
105 wxString m_currentURL;
106 wxString m_pageTitle;
107
108 struct objc_object *m_webView;
109
110 // we may use this later to setup our own mouse events,
111 // so leave it in for now.
112 void* m_webKitCtrlEventHandler;
113 //It should be WebView*, but WebView is an Objective-C class
114 //TODO: look into using DECLARE_WXCOCOA_OBJC_CLASS rather than this.
115};
116
117// ----------------------------------------------------------------------------
118// Web Kit Events
119// ----------------------------------------------------------------------------
120
121enum {
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,
127 wxWEBKIT_STATE_FAILED = 32
128};
129
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
142class WXDLLIMPEXP_CORE wxWebKitBeforeLoadEvent : public wxCommandEvent
143{
144 DECLARE_DYNAMIC_CLASS( wxWebKitBeforeLoadEvent )
145
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
154 wxWebKitBeforeLoadEvent( wxWindow* win = NULL );
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
163class WXDLLIMPEXP_CORE wxWebKitStateChangedEvent : public wxCommandEvent
164{
165 DECLARE_DYNAMIC_CLASS( wxWebKitStateChangedEvent )
166
167public:
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; }
172
173 wxWebKitStateChangedEvent( wxWindow* win = NULL );
174 wxEvent *Clone(void) const { return new wxWebKitStateChangedEvent(*this); }
175
176protected:
177 int m_state;
178 wxString m_url;
179};
180
181
182class WXDLLIMPEXP_CORE wxWebKitNewWindowEvent : public wxCommandEvent
183{
184 DECLARE_DYNAMIC_CLASS( wxWebViewNewWindowEvent )
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
199typedef void (wxEvtHandler::*wxWebKitStateChangedEventFunction)(wxWebKitStateChangedEvent&);
200typedef void (wxEvtHandler::*wxWebKitBeforeLoadEventFunction)(wxWebKitBeforeLoadEvent&);
201typedef void (wxEvtHandler::*wxWebKitNewWindowEventFunction)(wxWebKitNewWindowEvent&);
202
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
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 );
215
216#define EVT_WEBKIT_STATE_CHANGED(func) \
217 DECLARE_EVENT_TABLE_ENTRY( wxEVT_WEBKIT_STATE_CHANGED, \
218 wxID_ANY, \
219 wxID_ANY, \
220 wxWebKitStateChangedEventHandler( func ), \
221 NULL ),
222
223#define EVT_WEBKIT_BEFORE_LOAD(func) \
224 DECLARE_EVENT_TABLE_ENTRY( wxEVT_WEBKIT_BEFORE_LOAD, \
225 wxID_ANY, \
226 wxID_ANY, \
227 wxWebKitBeforeLoadEventHandler( func ), \
228 NULL ),
229
230#define EVT_WEBKIT_NEW_WINDOW(func) \
231 DECLARE_EVENT_TABLE_ENTRY( wxEVT_WEBKIT_NEW_WINDOW, \
232 wxID_ANY, \
233 wxID_ANY, \
234 wxWebKitNewWindowEventFunction( func ), \
235 NULL ),
236#endif // wxUSE_WEBKIT
237
238#endif
239 // _WX_WEBKIT_H_