Exemple #1
0
void CNativeToolbar::processCommand(int nItemPos)
{
    if ( nItemPos >= 0 && nItemPos < (int)m_arButtons.size() )
    {
        String strAction = m_arButtons.elementAt(nItemPos)->m_strAction;
        if ( strcasecmp(strAction.c_str(), "forward") == 0 )
                rho_webview_navigate_forward();
        else
            RHODESAPP().loadUrl(strAction);
    }
}
Exemple #2
0
void CExtManager::historyForward()
{
    rho_webview_navigate_forward();
}