コード例 #1
0
void WebBrowserComponent::reloadLastURL()
{
    if (lastURL.isNotEmpty())
    {
        goToURL (lastURL, &lastHeaders, &lastPostData);
        lastURL.clear();
    }
}
コード例 #2
0
void WebBrowserComponent::reloadLastURL()
{
    if (lastURL.isNotEmpty())
    {
        goToURL (lastURL, &lastHeaders, lastPostData.getSize() == 0 ? nullptr : &lastPostData);
        lastURL.clear();
    }
}
コード例 #3
0
ファイル: WebBrowserDemo.cpp プロジェクト: alesaccoia/JUCE
 // This method gets called when the browser is requested to launch a new window
 void newWindowAttemptingToLoad (const String& newURL) override
 {
     // We'll just load the URL into the main window
     goToURL (newURL);
 }
コード例 #4
0
ファイル: menu.c プロジェクト: shanfl/Shmup
void Action_GoBuyFullVersion(void* tag)
{
    goToURL("market://details?id=net.fabiensanglard.shmup");
}