#ifndef _WX_WEBKIT_H
#define _WX_WEBKIT_H
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma interface "webkit.h"
#endif
class wxWebKitCtrl : public wxControl
{
public:
- DECLARE_DYNAMIC_CLASS(wxWebKitCtrl)
+ DECLARE_DYNAMIC_CLASS(wxWebKitCtrl)
- wxWebKitCtrl() {};
+ wxWebKitCtrl() {};
wxWebKitCtrl(wxWindow *parent,
- wxWindowID winID,
+ wxWindowID winID,
const wxString& strURL,
const wxPoint& pos = wxDefaultPosition,
- const wxSize& size = wxDefaultSize, long style = 0,
- const wxValidator& validator = wxDefaultValidator,
- const wxString& name = wxT("webkitctrl"))
+ const wxSize& size = wxDefaultSize, long style = 0,
+ const wxValidator& validator = wxDefaultValidator,
+ const wxString& name = wxT("webkitctrl"))
{
Create(parent, winID, strURL, pos, size, style, validator, name);
};
- bool Create(wxWindow *parent,
+ bool Create(wxWindow *parent,
wxWindowID winID,
const wxString& strURL,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, long style = 0,
const wxValidator& validator = wxDefaultValidator,
const wxString& name = wxT("webkitctrl"));
- virtual ~wxWebKitCtrl();
-
+ virtual ~wxWebKitCtrl();
+
void LoadURL(const wxString &url);
bool CanGoBack();
//we need to resize the webview when the control size changes
//void OnSize(wxSizeEvent &event);
protected:
- DECLARE_EVENT_TABLE()
+ DECLARE_EVENT_TABLE()
private:
wxWindow *m_parent;
// ----------------------------------------------------------------------------
enum {
- wxWEBKIT_STATE_START = 1,
- wxWEBKIT_STATE_NEGOTIATING = 2,
- wxWEBKIT_STATE_REDIRECTING = 4,
- wxWEBKIT_STATE_TRANSFERRING = 8,
- wxWEBKIT_STATE_STOP = 16,
+ wxWEBKIT_STATE_START = 1,
+ wxWEBKIT_STATE_NEGOTIATING = 2,
+ wxWEBKIT_STATE_REDIRECTING = 4,
+ wxWEBKIT_STATE_TRANSFERRING = 8,
+ wxWEBKIT_STATE_STOP = 16,
wxWEBKIT_STATE_FAILED = 32
};
DECLARE_DYNAMIC_CLASS( wxWebKitStateChangedEvent )
public:
- 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; }
+ 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; }
wxWebKitStateChangedEvent( wxWindow* win = (wxWindow*) NULL );
- wxEvent *Clone(void) const { return new wxWebKitStateChangedEvent(*this); }
+ wxEvent *Clone(void) const { return new wxWebKitStateChangedEvent(*this); }
protected:
- int m_state;
- wxString m_url;
+ int m_state;
+ wxString m_url;
};
typedef void (wxEvtHandler::*wxWebKitStateChangedEventFunction)(wxWebKitStateChangedEvent&);
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
#pragma implementation "webkit.h"
#endif
{
SetEventType( wxEVT_WEBKIT_STATE_CHANGED);
SetEventObject( win );
- SetId(win->GetId());
+ SetId(win->GetId());
}
//---------------------------------------------------------
// ----------------------------------------------------------------------------
bool wxWebKitCtrl::Create(wxWindow *parent,
- wxWindowID winID,
+ wxWindowID winID,
const wxString& strURL,
const wxPoint& pos,
- const wxSize& size, long style,
- const wxValidator& validator,
- const wxString& name)
+ const wxSize& size, long style,
+ const wxValidator& validator,
+ const wxString& name)
{
m_currentURL = strURL;
//still needed for wxCocoa??
/*
int width, height;
- wxSize sizeInstance;
- if (size.x == -1 || size.y == -1)
- {
- m_parent->GetClientSize(&width, &height);
- sizeInstance.x = width;
- sizeInstance.y = height;
- }
- else
- {
- sizeInstance.x = size.x;
- sizeInstance.y = size.y;
- }
-*/
- // now create and attach WebKit view...
+ wxSize sizeInstance;
+ if (size.x == -1 || size.y == -1)
+ {
+ m_parent->GetClientSize(&width, &height);
+ sizeInstance.x = width;
+ sizeInstance.y = height;
+ }
+ else
+ {
+ sizeInstance.x = size.x;
+ sizeInstance.y = size.y;
+ }
+*/
+ // now create and attach WebKit view...
#ifdef __WXCOCOA__
wxControl::Create(parent, m_windowID, pos, sizeInstance, style , validator , name);
- SetSize(pos.x, pos.y, sizeInstance.x, sizeInstance.y);
+ SetSize(pos.x, pos.y, sizeInstance.x, sizeInstance.y);
wxTopLevelWindowCocoa *topWin = wxDynamicCast(this, wxTopLevelWindowCocoa);
NSWindow* nsWin = topWin->GetNSWindow();
- NSRect rect;
+ NSRect rect;
rect.origin.x = pos.x;
rect.origin.y = pos.y;
rect.size.width = sizeInstance.x;
// Register event listener interfaces
MyFrameLoadMonitor* myFrameLoadMonitor = [[MyFrameLoadMonitor alloc] initWithWxWindow: (wxWindow*)this];
- [m_webView setFrameLoadDelegate:myFrameLoadMonitor];
+ [m_webView setFrameLoadDelegate:myFrameLoadMonitor];
LoadURL(m_currentURL);
return true;
}
- initWithWxWindow: (wxWindow*)inWindow
{
[super init];
- webKitWindow = inWindow; // non retained
+ webKitWindow = inWindow; // non retained
return self;
}
webKitWindow->SetTitle(wxStringWithNSString( title ));
}
}
-@end
\ No newline at end of file
+@end