static void stop_monitoring_one (gpointer data, gpointer user_data) { g_assert (NEMO_IS_BOOKMARK (data)); g_assert (NEMO_IS_BOOKMARK_LIST (user_data)); stop_monitoring_bookmark (NEMO_BOOKMARK_LIST (user_data), NEMO_BOOKMARK (data)); }
static void bookmark_in_list_changed_callback (NemoBookmark *bookmark, NemoBookmarkList *bookmarks) { g_assert (NEMO_IS_BOOKMARK (bookmark)); g_assert (NEMO_IS_BOOKMARK_LIST (bookmarks)); /* save changes to the list */ nemo_bookmark_list_save_file (bookmarks); }
static void activate_bookmark_by_quicklist (DbusmenuMenuitem *menu, guint timestamp, NemoBookmark *bookmark) { g_assert (NEMO_IS_BOOKMARK (bookmark)); GFile *location; NemoApplication *application; NemoWindow *new_window; location = nemo_bookmark_get_location (bookmark); application = nemo_application_get_singleton (); new_window = nemo_application_create_window (application, gdk_screen_get_default ()); nemo_window_slot_go_to (nemo_window_get_active_slot (new_window), location, FALSE); g_object_unref (location); }
static void nemo_bookmark_finalize (GObject *object) { NemoBookmark *bookmark; g_assert (NEMO_IS_BOOKMARK (object)); bookmark = NEMO_BOOKMARK (object); nemo_bookmark_disconnect_file (bookmark); g_object_unref (bookmark->details->location); g_clear_object (&bookmark->details->icon); g_free (bookmark->details->name); g_free (bookmark->details->scroll_file); G_OBJECT_CLASS (nemo_bookmark_parent_class)->finalize (object); }
void nemo_menus_append_bookmark_to_menu (NemoWindow *window, NemoBookmark *bookmark, const char *parent_path, const char *parent_id, guint index_in_parent, GtkActionGroup *action_group, guint merge_id, GCallback refresh_callback, NemoBookmarkFailedCallback failed_callback) { BookmarkHolder *bookmark_holder; char action_name[128]; const char *name; char *path; GIcon *icon; GtkAction *action; GtkWidget *menuitem; g_assert (NEMO_IS_WINDOW (window)); g_assert (NEMO_IS_BOOKMARK (bookmark)); bookmark_holder = bookmark_holder_new (bookmark, window, refresh_callback, failed_callback); name = nemo_bookmark_get_name (bookmark); /* Create menu item with pixbuf */ icon = nemo_bookmark_get_icon (bookmark); g_snprintf (action_name, sizeof (action_name), "%s%d", parent_id, index_in_parent); action = gtk_action_new (action_name, name, _("Go to the location specified by this bookmark"), NULL); g_object_set_data_full (G_OBJECT (action), "menu-icon", icon, g_object_unref); g_signal_connect_data (action, "activate", G_CALLBACK (activate_bookmark_in_menu_item), bookmark_holder, bookmark_holder_free_cover, 0); gtk_action_group_add_action (action_group, GTK_ACTION (action)); g_object_unref (action); gtk_ui_manager_add_ui (window->details->ui_manager, merge_id, parent_path, action_name, action_name, GTK_UI_MANAGER_MENUITEM, FALSE); path = g_strdup_printf ("%s/%s", parent_path, action_name); menuitem = gtk_ui_manager_get_widget (window->details->ui_manager, path); gtk_image_menu_item_set_always_show_image (GTK_IMAGE_MENU_ITEM (menuitem), TRUE); g_free (path); }