// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- /* Copyright (C) 2007 The gtkmm Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include #include namespace Gio { Glib::RefPtr AppInfo::create_from_commandline(const std::string& commandline, const std::string& application_name, AppInfoCreateFlags flags) { GAppInfo* capp_info = 0; GError* gerror = 0; capp_info = g_app_info_create_from_commandline(commandline.c_str(), application_name.c_str(), static_cast(flags), &gerror); if (gerror) ::Glib::Error::throw_exception(gerror); return Glib::wrap(capp_info); } Glib::RefPtr AppInfo::create_duplicate() const { return Glib::wrap(g_app_info_dup(const_cast(gobj()))); } bool AppInfo::launch(const Glib::RefPtr& file, const Glib::RefPtr& launch_context) { std::vector< Glib::RefPtr > vec; vec.push_back(file); GError* gerror = 0; bool retvalue = g_app_info_launch(gobj(), Glib::ListHandler >::vector_to_list(vec).data (), Glib::unwrap(launch_context), &(gerror)); if(gerror) ::Glib::Error::throw_exception(gerror); return retvalue; } bool AppInfo::launch(const Glib::RefPtr& file) { std::vector< Glib::RefPtr > vec; vec.push_back(file); GError* gerror = 0; bool retvalue = g_app_info_launch(gobj(), Glib::ListHandler >::vector_to_list(vec).data (), 0, &(gerror)); if(gerror) ::Glib::Error::throw_exception(gerror); return retvalue; } bool AppInfo::launch_uri(const std::string& uri, const Glib::RefPtr& launch_context) { std::vector vec; vec.push_back(uri); GError* gerror = 0; bool retvalue = g_app_info_launch_uris(gobj(), Glib::ListHandler::vector_to_list(vec).data (), Glib::unwrap(launch_context), &(gerror)); if(gerror) ::Glib::Error::throw_exception(gerror); return retvalue; } bool AppInfo::launch_uri(const std::string& uri) { std::vector vec; vec.push_back(uri); GError* gerror = 0; bool retvalue = g_app_info_launch_uris(gobj(), Glib::ListHandler::vector_to_list(vec).data (), 0, &(gerror)); if(gerror) ::Glib::Error::throw_exception(gerror); return retvalue; } } // namespace Gio