From 18fc113aa91d0563940b3de807576f7879e9ebea Mon Sep 17 00:00:00 2001 From: Peter BozsoĢ Date: Mon, 18 Jul 2016 11:42:02 +0200 Subject: CLOUD: Add URL opening for OS X --- backends/module.mk | 8 +++-- backends/networking/browser/openurl-osx.cpp | 49 +++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+), 2 deletions(-) create mode 100644 backends/networking/browser/openurl-osx.cpp diff --git a/backends/module.mk b/backends/module.mk index b8feffb61d..f04397d15b 100644 --- a/backends/module.mk +++ b/backends/module.mk @@ -161,10 +161,15 @@ ifeq ($(BACKEND),android) MODULE_OBJS += \ networking/browser/openurl-android.o else +ifdef MACOSX +MODULE_OBJS += \ + networking/browser/openurl-osx.o +else MODULE_OBJS += \ networking/browser/openurl-posix.o endif endif +endif ifdef MACOSX MODULE_OBJS += \ @@ -172,8 +177,7 @@ MODULE_OBJS += \ midi/coreaudio.o \ midi/coremidi.o \ updates/macosx/macosx-updates.o \ - taskbar/macosx/macosx-taskbar.o \ - networking/browser/openurl-default.o + taskbar/macosx/macosx-taskbar.o endif ifdef WIN32 diff --git a/backends/networking/browser/openurl-osx.cpp b/backends/networking/browser/openurl-osx.cpp new file mode 100644 index 0000000000..66d96b4e3d --- /dev/null +++ b/backends/networking/browser/openurl-osx.cpp @@ -0,0 +1,49 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program 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; either version 2 + * of the License, or (at your option) any later version. + * + * This program 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, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#define FORBIDDEN_SYMBOL_ALLOW_ALL + +#include "backends/networking/browser/openurl.h" +#include +#include + +namespace Networking { +namespace Browser { + +using namespace std; + +bool openUrl(const Common::String &url) { + CFURLRef urlRef = CFURLCreateWithBytes ( + NULL, + (UInt8*)url.c_str(), + url.size(), + kCFStringEncodingASCII, + NULL + ); + int result = LSOpenCFURLRef(urlRef, 0); + CFRelease(urlRef); + return result == 0; +} + +} // End of namespace Browser +} // End of namespace Networking + -- cgit v1.2.3