2011-05-04 14:24:30 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: include/wx/osx/webkit.h
|
2011-07-05 09:57:44 -04:00
|
|
|
// Purpose: wxWebViewWebKit - embeddable web kit control,
|
2011-05-04 14:24:30 -04:00
|
|
|
// OS X implementation of web view component
|
|
|
|
// Author: Jethro Grassie / Kevin Ollivier / Marianne Gagnon
|
|
|
|
// Modified by:
|
|
|
|
// Created: 2004-4-16
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Jethro Grassie / Kevin Ollivier / Marianne Gagnon
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_WEBKIT_H
|
|
|
|
#define _WX_WEBKIT_H
|
|
|
|
|
|
|
|
#include "wx/setup.h"
|
|
|
|
|
|
|
|
#if wxUSE_WEBKIT && (defined(__WXMAC__) || defined(__WXCOCOA__))
|
|
|
|
|
|
|
|
#include "wx/control.h"
|
|
|
|
#include "wx/webview.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// Web Kit Control
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2011-07-05 09:57:44 -04:00
|
|
|
class WXDLLIMPEXP_WEB wxWebViewWebKit : public wxWebView
|
2011-05-04 14:24:30 -04:00
|
|
|
{
|
|
|
|
public:
|
2011-07-05 09:57:44 -04:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxWebViewWebKit);
|
2011-05-04 14:24:30 -04:00
|
|
|
|
2011-07-05 09:57:44 -04:00
|
|
|
wxWebViewWebKit() {}
|
|
|
|
wxWebViewWebKit(wxWindow *parent,
|
2011-05-04 14:24:30 -04:00
|
|
|
wxWindowID winID = wxID_ANY,
|
|
|
|
const wxString& strURL = wxWebViewDefaultURLStr,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize, long style = 0,
|
|
|
|
const wxString& name = wxWebViewNameStr)
|
|
|
|
{
|
|
|
|
Create(parent, winID, strURL, pos, size, style, name);
|
|
|
|
}
|
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID winID = wxID_ANY,
|
|
|
|
const wxString& strURL = wxWebViewDefaultURLStr,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize, long style = 0,
|
|
|
|
const wxString& name = wxWebViewNameStr);
|
2011-07-05 09:57:44 -04:00
|
|
|
virtual ~wxWebViewWebKit();
|
2011-05-04 14:24:30 -04:00
|
|
|
|
|
|
|
void InternalLoadURL(const wxString &url);
|
|
|
|
|
|
|
|
virtual bool CanGoBack();
|
|
|
|
virtual bool CanGoForward();
|
|
|
|
virtual void GoBack();
|
|
|
|
virtual void GoForward();
|
2011-05-06 09:37:01 -04:00
|
|
|
virtual void Reload(wxWebViewReloadFlags flags = wxWEB_VIEW_RELOAD_DEFAULT);
|
2011-05-04 14:24:30 -04:00
|
|
|
virtual void Stop();
|
|
|
|
virtual wxString GetPageSource();
|
|
|
|
virtual void SetPageTitle(const wxString& title) { m_pageTitle = title; }
|
|
|
|
virtual wxString GetPageTitle(){ return m_pageTitle; }
|
|
|
|
|
|
|
|
virtual void SetPage(const wxString& html, const wxString& baseUrl);
|
|
|
|
|
|
|
|
virtual void Print();
|
|
|
|
|
|
|
|
virtual void LoadUrl(const wxString& url);
|
|
|
|
virtual wxString GetCurrentURL();
|
|
|
|
virtual wxString GetCurrentTitle();
|
|
|
|
virtual wxWebViewZoom GetZoom();
|
|
|
|
virtual void SetZoom(wxWebViewZoom zoom);
|
|
|
|
|
|
|
|
virtual void SetZoomType(wxWebViewZoomType zoomType);
|
|
|
|
virtual wxWebViewZoomType GetZoomType() const;
|
|
|
|
virtual bool CanSetZoomType(wxWebViewZoomType type) const;
|
|
|
|
|
|
|
|
virtual bool IsBusy() { return m_busy; }
|
|
|
|
|
|
|
|
// ---- methods not from the parent (common) interface
|
|
|
|
wxString GetSelectedText();
|
|
|
|
|
|
|
|
wxString RunScript(const wxString& javascript);
|
|
|
|
|
|
|
|
bool CanGetPageSource();
|
|
|
|
|
|
|
|
void SetScrollPos(int pos);
|
|
|
|
int GetScrollPos();
|
|
|
|
|
|
|
|
void MakeEditable(bool enable = true);
|
|
|
|
bool IsEditable();
|
|
|
|
|
|
|
|
wxString GetSelection();
|
|
|
|
|
|
|
|
bool CanIncreaseTextSize();
|
|
|
|
void IncreaseTextSize();
|
|
|
|
bool CanDecreaseTextSize();
|
|
|
|
void DecreaseTextSize();
|
|
|
|
|
|
|
|
float GetWebkitZoom();
|
|
|
|
void SetWebkitZoom(float zoom);
|
|
|
|
|
|
|
|
// don't hide base class virtuals
|
|
|
|
virtual void SetScrollPos( int orient, int pos, bool refresh = true )
|
|
|
|
{ return wxControl::SetScrollPos(orient, pos, refresh); }
|
|
|
|
virtual int GetScrollPos( int orient ) const
|
|
|
|
{ return wxControl::GetScrollPos(orient); }
|
|
|
|
|
|
|
|
//we need to resize the webview when the control size changes
|
|
|
|
void OnSize(wxSizeEvent &event);
|
|
|
|
void OnMove(wxMoveEvent &event);
|
|
|
|
void OnMouseEvents(wxMouseEvent &event);
|
|
|
|
|
|
|
|
bool m_busy;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
void MacVisibilityChanged();
|
|
|
|
|
|
|
|
private:
|
|
|
|
wxWindow *m_parent;
|
|
|
|
wxWindowID m_windowID;
|
|
|
|
wxString m_pageTitle;
|
|
|
|
|
|
|
|
struct objc_object *m_webView;
|
|
|
|
|
|
|
|
// we may use this later to setup our own mouse events,
|
|
|
|
// so leave it in for now.
|
|
|
|
void* m_webKitCtrlEventHandler;
|
|
|
|
//It should be WebView*, but WebView is an Objective-C class
|
|
|
|
//TODO: look into using DECLARE_WXCOCOA_OBJC_CLASS rather than this.
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // wxUSE_WEBKIT
|
|
|
|
|
|
|
|
#endif // _WX_WEBKIT_H_
|