virtual void Reload(wxWebViewReloadFlags flags = wxWEB_VIEW_RELOAD_DEFAULT);
virtual bool CanGoBack();
virtual bool CanGoForward();
+ virtual void ClearHistory();
+ virtual void EnableHistory(bool enable = true);
virtual wxString GetCurrentURL();
virtual wxString GetCurrentTitle();
virtual wxString GetPageSource();
void GTKOnFocus(wxFocusEvent& event);
GtkWidget *web_view;
+ gint m_historyLimit;
// FIXME: try to get DECLARE_DYNAMIC_CLASS macros & stuff right
//DECLARE_DYNAMIC_CLASS(wxWebViewWebKit)
void OnForward(wxCommandEvent& evt);
void OnStop(wxCommandEvent& evt);
void OnReload(wxCommandEvent& evt);
+ void OnClearHistory(wxCommandEvent& evt);
+ void OnEnableHistory(wxCommandEvent& evt);
void OnNavigationRequest(wxWebNavigationEvent& evt);
void OnNavigationComplete(wxWebNavigationEvent& evt);
void OnDocumentLoaded(wxWebNavigationEvent& evt);
wxMenuItem* m_tools_largest;
wxMenuItem* m_tools_handle_navigation;
wxMenuItem* m_tools_handle_new_window;
+ wxMenuItem* m_tools_enable_history;
wxTimer* m_timer;
int m_animation_angle;
m_tools_menu->AppendSeparator();
m_tools_handle_navigation = m_tools_menu->AppendCheckItem(wxID_ANY, _("Handle Navigation"));
m_tools_handle_new_window = m_tools_menu->AppendCheckItem(wxID_ANY, _("Handle New Windows"));
+ m_tools_menu->AppendSeparator();
+ wxMenuItem* clearhist = m_tools_menu->Append(wxID_ANY, _("Clear History"));
+ m_tools_enable_history = m_tools_menu->AppendCheckItem(wxID_ANY, _("Enable History"));
//By default we want to handle navigation and new windows
m_tools_handle_navigation->Check();
m_tools_handle_new_window->Check();
+ m_tools_enable_history->Check();
// Connect the toolbar events
wxCommandEventHandler(WebFrame::OnSetZoom), NULL, this );
Connect(m_tools_largest->GetId(), wxEVT_COMMAND_MENU_SELECTED,
wxCommandEventHandler(WebFrame::OnSetZoom), NULL, this );
+ Connect(clearhist->GetId(), wxEVT_COMMAND_MENU_SELECTED,
+ wxCommandEventHandler(WebFrame::OnClearHistory), NULL, this );
+ Connect(m_tools_enable_history->GetId(), wxEVT_COMMAND_MENU_SELECTED,
+ wxCommandEventHandler(WebFrame::OnEnableHistory), NULL, this );
}
void WebFrame::OnAnimationTimer(wxTimerEvent& evt)
UpdateState();
}
+void WebFrame::OnClearHistory(wxCommandEvent& evt)
+{
+ m_browser->ClearHistory();
+ UpdateState();
+}
+
+void WebFrame::OnEnableHistory(wxCommandEvent& evt)
+{
+ m_browser->EnableHistory(m_tools_enable_history->IsChecked());
+ UpdateState();
+}
+
/**
* Callback invoked when there is a request to load a new page (for instance
* when the user clicks a link)
/* Open a webpage */
webkit_web_view_load_uri (WEBKIT_WEB_VIEW (web_view), url);
+ //Get the initial history limit so we can enable and disable it later
+ WebKitWebBackForwardList* history;
+ history = webkit_web_view_get_back_forward_list(WEBKIT_WEB_VIEW(web_view));
+ m_historyLimit = webkit_web_back_forward_list_get_limit(history);
+
m_ready = true;
return true;
return webkit_web_view_can_go_forward (WEBKIT_WEB_VIEW(web_view));
}
+void wxWebViewWebKit::ClearHistory()
+{
+ WebKitWebBackForwardList* history;
+ history = webkit_web_view_get_back_forward_list(WEBKIT_WEB_VIEW(web_view));
+ webkit_web_back_forward_list_clear(history);
+}
+
+void wxWebViewWebKit::EnableHistory(bool enable)
+{
+ WebKitWebBackForwardList* history;
+ history = webkit_web_view_get_back_forward_list(WEBKIT_WEB_VIEW(web_view));
+ if(enable)
+ {
+ webkit_web_back_forward_list_set_limit(history, m_historyLimit);
+ }
+ else
+ {
+ webkit_web_back_forward_list_set_limit(history, 0);
+ }
+}
wxString wxWebViewWebKit::GetCurrentURL()
{