/* 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, see . */ #include #include #include #include //#include #include _DEFS(giomm,gio) _PINCLUDE(glibmm/private/object_p.h) namespace Gio { class GIOMM_API AppInfo; class GIOMM_API File; /** This is used to handle, for instance, startup notification and launching of the new application on the same screen as the launching window. * See also AppInfo. * * @newin{2,16} */ class GIOMM_API AppLaunchContext : public Glib::Object { _CLASS_GOBJECT(AppLaunchContext, GAppLaunchContext, G_APP_LAUNCH_CONTEXT, Glib::Object, GObject, , , GIOMM_API) protected: _CTOR_DEFAULT() public: _WRAP_CREATE() _WRAP_METHOD(void setenv(const Glib::ustring& variable, const Glib::ustring& value), g_app_launch_context_setenv) _WRAP_METHOD(void unsetenv(const Glib::ustring& variable), g_app_launch_context_unsetenv) #m4 _CONVERSION(`char**',`std::vector',`Glib::ArrayHandler::array_to_vector($3, Glib::OWNERSHIP_DEEP)') _WRAP_METHOD(std::vector get_environment() const, g_app_launch_context_get_environment) #m4 _CONVERSION(`const std::vector&',`GList*',`Glib::ListHandler::vector_to_list$3.data()') _WRAP_METHOD(std::string get_display(const Glib::RefPtr& info, const std::vector>& files), g_app_launch_context_get_display) _WRAP_METHOD(std::string get_startup_notify_id(const Glib::RefPtr& info, const std::vector>& files), g_app_launch_context_get_startup_notify_id) _WRAP_METHOD(void launch_failed(const std::string& startup_notify_id), g_app_launch_context_launch_failed) }; } // namespace Gio