Fix duplicate variable for VC++ 6

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68835 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2011-08-22 11:27:44 +00:00
parent 62f9f10d92
commit abcb9c6e58

View File

@@ -6,7 +6,7 @@
// Copyright: (c) 2010 Marianne Gagnon, Steven Lamerton // Copyright: (c) 2010 Marianne Gagnon, Steven Lamerton
// Licence: wxWindows licence // Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// headers // headers
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
@@ -178,17 +178,17 @@ WebFrame::WebFrame() : wxFrame(NULL, wxID_ANY, "wxWebView Sample")
// Create the toolbar // Create the toolbar
m_toolbar = CreateToolBar(wxTB_TEXT); m_toolbar = CreateToolBar(wxTB_TEXT);
m_toolbar->SetToolBitmapSize(wxSize(32, 32)); m_toolbar->SetToolBitmapSize(wxSize(32, 32));
wxBitmap back = wxArtProvider::GetBitmap(wxART_GO_BACK , wxART_TOOLBAR); wxBitmap back = wxArtProvider::GetBitmap(wxART_GO_BACK , wxART_TOOLBAR);
wxBitmap forward = wxArtProvider::GetBitmap(wxART_GO_FORWARD , wxART_TOOLBAR); wxBitmap forward = wxArtProvider::GetBitmap(wxART_GO_FORWARD , wxART_TOOLBAR);
#ifdef __WXGTK__ #ifdef __WXGTK__
wxBitmap stop = wxArtProvider::GetBitmap("gtk-stop", wxART_TOOLBAR); wxBitmap stop = wxArtProvider::GetBitmap("gtk-stop", wxART_TOOLBAR);
#else #else
wxBitmap stop = wxBitmap(stop_xpm); wxBitmap stop = wxBitmap(stop_xpm);
#endif #endif
#ifdef __WXGTK__ #ifdef __WXGTK__
wxBitmap refresh = wxArtProvider::GetBitmap("gtk-refresh", wxART_TOOLBAR); wxBitmap refresh = wxArtProvider::GetBitmap("gtk-refresh", wxART_TOOLBAR);
#else #else
wxBitmap refresh = wxBitmap(refresh_xpm); wxBitmap refresh = wxBitmap(refresh_xpm);
#endif #endif
@@ -291,7 +291,7 @@ WebFrame::WebFrame() : wxFrame(NULL, wxID_ANY, "wxWebView Sample")
Connect(m_toolbar_tools->GetId(), wxEVT_COMMAND_TOOL_CLICKED, Connect(m_toolbar_tools->GetId(), wxEVT_COMMAND_TOOL_CLICKED,
wxCommandEventHandler(WebFrame::OnToolsClicked), NULL, this ); wxCommandEventHandler(WebFrame::OnToolsClicked), NULL, this );
Connect(m_url->GetId(), wxEVT_COMMAND_TEXT_ENTER, Connect(m_url->GetId(), wxEVT_COMMAND_TEXT_ENTER,
wxCommandEventHandler(WebFrame::OnUrl), NULL, this ); wxCommandEventHandler(WebFrame::OnUrl), NULL, this );
// Connect the webview events // Connect the webview events
@@ -300,7 +300,7 @@ WebFrame::WebFrame() : wxFrame(NULL, wxID_ANY, "wxWebView Sample")
Connect(m_browser->GetId(), wxEVT_COMMAND_WEB_VIEW_NAVIGATED, Connect(m_browser->GetId(), wxEVT_COMMAND_WEB_VIEW_NAVIGATED,
wxWebViewEventHandler(WebFrame::OnNavigationComplete), NULL, this); wxWebViewEventHandler(WebFrame::OnNavigationComplete), NULL, this);
Connect(m_browser->GetId(), wxEVT_COMMAND_WEB_VIEW_LOADED, Connect(m_browser->GetId(), wxEVT_COMMAND_WEB_VIEW_LOADED,
wxWebViewEventHandler(WebFrame::OnDocumentLoaded), NULL, this); wxWebViewEventHandler(WebFrame::OnDocumentLoaded), NULL, this);
Connect(m_browser->GetId(), wxEVT_COMMAND_WEB_VIEW_ERROR, Connect(m_browser->GetId(), wxEVT_COMMAND_WEB_VIEW_ERROR,
wxWebViewEventHandler(WebFrame::OnError), NULL, this); wxWebViewEventHandler(WebFrame::OnError), NULL, this);
Connect(m_browser->GetId(), wxEVT_COMMAND_WEB_VIEW_NEWWINDOW, Connect(m_browser->GetId(), wxEVT_COMMAND_WEB_VIEW_NEWWINDOW,
@@ -357,14 +357,14 @@ void WebFrame::OnAnimationTimer(wxTimerEvent& WXUNUSED(evt))
{ {
m_animation_angle += 15; m_animation_angle += 15;
if (m_animation_angle > 360) m_animation_angle -= 360; if (m_animation_angle > 360) m_animation_angle -= 360;
wxBitmap image(24, 24); wxBitmap image(24, 24);
{ {
wxMemoryDC dc; wxMemoryDC dc;
dc.SelectObject(image); dc.SelectObject(image);
dc.SetBackground(wxBrush(wxColour(255,0,255))); dc.SetBackground(wxBrush(wxColour(255,0,255)));
dc.Clear(); dc.Clear();
if (m_animation_angle >= 0 && m_animation_angle <= 180) if (m_animation_angle >= 0 && m_animation_angle <= 180)
{ {
dc.SetBrush(*wxYELLOW_BRUSH); dc.SetBrush(*wxYELLOW_BRUSH);
@@ -372,9 +372,9 @@ void WebFrame::OnAnimationTimer(wxTimerEvent& WXUNUSED(evt))
dc.DrawCircle(16 - int(sin(m_animation_angle*0.01745f /* convert to radians */)*14.0f), dc.DrawCircle(16 - int(sin(m_animation_angle*0.01745f /* convert to radians */)*14.0f),
16 + int(cos(m_animation_angle*0.01745f /* convert to radians */)*14.0f), 3 ); 16 + int(cos(m_animation_angle*0.01745f /* convert to radians */)*14.0f), 3 );
} }
dc.DrawBitmap(wxBitmap(wxlogo_xpm), 0, 0, true); dc.DrawBitmap(wxBitmap(wxlogo_xpm), 0, 0, true);
if (m_animation_angle > 180) if (m_animation_angle > 180)
{ {
dc.SetBrush(*wxYELLOW_BRUSH); dc.SetBrush(*wxYELLOW_BRUSH);
@@ -382,7 +382,7 @@ void WebFrame::OnAnimationTimer(wxTimerEvent& WXUNUSED(evt))
dc.DrawCircle(16 - int(sin(m_animation_angle*0.01745f /* convert to radians */)*14.0f), dc.DrawCircle(16 - int(sin(m_animation_angle*0.01745f /* convert to radians */)*14.0f),
16 + int(cos(m_animation_angle*0.01745f /* convert to radians */)*14.0f), 3 ); 16 + int(cos(m_animation_angle*0.01745f /* convert to radians */)*14.0f), 3 );
} }
} }
image.SetMask(new wxMask(image, wxColour(255,0,255))); image.SetMask(new wxMask(image, wxColour(255,0,255)));
m_toolbar->SetToolNormalBitmap(m_toolbar_tools->GetId(), image); m_toolbar->SetToolNormalBitmap(m_toolbar_tools->GetId(), image);
} }
@@ -395,7 +395,7 @@ void WebFrame::UpdateState()
{ {
m_toolbar->EnableTool( m_toolbar_back->GetId(), m_browser->CanGoBack() ); m_toolbar->EnableTool( m_toolbar_back->GetId(), m_browser->CanGoBack() );
m_toolbar->EnableTool( m_toolbar_forward->GetId(), m_browser->CanGoForward() ); m_toolbar->EnableTool( m_toolbar_forward->GetId(), m_browser->CanGoForward() );
if (m_browser->IsBusy()) if (m_browser->IsBusy())
{ {
if (m_timer == NULL) if (m_timer == NULL)
@@ -404,16 +404,16 @@ void WebFrame::UpdateState()
this->Connect(wxEVT_TIMER, wxTimerEventHandler(WebFrame::OnAnimationTimer), NULL, this); this->Connect(wxEVT_TIMER, wxTimerEventHandler(WebFrame::OnAnimationTimer), NULL, this);
} }
m_timer->Start(100); // start animation timer m_timer->Start(100); // start animation timer
m_toolbar->EnableTool( m_toolbar_stop->GetId(), true ); m_toolbar->EnableTool( m_toolbar_stop->GetId(), true );
} }
else else
{ {
if (m_timer != NULL) m_timer->Stop(); // stop animation timer if (m_timer != NULL) m_timer->Stop(); // stop animation timer
m_toolbar->SetToolNormalBitmap(m_toolbar_tools->GetId(), wxBitmap(wxlogo_xpm)); m_toolbar->SetToolNormalBitmap(m_toolbar_tools->GetId(), wxBitmap(wxlogo_xpm));
m_toolbar->EnableTool( m_toolbar_stop->GetId(), false ); m_toolbar->EnableTool( m_toolbar_stop->GetId(), false );
} }
SetTitle( m_browser->GetCurrentTitle() ); SetTitle( m_browser->GetCurrentTitle() );
m_url->SetValue( m_browser->GetCurrentURL() ); m_url->SetValue( m_browser->GetCurrentURL() );
} }
@@ -529,7 +529,7 @@ void WebFrame::OnNavigationRequest(wxWebViewEvent& evt)
wxLogMessage("%s", "Navigation request to '" + evt.GetURL() + "' (target='" + wxLogMessage("%s", "Navigation request to '" + evt.GetURL() + "' (target='" +
evt.GetTarget() + "')"); evt.GetTarget() + "')");
wxASSERT(m_browser->IsBusy()); wxASSERT(m_browser->IsBusy());
//If we don't want to handle navigation then veto the event and navigation //If we don't want to handle navigation then veto the event and navigation
@@ -539,7 +539,7 @@ void WebFrame::OnNavigationRequest(wxWebViewEvent& evt)
evt.Veto(); evt.Veto();
if (m_timer != NULL) m_timer->Stop(); // stop animation timer if (m_timer != NULL) m_timer->Stop(); // stop animation timer
m_toolbar->SetToolNormalBitmap(m_toolbar_tools->GetId(), wxBitmap(wxlogo_xpm)); m_toolbar->SetToolNormalBitmap(m_toolbar_tools->GetId(), wxBitmap(wxlogo_xpm));
m_toolbar->EnableTool( m_toolbar_stop->GetId(), false ); m_toolbar->EnableTool( m_toolbar_stop->GetId(), false );
} }
else else
{ {
@@ -576,7 +576,7 @@ void WebFrame::OnNewWindow(wxWebViewEvent& evt)
{ {
wxLogMessage("%s", "New window; url='" + evt.GetURL() + "'"); wxLogMessage("%s", "New window; url='" + evt.GetURL() + "'");
//If we handle new window events then just load them in this window as we //If we handle new window events then just load them in this window as we
//are a single window browser //are a single window browser
if(m_tools_handle_new_window->IsChecked()) if(m_tools_handle_new_window->IsChecked())
m_browser->LoadURL(evt.GetURL()); m_browser->LoadURL(evt.GetURL());
@@ -608,7 +608,7 @@ void WebFrame::OnToolsClicked(wxCommandEvent& WXUNUSED(evt))
return; return;
m_tools_tiny->Check(false); m_tools_tiny->Check(false);
m_tools_small->Check(false); m_tools_small->Check(false);
m_tools_medium->Check(false); m_tools_medium->Check(false);
m_tools_large->Check(false); m_tools_large->Check(false);
m_tools_largest->Check(false); m_tools_largest->Check(false);
@@ -656,7 +656,8 @@ void WebFrame::OnToolsClicked(wxCommandEvent& WXUNUSED(evt))
wxMenuItem* item; wxMenuItem* item;
for(unsigned int i = 0; i < back.size(); i++) unsigned int i;
for(i = 0; i < back.size(); i++)
{ {
item = m_tools_history_menu->AppendRadioItem(wxID_ANY, back[i]->GetTitle()); item = m_tools_history_menu->AppendRadioItem(wxID_ANY, back[i]->GetTitle());
m_histMenuItems[item->GetId()] = back[i]; m_histMenuItems[item->GetId()] = back[i];
@@ -670,14 +671,14 @@ void WebFrame::OnToolsClicked(wxCommandEvent& WXUNUSED(evt))
//No need to connect the current item //No need to connect the current item
m_histMenuItems[item->GetId()] = wxSharedPtr<wxWebViewHistoryItem>(new wxWebViewHistoryItem(m_browser->GetCurrentURL(), m_browser->GetCurrentTitle())); m_histMenuItems[item->GetId()] = wxSharedPtr<wxWebViewHistoryItem>(new wxWebViewHistoryItem(m_browser->GetCurrentURL(), m_browser->GetCurrentTitle()));
for(unsigned int i = 0; i < forward.size(); i++) for(i = 0; i < forward.size(); i++)
{ {
item = m_tools_history_menu->AppendRadioItem(wxID_ANY, forward[i]->GetTitle()); item = m_tools_history_menu->AppendRadioItem(wxID_ANY, forward[i]->GetTitle());
m_histMenuItems[item->GetId()] = forward[i]; m_histMenuItems[item->GetId()] = forward[i];
Connect(item->GetId(), wxEVT_COMMAND_TOOL_CLICKED, Connect(item->GetId(), wxEVT_COMMAND_TOOL_CLICKED,
wxCommandEventHandler(WebFrame::OnHistory), NULL, this ); wxCommandEventHandler(WebFrame::OnHistory), NULL, this );
} }
wxPoint position = ScreenToClient( wxGetMousePosition() ); wxPoint position = ScreenToClient( wxGetMousePosition() );
PopupMenu(m_tools_menu, position.x, position.y); PopupMenu(m_tools_menu, position.x, position.y);
} }
@@ -761,42 +762,42 @@ void WebFrame::OnError(wxWebViewEvent& evt)
case wxWEB_NAV_ERR_CONNECTION: case wxWEB_NAV_ERR_CONNECTION:
errorCategory = "wxWEB_NAV_ERR_CONNECTION"; errorCategory = "wxWEB_NAV_ERR_CONNECTION";
break; break;
case wxWEB_NAV_ERR_CERTIFICATE: case wxWEB_NAV_ERR_CERTIFICATE:
errorCategory = "wxWEB_NAV_ERR_CERTIFICATE"; errorCategory = "wxWEB_NAV_ERR_CERTIFICATE";
break; break;
case wxWEB_NAV_ERR_AUTH: case wxWEB_NAV_ERR_AUTH:
errorCategory = "wxWEB_NAV_ERR_AUTH"; errorCategory = "wxWEB_NAV_ERR_AUTH";
break; break;
case wxWEB_NAV_ERR_SECURITY: case wxWEB_NAV_ERR_SECURITY:
errorCategory = "wxWEB_NAV_ERR_SECURITY"; errorCategory = "wxWEB_NAV_ERR_SECURITY";
break; break;
case wxWEB_NAV_ERR_NOT_FOUND: case wxWEB_NAV_ERR_NOT_FOUND:
errorCategory = "wxWEB_NAV_ERR_NOT_FOUND"; errorCategory = "wxWEB_NAV_ERR_NOT_FOUND";
break; break;
case wxWEB_NAV_ERR_REQUEST: case wxWEB_NAV_ERR_REQUEST:
errorCategory = "wxWEB_NAV_ERR_REQUEST"; errorCategory = "wxWEB_NAV_ERR_REQUEST";
break; break;
case wxWEB_NAV_ERR_USER_CANCELLED: case wxWEB_NAV_ERR_USER_CANCELLED:
errorCategory = "wxWEB_NAV_ERR_USER_CANCELLED"; errorCategory = "wxWEB_NAV_ERR_USER_CANCELLED";
break; break;
case wxWEB_NAV_ERR_OTHER: case wxWEB_NAV_ERR_OTHER:
errorCategory = "wxWEB_NAV_ERR_OTHER"; errorCategory = "wxWEB_NAV_ERR_OTHER";
break; break;
} }
wxLogMessage("Error; url='" + evt.GetURL() + "', error='" + errorCategory + "' (" + evt.GetString() + ")"); wxLogMessage("Error; url='" + evt.GetURL() + "', error='" + errorCategory + "' (" + evt.GetString() + ")");
//Show the info bar with an error //Show the info bar with an error
m_info->ShowMessage(_("An error occurred loading ") + evt.GetURL() + "\n" + m_info->ShowMessage(_("An error occurred loading ") + evt.GetURL() + "\n" +
"'" + errorCategory + "' (" + evt.GetString() + ")", wxICON_ERROR); "'" + errorCategory + "' (" + evt.GetString() + ")", wxICON_ERROR);
UpdateState(); UpdateState();
} }
@@ -815,7 +816,7 @@ SourceViewDialog::SourceViewDialog(wxWindow* parent, wxString source) :
{ {
wxStyledTextCtrl* text = new wxStyledTextCtrl(this, wxID_ANY); wxStyledTextCtrl* text = new wxStyledTextCtrl(this, wxID_ANY);
text->SetMarginWidth(1, 30); text->SetMarginWidth(1, 30);
text->SetMarginType(1, wxSTC_MARGIN_NUMBER); text->SetMarginType(1, wxSTC_MARGIN_NUMBER);
text->SetText(source); text->SetText(source);
text->StyleClearAll(); text->StyleClearAll();