2008-12-14 02:28:26 +03:00
|
|
|
/*
|
2009-01-11 00:22:46 +03:00
|
|
|
* Copyright 2008-9 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
2008-12-14 02:28:26 +03:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
* Fetching of data from a file (implementation).
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <proto/exec.h>
|
|
|
|
#include <proto/openurl.h>
|
|
|
|
|
|
|
|
struct Library *OpenURLBase;
|
|
|
|
struct OpenURLIFace *IOpenURL;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialise the fetcher.
|
|
|
|
*
|
|
|
|
* Must be called once before any other function.
|
|
|
|
*/
|
|
|
|
|
2009-01-11 00:22:46 +03:00
|
|
|
void ami_openurl_open(void)
|
2008-12-14 02:28:26 +03:00
|
|
|
{
|
|
|
|
if(OpenURLBase = OpenLibrary("openurl.library",0))
|
|
|
|
{
|
2009-01-11 00:22:46 +03:00
|
|
|
IOpenURL = (struct OpenURLIFace *)GetInterface(OpenURLBase,"main",1,NULL);
|
2008-12-14 02:28:26 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-11 00:22:46 +03:00
|
|
|
void ami_openurl_close(const char *scheme)
|
2008-12-14 02:28:26 +03:00
|
|
|
{
|
|
|
|
if(IOpenURL) DropInterface((struct Interface *)IOpenURL);
|
|
|
|
if(OpenURLBase) CloseLibrary(OpenURLBase);
|
|
|
|
}
|
|
|
|
|
2009-01-11 00:22:46 +03:00
|
|
|
void gui_launch_url(const char *url)
|
2008-12-14 02:28:26 +03:00
|
|
|
{
|
2009-01-11 00:22:46 +03:00
|
|
|
if(!strncmp("mailto:",url,7))
|
2008-12-14 02:28:26 +03:00
|
|
|
{
|
2009-01-11 00:22:46 +03:00
|
|
|
if(IOpenURL) URL_OpenA(url,NULL);
|
|
|
|
}
|
2008-12-14 02:28:26 +03:00
|
|
|
}
|