1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2006-2007 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: Alexander Larsson <alexl@redhat.com>
21 #ifndef __G_DESKTOP_APP_INFO_H__
22 #define __G_DESKTOP_APP_INFO_H__
28 #define G_TYPE_DESKTOP_APP_INFO (g_desktop_app_info_get_type ())
29 #define G_DESKTOP_APP_INFO(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DESKTOP_APP_INFO, GDesktopAppInfo))
30 #define G_DESKTOP_APP_INFO_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_DESKTOP_APP_INFO, GDesktopAppInfoClass))
31 #define G_IS_DESKTOP_APP_INFO(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DESKTOP_APP_INFO))
32 #define G_IS_DESKTOP_APP_INFO_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_DESKTOP_APP_INFO))
33 #define G_DESKTOP_APP_INFO_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_DESKTOP_APP_INFO, GDesktopAppInfoClass))
35 typedef struct _GDesktopAppInfo GDesktopAppInfo
;
36 typedef struct _GDesktopAppInfoClass GDesktopAppInfoClass
;
38 G_DEFINE_AUTOPTR_CLEANUP_FUNC(GDesktopAppInfo
, g_object_unref
)
40 struct _GDesktopAppInfoClass
42 GObjectClass parent_class
;
47 GType
g_desktop_app_info_get_type (void) G_GNUC_CONST
;
50 GDesktopAppInfo
*g_desktop_app_info_new_from_filename (const char *filename
);
52 GDesktopAppInfo
*g_desktop_app_info_new_from_keyfile (GKeyFile
*key_file
);
55 const char * g_desktop_app_info_get_filename (GDesktopAppInfo
*info
);
57 GLIB_AVAILABLE_IN_2_30
58 const char * g_desktop_app_info_get_generic_name (GDesktopAppInfo
*info
);
59 GLIB_AVAILABLE_IN_2_30
60 const char * g_desktop_app_info_get_categories (GDesktopAppInfo
*info
);
61 GLIB_AVAILABLE_IN_2_30
62 const char * const *g_desktop_app_info_get_keywords (GDesktopAppInfo
*info
);
63 GLIB_AVAILABLE_IN_2_30
64 gboolean
g_desktop_app_info_get_nodisplay (GDesktopAppInfo
*info
);
65 GLIB_AVAILABLE_IN_2_30
66 gboolean
g_desktop_app_info_get_show_in (GDesktopAppInfo
*info
,
67 const gchar
*desktop_env
);
68 GLIB_AVAILABLE_IN_2_34
69 const char * g_desktop_app_info_get_startup_wm_class (GDesktopAppInfo
*info
);
72 GDesktopAppInfo
*g_desktop_app_info_new (const char *desktop_id
);
74 gboolean
g_desktop_app_info_get_is_hidden (GDesktopAppInfo
*info
);
76 GLIB_DEPRECATED_IN_2_42
77 void g_desktop_app_info_set_desktop_env (const char *desktop_env
);
79 GLIB_AVAILABLE_IN_2_36
80 gboolean
g_desktop_app_info_has_key (GDesktopAppInfo
*info
,
82 GLIB_AVAILABLE_IN_2_36
83 char * g_desktop_app_info_get_string (GDesktopAppInfo
*info
,
85 GLIB_AVAILABLE_IN_2_56
86 char * g_desktop_app_info_get_locale_string (GDesktopAppInfo
*info
,
88 GLIB_AVAILABLE_IN_2_36
89 gboolean
g_desktop_app_info_get_boolean (GDesktopAppInfo
*info
,
92 GLIB_AVAILABLE_IN_2_38
93 const gchar
* const * g_desktop_app_info_list_actions (GDesktopAppInfo
*info
);
95 GLIB_AVAILABLE_IN_2_38
96 void g_desktop_app_info_launch_action (GDesktopAppInfo
*info
,
97 const gchar
*action_name
,
98 GAppLaunchContext
*launch_context
);
100 GLIB_AVAILABLE_IN_2_38
101 gchar
* g_desktop_app_info_get_action_name (GDesktopAppInfo
*info
,
102 const gchar
*action_name
);
104 #ifndef G_DISABLE_DEPRECATED
106 #define G_TYPE_DESKTOP_APP_INFO_LOOKUP (g_desktop_app_info_lookup_get_type ())
107 #define G_DESKTOP_APP_INFO_LOOKUP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_DESKTOP_APP_INFO_LOOKUP, GDesktopAppInfoLookup))
108 #define G_IS_DESKTOP_APP_INFO_LOOKUP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_DESKTOP_APP_INFO_LOOKUP))
109 #define G_DESKTOP_APP_INFO_LOOKUP_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_DESKTOP_APP_INFO_LOOKUP, GDesktopAppInfoLookupIface))
112 * G_DESKTOP_APP_INFO_LOOKUP_EXTENSION_POINT_NAME:
114 * Extension point for default handler to URI association. See
115 * [Extending GIO][extending-gio].
117 #define G_DESKTOP_APP_INFO_LOOKUP_EXTENSION_POINT_NAME "gio-desktop-app-info-lookup"
119 #endif /* G_DISABLE_DEPRECATED */
122 * GDesktopAppInfoLookupIface:
123 * @get_default_for_uri_scheme: Virtual method for
124 * g_desktop_app_info_lookup_get_default_for_uri_scheme().
126 * Interface that is used by backends to associate default
127 * handlers with URI schemes.
129 typedef struct _GDesktopAppInfoLookup GDesktopAppInfoLookup
;
130 typedef struct _GDesktopAppInfoLookupIface GDesktopAppInfoLookupIface
;
132 struct _GDesktopAppInfoLookupIface
134 GTypeInterface g_iface
;
136 GAppInfo
* (* get_default_for_uri_scheme
) (GDesktopAppInfoLookup
*lookup
,
137 const char *uri_scheme
);
141 GType
g_desktop_app_info_lookup_get_type (void) G_GNUC_CONST
;
144 GAppInfo
*g_desktop_app_info_lookup_get_default_for_uri_scheme (GDesktopAppInfoLookup
*lookup
,
145 const char *uri_scheme
);
148 * GDesktopAppLaunchCallback:
149 * @appinfo: a #GDesktopAppInfo
150 * @pid: Process identifier
151 * @user_data: User data
153 * During invocation, g_desktop_app_info_launch_uris_as_manager() may
154 * create one or more child processes. This callback is invoked once
155 * for each, providing the process ID.
157 typedef void (*GDesktopAppLaunchCallback
) (GDesktopAppInfo
*appinfo
,
161 GLIB_AVAILABLE_IN_2_28
162 gboolean
g_desktop_app_info_launch_uris_as_manager (GDesktopAppInfo
*appinfo
,
164 GAppLaunchContext
*launch_context
,
165 GSpawnFlags spawn_flags
,
166 GSpawnChildSetupFunc user_setup
,
167 gpointer user_setup_data
,
168 GDesktopAppLaunchCallback pid_callback
,
169 gpointer pid_callback_data
,
172 GLIB_AVAILABLE_IN_2_58
173 gboolean
g_desktop_app_info_launch_uris_as_manager_with_fds (GDesktopAppInfo
*appinfo
,
175 GAppLaunchContext
*launch_context
,
176 GSpawnFlags spawn_flags
,
177 GSpawnChildSetupFunc user_setup
,
178 gpointer user_setup_data
,
179 GDesktopAppLaunchCallback pid_callback
,
180 gpointer pid_callback_data
,
186 GLIB_AVAILABLE_IN_2_40
187 gchar
*** g_desktop_app_info_search (const gchar
*search_string
);
189 GLIB_AVAILABLE_IN_2_42
190 GList
*g_desktop_app_info_get_implementations (const gchar
*interface
);
194 #endif /* __G_DESKTOP_APP_INFO_H__ */