2004-05-19 02:20:53 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-10-17 14:44:52 +00:00
|
|
|
// Name: wx/html/webkit.h
|
2004-05-19 02:20:53 +00:00
|
|
|
// Purpose: wxWebKitCtrl - embeddable web kit control
|
|
|
|
// Author: Jethro Grassie / Kevin Ollivier
|
|
|
|
// Modified by:
|
|
|
|
// Created: 2004-4-16
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Jethro Grassie / Kevin Ollivier
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2004-05-19 02:20:53 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_WEBKIT_H
|
|
|
|
#define _WX_WEBKIT_H
|
|
|
|
|
2004-06-04 16:07:28 +00:00
|
|
|
#if wxUSE_WEBKIT
|
|
|
|
|
2004-05-19 02:20:53 +00:00
|
|
|
#if !defined(__WXMAC__) && !defined(__WXCOCOA__)
|
|
|
|
#error "wxWebKitCtrl not implemented for this platform"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/control.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Web Kit Control
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2009-05-07 07:39:43 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxWebKitCtrl : public wxControl
|
2004-05-19 02:20:53 +00:00
|
|
|
{
|
|
|
|
public:
|
2004-05-24 21:50:00 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxWebKitCtrl)
|
2004-05-19 02:20:53 +00:00
|
|
|
|
2004-05-24 21:50:00 +00:00
|
|
|
wxWebKitCtrl() {};
|
2004-05-19 02:20:53 +00:00
|
|
|
wxWebKitCtrl(wxWindow *parent,
|
2004-05-24 21:50:00 +00:00
|
|
|
wxWindowID winID,
|
2004-05-19 02:20:53 +00:00
|
|
|
const wxString& strURL,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
2004-05-24 21:50:00 +00:00
|
|
|
const wxSize& size = wxDefaultSize, long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxT("webkitctrl"))
|
2004-05-19 02:20:53 +00:00
|
|
|
{
|
|
|
|
Create(parent, winID, strURL, pos, size, style, validator, name);
|
|
|
|
};
|
2004-05-24 21:50:00 +00:00
|
|
|
bool Create(wxWindow *parent,
|
2004-05-19 02:20:53 +00:00
|
|
|
wxWindowID winID,
|
|
|
|
const wxString& strURL,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize, long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
2004-05-24 21:00:07 +00:00
|
|
|
const wxString& name = wxT("webkitctrl"));
|
2004-05-24 21:50:00 +00:00
|
|
|
virtual ~wxWebKitCtrl();
|
2004-09-27 19:06:39 +00:00
|
|
|
|
2004-05-19 02:20:53 +00:00
|
|
|
void LoadURL(const wxString &url);
|
2004-09-27 19:06:39 +00:00
|
|
|
|
2004-05-19 02:20:53 +00:00
|
|
|
bool CanGoBack();
|
|
|
|
bool CanGoForward();
|
|
|
|
bool GoBack();
|
|
|
|
bool GoForward();
|
2004-09-27 19:06:39 +00:00
|
|
|
void Reload();
|
2004-05-19 02:20:53 +00:00
|
|
|
void Stop();
|
|
|
|
bool CanGetPageSource();
|
|
|
|
wxString GetPageSource();
|
2006-10-19 00:40:23 +00:00
|
|
|
void SetPageSource(const wxString& source, const wxString& baseUrl = wxEmptyString);
|
2008-08-30 22:01:20 +00:00
|
|
|
wxString GetPageURL(){ return m_currentURL; }
|
2006-10-19 00:40:23 +00:00
|
|
|
void SetPageTitle(const wxString& title) { m_pageTitle = title; }
|
2008-08-30 22:01:20 +00:00
|
|
|
wxString GetPageTitle(){ return m_pageTitle; }
|
2008-01-27 13:21:39 +00:00
|
|
|
|
2006-10-19 00:40:23 +00:00
|
|
|
// since these worked in 2.6, add wrappers
|
|
|
|
void SetTitle(const wxString& title) { SetPageTitle(title); }
|
|
|
|
wxString GetTitle() { return GetPageTitle(); }
|
2008-01-27 13:21:39 +00:00
|
|
|
|
2006-10-19 00:40:23 +00:00
|
|
|
wxString GetSelection();
|
2008-01-27 13:21:39 +00:00
|
|
|
|
2006-10-19 00:40:23 +00:00
|
|
|
bool CanIncreaseTextSize();
|
|
|
|
void IncreaseTextSize();
|
|
|
|
bool CanDecreaseTextSize();
|
|
|
|
void DecreaseTextSize();
|
2008-01-27 13:21:39 +00:00
|
|
|
|
2006-10-19 00:40:23 +00:00
|
|
|
void Print(bool showPrompt=FALSE);
|
2008-01-27 13:21:39 +00:00
|
|
|
|
2006-10-19 00:40:23 +00:00
|
|
|
void MakeEditable(bool enable=TRUE);
|
|
|
|
bool IsEditable();
|
2008-01-27 13:21:39 +00:00
|
|
|
|
2006-10-19 00:40:23 +00:00
|
|
|
wxString RunScript(const wxString& javascript);
|
2008-01-27 13:21:39 +00:00
|
|
|
|
2006-10-19 00:40:23 +00:00
|
|
|
void SetScrollPos(int pos);
|
|
|
|
int GetScrollPos();
|
2004-09-26 18:03:28 +00:00
|
|
|
|
2004-05-19 02:20:53 +00:00
|
|
|
//we need to resize the webview when the control size changes
|
2004-05-25 05:54:28 +00:00
|
|
|
void OnSize(wxSizeEvent &event);
|
2006-10-19 00:40:23 +00:00
|
|
|
void OnMove(wxMoveEvent &event);
|
|
|
|
void OnMouseEvents(wxMouseEvent &event);
|
2004-05-19 02:20:53 +00:00
|
|
|
protected:
|
2004-05-24 21:50:00 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
2004-06-01 02:53:49 +00:00
|
|
|
void MacVisibilityChanged();
|
2004-05-19 02:20:53 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
wxWindow *m_parent;
|
|
|
|
wxWindowID m_windowID;
|
|
|
|
wxString m_currentURL;
|
|
|
|
wxString m_pageTitle;
|
2008-01-27 13:21:39 +00:00
|
|
|
|
2004-09-30 21:00:18 +00:00
|
|
|
struct objc_object *m_webView;
|
2008-01-27 13:21:39 +00:00
|
|
|
|
2006-10-19 00:40:23 +00:00
|
|
|
// we may use this later to setup our own mouse events,
|
|
|
|
// so leave it in for now.
|
|
|
|
void* m_webKitCtrlEventHandler;
|
2004-09-30 21:00:18 +00:00
|
|
|
//It should be WebView*, but WebView is an Objective-C class
|
|
|
|
//TODO: look into using DECLARE_WXCOCOA_OBJC_CLASS rather than this.
|
2004-05-19 02:20:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Web Kit Events
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
enum {
|
2004-05-24 21:50:00 +00:00
|
|
|
wxWEBKIT_STATE_START = 1,
|
|
|
|
wxWEBKIT_STATE_NEGOTIATING = 2,
|
|
|
|
wxWEBKIT_STATE_REDIRECTING = 4,
|
|
|
|
wxWEBKIT_STATE_TRANSFERRING = 8,
|
|
|
|
wxWEBKIT_STATE_STOP = 16,
|
2004-05-19 02:20:53 +00:00
|
|
|
wxWEBKIT_STATE_FAILED = 32
|
|
|
|
};
|
|
|
|
|
2006-10-19 00:40:23 +00:00
|
|
|
enum {
|
|
|
|
wxWEBKIT_NAV_LINK_CLICKED = 1,
|
|
|
|
wxWEBKIT_NAV_BACK_NEXT = 2,
|
|
|
|
wxWEBKIT_NAV_FORM_SUBMITTED = 4,
|
|
|
|
wxWEBKIT_NAV_RELOAD = 8,
|
|
|
|
wxWEBKIT_NAV_FORM_RESUBMITTED = 16,
|
|
|
|
wxWEBKIT_NAV_OTHER = 32
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-05-07 07:39:43 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxWebKitBeforeLoadEvent : public wxCommandEvent
|
2006-10-19 00:40:23 +00:00
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS( wxWebKitBeforeLoadEvent )
|
2008-01-27 13:21:39 +00:00
|
|
|
|
2006-10-19 00:40:23 +00:00
|
|
|
public:
|
|
|
|
bool IsCancelled() { return m_cancelled; }
|
|
|
|
void Cancel(bool cancel = true) { m_cancelled = cancel; }
|
|
|
|
wxString GetURL() { return m_url; }
|
|
|
|
void SetURL(const wxString& url) { m_url = url; }
|
|
|
|
void SetNavigationType(int navType) { m_navType = navType; }
|
|
|
|
int GetNavigationType() { return m_navType; }
|
|
|
|
|
2009-01-19 13:55:27 +00:00
|
|
|
wxWebKitBeforeLoadEvent( wxWindow* win = NULL );
|
2006-10-19 00:40:23 +00:00
|
|
|
wxEvent *Clone(void) const { return new wxWebKitBeforeLoadEvent(*this); }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool m_cancelled;
|
|
|
|
wxString m_url;
|
|
|
|
int m_navType;
|
|
|
|
};
|
|
|
|
|
2009-05-07 07:39:43 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxWebKitStateChangedEvent : public wxCommandEvent
|
2004-05-19 02:20:53 +00:00
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS( wxWebKitStateChangedEvent )
|
|
|
|
|
|
|
|
public:
|
2004-05-24 21:50:00 +00:00
|
|
|
int GetState() { return m_state; }
|
|
|
|
void SetState(const int state) { m_state = state; }
|
|
|
|
wxString GetURL() { return m_url; }
|
|
|
|
void SetURL(const wxString& url) { m_url = url; }
|
2004-05-19 02:20:53 +00:00
|
|
|
|
2009-01-19 13:55:27 +00:00
|
|
|
wxWebKitStateChangedEvent( wxWindow* win = NULL );
|
2004-05-24 21:50:00 +00:00
|
|
|
wxEvent *Clone(void) const { return new wxWebKitStateChangedEvent(*this); }
|
2004-05-19 02:20:53 +00:00
|
|
|
|
|
|
|
protected:
|
2004-05-24 21:50:00 +00:00
|
|
|
int m_state;
|
|
|
|
wxString m_url;
|
2004-05-19 02:20:53 +00:00
|
|
|
};
|
|
|
|
|
2008-05-28 06:33:46 +00:00
|
|
|
|
2009-05-07 07:39:43 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxWebKitNewWindowEvent : public wxCommandEvent
|
2008-05-28 06:33:46 +00:00
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS( wxWebViewNewWindowEvent )
|
|
|
|
public:
|
|
|
|
wxString GetURL() const { return m_url; }
|
|
|
|
void SetURL(const wxString& url) { m_url = url; }
|
|
|
|
wxString GetTargetName() const { return m_targetName; }
|
|
|
|
void SetTargetName(const wxString& name) { m_targetName = name; }
|
|
|
|
|
|
|
|
wxWebKitNewWindowEvent( wxWindow* win = (wxWindow*)(NULL));
|
|
|
|
wxEvent *Clone(void) const { return new wxWebKitNewWindowEvent(*this); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxString m_url;
|
|
|
|
wxString m_targetName;
|
|
|
|
};
|
|
|
|
|
2004-05-19 02:20:53 +00:00
|
|
|
typedef void (wxEvtHandler::*wxWebKitStateChangedEventFunction)(wxWebKitStateChangedEvent&);
|
2006-10-19 00:40:23 +00:00
|
|
|
typedef void (wxEvtHandler::*wxWebKitBeforeLoadEventFunction)(wxWebKitBeforeLoadEvent&);
|
2008-05-28 06:33:46 +00:00
|
|
|
typedef void (wxEvtHandler::*wxWebKitNewWindowEventFunction)(wxWebKitNewWindowEvent&);
|
2004-05-19 02:20:53 +00:00
|
|
|
|
2009-01-12 14:26:13 +00:00
|
|
|
#define wxWebKitStateChangedEventHandler( func ) \
|
|
|
|
wxEVENT_HANDLER_CAST( wxWebKitStateChangedEventFunction, func )
|
|
|
|
|
|
|
|
#define wxWebKitBeforeLoadEventHandler( func ) \
|
|
|
|
wxEVENT_HANDLER_CAST( wxWebKitBeforeLoadEventFunction, func )
|
|
|
|
|
|
|
|
#define wxWebKitNewWindowEventHandler( func ) \
|
|
|
|
wxEVENT_HANDLER_CAST( wxWebKitNewWindowEventFunction, func )
|
|
|
|
|
2009-02-07 18:59:25 +00:00
|
|
|
wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_WEBKIT_STATE_CHANGED, wxWebKitStateChangedEvent );
|
|
|
|
wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_WEBKIT_BEFORE_LOAD, wxWebKitBeforeLoadEvent );
|
|
|
|
wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_WEBKIT_NEW_WINDOW, wxWebKitNewWindowEvent );
|
2004-05-19 02:20:53 +00:00
|
|
|
|
|
|
|
#define EVT_WEBKIT_STATE_CHANGED(func) \
|
|
|
|
DECLARE_EVENT_TABLE_ENTRY( wxEVT_WEBKIT_STATE_CHANGED, \
|
2004-09-27 19:06:39 +00:00
|
|
|
wxID_ANY, \
|
|
|
|
wxID_ANY, \
|
2009-01-12 14:26:13 +00:00
|
|
|
wxWebKitStateChangedEventHandler( func ), \
|
2009-01-19 13:55:27 +00:00
|
|
|
NULL ),
|
2008-01-27 13:21:39 +00:00
|
|
|
|
2006-10-19 00:40:23 +00:00
|
|
|
#define EVT_WEBKIT_BEFORE_LOAD(func) \
|
|
|
|
DECLARE_EVENT_TABLE_ENTRY( wxEVT_WEBKIT_BEFORE_LOAD, \
|
|
|
|
wxID_ANY, \
|
|
|
|
wxID_ANY, \
|
2009-01-12 14:26:13 +00:00
|
|
|
wxWebKitBeforeLoadEventHandler( func ), \
|
2009-01-19 13:55:27 +00:00
|
|
|
NULL ),
|
2004-05-19 02:20:53 +00:00
|
|
|
|
2008-05-28 06:33:46 +00:00
|
|
|
#define EVT_WEBKIT_NEW_WINDOW(func) \
|
|
|
|
DECLARE_EVENT_TABLE_ENTRY( wxEVT_WEBKIT_NEW_WINDOW, \
|
|
|
|
wxID_ANY, \
|
|
|
|
wxID_ANY, \
|
2009-01-12 14:26:13 +00:00
|
|
|
wxWebKitNewWindowEventFunction( func ), \
|
2009-01-19 13:55:27 +00:00
|
|
|
NULL ),
|
2004-06-04 16:07:28 +00:00
|
|
|
#endif // wxUSE_WEBKIT
|
|
|
|
|
2006-10-17 14:44:52 +00:00
|
|
|
#endif
|
|
|
|
// _WX_WEBKIT_H_
|