Exemplo n.º 1
0
void MyFrame::OnZoomReset(wxCommandEvent& evt)
{
    m_browser->SetTextZoom(1);
}
Exemplo n.º 2
0
void MyFrame::OnZoomOut(wxCommandEvent& evt)
{
    float zoom;
    m_browser->GetTextZoom(&zoom);
    m_browser->SetTextZoom(zoom - 0.10);
}