git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68480
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#error "wxStyledTextControl is needed by this sample"
#endif
#error "wxStyledTextControl is needed by this sample"
#endif
+#if defined(__WXMSW__) || defined(__WXOSX__)
#include "stop.xpm"
#include "refresh.xpm"
#include "stop.xpm"
#include "refresh.xpm"
#include "wxlogo.xpm"
class WebApp : public wxApp
#include "wxlogo.xpm"
class WebApp : public wxApp
wxCommandEventHandler(WebFrame::OnMode), NULL, this );
}
wxCommandEventHandler(WebFrame::OnMode), NULL, this );
}
-void WebFrame::OnAnimationTimer(wxTimerEvent& evt)
+void WebFrame::OnAnimationTimer(wxTimerEvent& WXUNUSED(evt))
{
m_animation_angle += 15;
if (m_animation_angle > 360) m_animation_angle -= 360;
{
m_animation_angle += 15;
if (m_animation_angle > 360) m_animation_angle -= 360;
/**
* Callback invoked when user entered an URL and pressed enter
*/
/**
* Callback invoked when user entered an URL and pressed enter
*/
-void WebFrame::OnUrl(wxCommandEvent& evt)
+void WebFrame::OnUrl(wxCommandEvent& WXUNUSED(evt))
{
m_browser->LoadUrl( m_url->GetValue() );
UpdateState();
{
m_browser->LoadUrl( m_url->GetValue() );
UpdateState();
/**
* Callback invoked when user pressed the "back" button
*/
/**
* Callback invoked when user pressed the "back" button
*/
-void WebFrame::OnBack(wxCommandEvent& evt)
+void WebFrame::OnBack(wxCommandEvent& WXUNUSED(evt))
{
m_browser->GoBack();
UpdateState();
{
m_browser->GoBack();
UpdateState();
/**
* Callback invoked when user pressed the "forward" button
*/
/**
* Callback invoked when user pressed the "forward" button
*/
-void WebFrame::OnForward(wxCommandEvent& evt)
+void WebFrame::OnForward(wxCommandEvent& WXUNUSED(evt))
{
m_browser->GoForward();
UpdateState();
{
m_browser->GoForward();
UpdateState();
/**
* Callback invoked when user pressed the "stop" button
*/
/**
* Callback invoked when user pressed the "stop" button
*/
-void WebFrame::OnStop(wxCommandEvent& evt)
+void WebFrame::OnStop(wxCommandEvent& WXUNUSED(evt))
{
m_browser->Stop();
UpdateState();
{
m_browser->Stop();
UpdateState();
/**
* Callback invoked when user pressed the "reload" button
*/
/**
* Callback invoked when user pressed the "reload" button
*/
-void WebFrame::OnReload(wxCommandEvent& evt)
+void WebFrame::OnReload(wxCommandEvent& WXUNUSED(evt))
{
m_browser->Reload();
UpdateState();
}
{
m_browser->Reload();
UpdateState();
}
-void WebFrame::OnClearHistory(wxCommandEvent& evt)
+void WebFrame::OnClearHistory(wxCommandEvent& WXUNUSED(evt))
{
m_browser->ClearHistory();
UpdateState();
}
{
m_browser->ClearHistory();
UpdateState();
}
-void WebFrame::OnEnableHistory(wxCommandEvent& evt)
+void WebFrame::OnEnableHistory(wxCommandEvent& WXUNUSED(evt))
{
m_browser->EnableHistory(m_tools_enable_history->IsChecked());
UpdateState();
}
{
m_browser->EnableHistory(m_tools_enable_history->IsChecked());
UpdateState();
}
-void WebFrame::OnCut(wxCommandEvent& evt)
+void WebFrame::OnCut(wxCommandEvent& WXUNUSED(evt))
-void WebFrame::OnCopy(wxCommandEvent& evt)
+void WebFrame::OnCopy(wxCommandEvent& WXUNUSED(evt))
-void WebFrame::OnPaste(wxCommandEvent& evt)
+void WebFrame::OnPaste(wxCommandEvent& WXUNUSED(evt))
-void WebFrame::OnUndo(wxCommandEvent& evt)
+void WebFrame::OnUndo(wxCommandEvent& WXUNUSED(evt))
-void WebFrame::OnRedo(wxCommandEvent& evt)
+void WebFrame::OnRedo(wxCommandEvent& WXUNUSED(evt))
-void WebFrame::OnMode(wxCommandEvent& evt)
+void WebFrame::OnMode(wxCommandEvent& WXUNUSED(evt))
{
m_browser->SetEditable(m_edit_mode->IsChecked());
}
{
m_browser->SetEditable(m_edit_mode->IsChecked());
}
{
//Only notify if the document is the main frame, not a subframe
if(evt.GetURL() == m_browser->GetCurrentURL())
{
//Only notify if the document is the main frame, not a subframe
if(evt.GetURL() == m_browser->GetCurrentURL())
wxLogMessage("%s", "Document loaded; url='" + evt.GetURL() + "'");
wxLogMessage("%s", "Document loaded; url='" + evt.GetURL() + "'");
/**
* Invoked when user selects the "View Source" menu item
*/
/**
* Invoked when user selects the "View Source" menu item
*/
-void WebFrame::OnViewSourceRequest(wxCommandEvent& evt)
+void WebFrame::OnViewSourceRequest(wxCommandEvent& WXUNUSED(evt))
{
SourceViewDialog dlg(this, m_browser->GetPageSource());
dlg.ShowModal();
{
SourceViewDialog dlg(this, m_browser->GetPageSource());
dlg.ShowModal();
/**
* Invoked when user selects the "Menu" item
*/
/**
* Invoked when user selects the "Menu" item
*/
-void WebFrame::OnToolsClicked(wxCommandEvent& evt)
+void WebFrame::OnToolsClicked(wxCommandEvent& WXUNUSED(evt))
{
if(m_browser->GetCurrentURL() == "")
return;
{
if(m_browser->GetCurrentURL() == "")
return;
-void WebFrame::OnZoomLayout(wxCommandEvent& evt)
+void WebFrame::OnZoomLayout(wxCommandEvent& WXUNUSED(evt))
{
if(m_tools_layout->IsChecked())
m_browser->SetZoomType(wxWEB_VIEW_ZOOM_TYPE_LAYOUT);
{
if(m_tools_layout->IsChecked())
m_browser->SetZoomType(wxWEB_VIEW_ZOOM_TYPE_LAYOUT);
/**
* Invoked when user selects "Print" from the menu
*/
/**
* Invoked when user selects "Print" from the menu
*/
-void WebFrame::OnPrint(wxCommandEvent& evt)
+void WebFrame::OnPrint(wxCommandEvent& WXUNUSED(evt))