// -*- 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 _DEFS(giomm,gio) _PINCLUDE(glibmm/private/object_p.h) namespace Gio { /** * DesktopAppInfo is an implementation of AppInfo based on desktop files. * * @newin{2,16} */ class DesktopAppInfo : public Glib::Object, public AppInfo { _CLASS_GOBJECT(DesktopAppInfo, GDesktopAppInfo, G_DESKTOP_APP_INFO, Glib::Object, GObject) _IMPLEMENTS_INTERFACE(AppInfo) _GTKMMPROC_WIN32_NO_WRAP public: // TODO: should use _WRAP_CREATE(), but these functions do more than just call // g_object_new() because there's quite a bit of error-handling to do. _WRAP_METHOD(static Glib::RefPtr create(const std::string& desktop_id), g_desktop_app_info_new) _WRAP_METHOD(static Glib::RefPtr create_from_keyfile(Glib::KeyFile& key_file), g_desktop_app_info_new_from_keyfile) _WRAP_METHOD(static Glib::RefPtr create_from_filename(const std::string& filename), g_desktop_app_info_new_from_filename) _WRAP_METHOD(std::string get_filename() const, g_desktop_app_info_get_filename) _WRAP_METHOD(bool is_hidden() const, g_desktop_app_info_get_is_hidden) _WRAP_METHOD(static void set_desktop_env(const std::string& desktop_env), g_desktop_app_info_set_desktop_env) }; } // namespace Gio