]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/html/webkit.h
Add wxLaunchDefaultBrowser, note wxGetKeyState change
[wxWidgets.git] / include / wx / html / webkit.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: 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 defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16#pragma interface "webkit.h"
17#endif
18
19#if wxUSE_WEBKIT
20
21#if !defined(__WXMAC__) && !defined(__WXCOCOA__)
22#error "wxWebKitCtrl not implemented for this platform"
23#endif
24
25#ifdef __WXCOCOA
26#include <WebKit/WebKit.h>
27#endif
28#include "wx/control.h"
29
30// ----------------------------------------------------------------------------
31// Web Kit Control
32// ----------------------------------------------------------------------------
33
34class wxWebKitCtrl : public wxControl
35{
36public:
37 DECLARE_DYNAMIC_CLASS(wxWebKitCtrl)
38
39 wxWebKitCtrl() {};
40 wxWebKitCtrl(wxWindow *parent,
41 wxWindowID winID,
42 const wxString& strURL,
43 const wxPoint& pos = wxDefaultPosition,
44 const wxSize& size = wxDefaultSize, long style = 0,
45 const wxValidator& validator = wxDefaultValidator,
46 const wxString& name = wxT("webkitctrl"))
47 {
48 Create(parent, winID, strURL, pos, size, style, validator, name);
49 };
50 bool Create(wxWindow *parent,
51 wxWindowID winID,
52 const wxString& strURL,
53 const wxPoint& pos = wxDefaultPosition,
54 const wxSize& size = wxDefaultSize, long style = 0,
55 const wxValidator& validator = wxDefaultValidator,
56 const wxString& name = wxT("webkitctrl"));
57 virtual ~wxWebKitCtrl();
58
59 void LoadURL(const wxString &url);
60
61 bool CanGoBack();
62 bool CanGoForward();
63 bool GoBack();
64 bool GoForward();
65 void Reload();
66 void Stop();
67 bool CanGetPageSource();
68 wxString GetPageSource();
69 void SetPageSource(wxString& source, const wxString& baseUrl = wxEmptyString);
70 wxString GetPageURL(){ return m_currentURL; }
71 wxString GetPageTitle(){ return m_pageTitle; }
72
73 //we need to resize the webview when the control size changes
74 void OnSize(wxSizeEvent &event);
75protected:
76 DECLARE_EVENT_TABLE()
77 void MacVisibilityChanged();
78
79private:
80 wxWindow *m_parent;
81 wxWindowID m_windowID;
82 wxString m_currentURL;
83 wxString m_pageTitle;
84 struct objc_object *m_webView;
85 //It should be WebView*, but WebView is an Objective-C class
86 //TODO: look into using DECLARE_WXCOCOA_OBJC_CLASS rather than this.
87};
88
89// ----------------------------------------------------------------------------
90// Web Kit Events
91// ----------------------------------------------------------------------------
92
93enum {
94 wxWEBKIT_STATE_START = 1,
95 wxWEBKIT_STATE_NEGOTIATING = 2,
96 wxWEBKIT_STATE_REDIRECTING = 4,
97 wxWEBKIT_STATE_TRANSFERRING = 8,
98 wxWEBKIT_STATE_STOP = 16,
99 wxWEBKIT_STATE_FAILED = 32
100};
101
102class wxWebKitStateChangedEvent : public wxCommandEvent
103{
104 DECLARE_DYNAMIC_CLASS( wxWebKitStateChangedEvent )
105
106public:
107 int GetState() { return m_state; }
108 void SetState(const int state) { m_state = state; }
109 wxString GetURL() { return m_url; }
110 void SetURL(const wxString& url) { m_url = url; }
111
112 wxWebKitStateChangedEvent( wxWindow* win = (wxWindow*) NULL );
113 wxEvent *Clone(void) const { return new wxWebKitStateChangedEvent(*this); }
114
115protected:
116 int m_state;
117 wxString m_url;
118};
119
120typedef void (wxEvtHandler::*wxWebKitStateChangedEventFunction)(wxWebKitStateChangedEvent&);
121
122BEGIN_DECLARE_EVENT_TYPES()
123 DECLARE_LOCAL_EVENT_TYPE(wxEVT_WEBKIT_STATE_CHANGED, wxID_ANY)
124END_DECLARE_EVENT_TYPES()
125
126#define EVT_WEBKIT_STATE_CHANGED(func) \
127 DECLARE_EVENT_TABLE_ENTRY( wxEVT_WEBKIT_STATE_CHANGED, \
128 wxID_ANY, \
129 wxID_ANY, \
130 (wxObjectEventFunction) \
131 (wxWebKitStateChangedEventFunction) & func, \
132 (wxObject *) NULL ),
133
134#endif // wxUSE_WEBKIT
135
136#endif // _WX_WEBKIT_H_