diff options
author | Ted Gould <ted@gould.cx> | 2011-03-10 15:24:10 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-03-10 15:24:10 -0600 |
commit | d7b132d4fd70d4d4648210dc0a1d82fd7c37871e (patch) | |
tree | 328ed04747a87e1342f9fddefc97c296112dd154 /src/session-service.c | |
parent | f4cdae15419acd81f378c158fb8159016ef0a9dd (diff) | |
parent | 5cf62744287e975ba81a27f08ee9f273b1a426b2 (diff) | |
download | ayatana-indicator-session-d7b132d4fd70d4d4648210dc0a1d82fd7c37871e.tar.gz ayatana-indicator-session-d7b132d4fd70d4d4648210dc0a1d82fd7c37871e.tar.bz2 ayatana-indicator-session-d7b132d4fd70d4d4648210dc0a1d82fd7c37871e.zip |
Looking in a directory for extra launchers
Diffstat (limited to 'src/session-service.c')
-rw-r--r-- | src/session-service.c | 76 |
1 files changed, 69 insertions, 7 deletions
diff --git a/src/session-service.c b/src/session-service.c index 1d8cd3a..eb045c1 100644 --- a/src/session-service.c +++ b/src/session-service.c @@ -54,7 +54,7 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #define UP_OBJECT "/org/freedesktop/UPower" #define UP_INTERFACE "org.freedesktop.UPower" -#define DESKTOP_FILE "/usr/share/applications/indicator-session-extra.desktop" +#define EXTRA_LAUNCHER_DIR "/usr/share/indicators/session/applications" #define GUEST_SESSION_LAUNCHER "/usr/share/gdm/guest-session/guest-session-launch" @@ -517,6 +517,28 @@ desktop_activate_cb (DbusmenuMenuitem * mi, guint timestamp, gpointer data) return; } +/* Look at the GAppInfo structures and sort based on + the application names */ +static gint +sort_app_infos (gconstpointer a, gconstpointer b) +{ + GAppInfo * appa = G_APP_INFO(a); + GAppInfo * appb = G_APP_INFO(b); + + const gchar * namea = NULL; + const gchar * nameb = NULL; + + if (appa != NULL) { + namea = g_app_info_get_name(appa); + } + + if (appb != NULL) { + nameb = g_app_info_get_name(appb); + } + + return g_strcmp0(namea, nameb); +} + /* Builds up the menu for us */ static void rebuild_items (DbusmenuMenuitem *root, @@ -713,19 +735,59 @@ rebuild_items (DbusmenuMenuitem *root, update_menu_entries(restart_shutdown_logout_mi); - if (g_file_test(DESKTOP_FILE, G_FILE_TEST_EXISTS)) { - GAppInfo * appinfo = G_APP_INFO(g_desktop_app_info_new_from_filename(DESKTOP_FILE)); + /* now add extra launchers */ + GDir *extra_launchers_dir; + extra_launchers_dir = g_dir_open (EXTRA_LAUNCHER_DIR, 0, NULL); + if (extra_launchers_dir != NULL) { + GList * launchers = NULL; - if (appinfo != NULL) { - DbusmenuMenuitem * separator = dbusmenu_menuitem_new(); - dbusmenu_menuitem_property_set(separator, DBUSMENU_MENUITEM_PROP_TYPE, DBUSMENU_CLIENT_TYPES_SEPARATOR); - dbusmenu_menuitem_child_append(root, separator); + /* Find all the desktop files we want to use */ + for (;;) { + const gchar *extra_launcher_file; + extra_launcher_file = g_dir_read_name (extra_launchers_dir); + if (extra_launcher_file == NULL) + break; + if (!g_str_has_suffix (extra_launcher_file, ".desktop")) + continue; + + gchar *full_path = g_build_filename (EXTRA_LAUNCHER_DIR, extra_launcher_file, NULL); + GAppInfo * appinfo = G_APP_INFO(g_desktop_app_info_new_from_filename (full_path)); + g_free (full_path); + + launchers = g_list_prepend(launchers, appinfo); + } + g_dir_close(extra_launchers_dir); + + /* Sort the desktop files based on their names */ + launchers = g_list_sort(launchers, sort_app_infos); + + /* Turn each one into a separate menu item */ + GList * launcher = NULL; + gboolean sepadded = FALSE; + for (launcher = launchers; launcher != NULL; launcher = g_list_next(launcher)) { + GAppInfo * appinfo = G_APP_INFO(launcher->data); + + /* Make sure we have a separator */ + if (!sepadded) { + DbusmenuMenuitem * separator = dbusmenu_menuitem_new(); + dbusmenu_menuitem_property_set(separator, DBUSMENU_MENUITEM_PROP_TYPE, DBUSMENU_CLIENT_TYPES_SEPARATOR); + dbusmenu_menuitem_child_append(root, separator); + g_object_unref(separator); + sepadded = TRUE; + } + + /* Build the item */ DbusmenuMenuitem * desktop_mi = dbusmenu_menuitem_new(); dbusmenu_menuitem_property_set(desktop_mi, DBUSMENU_MENUITEM_PROP_LABEL, g_app_info_get_name(appinfo)); g_signal_connect(G_OBJECT(desktop_mi), DBUSMENU_MENUITEM_SIGNAL_ITEM_ACTIVATED, G_CALLBACK(desktop_activate_cb), appinfo); + g_object_weak_ref(G_OBJECT(desktop_mi), (GWeakNotify)g_object_unref, appinfo); + + /* Put into the menu */ dbusmenu_menuitem_child_append(root, desktop_mi); } + + g_list_free(launchers); } return; |