/* emitted when the user clicks the "close" button of tabs */ static void notebook_tab_close_requested (NemoNotebook *notebook, NemoWindowSlot *slot, NemoWindowPane *pane) { nemo_window_pane_slot_close (pane, slot); }
static void notebook_popup_menu_close_cb (GtkMenuItem *menuitem, gpointer user_data) { NemoWindowPane *pane; NemoWindowSlot *slot; pane = NEMO_WINDOW_PANE (user_data); slot = pane->active_slot; nemo_window_pane_slot_close (pane, slot); }
static void action_close_window_slot_callback (GtkAction *action, gpointer user_data) { NemoWindow *window; NemoWindowSlot *slot; window = NEMO_WINDOW (user_data); slot = nemo_window_get_active_slot (window); nemo_window_pane_slot_close (slot->pane, slot); }
/* Called whenever a mount is unmounted. Check and see if there are * any windows open displaying contents on the mount. If there are, * close them. It would also be cool to save open window and position * info. */ static void mount_removed_callback (GVolumeMonitor *monitor, GMount *mount, NemoApplication *application) { GList *window_list, *node, *close_list; NemoWindow *window; NemoWindowSlot *slot; NemoWindowSlot *force_no_close_slot; GFile *root, *computer; gchar *uri; gint n_slots; close_list = NULL; force_no_close_slot = NULL; n_slots = 0; /* Check and see if any of the open windows are displaying contents from the unmounted mount */ window_list = gtk_application_get_windows (GTK_APPLICATION (application)); root = g_mount_get_root (mount); uri = g_file_get_uri (root); DEBUG ("Removed mount at uri %s", uri); g_free (uri); /* Construct a list of windows to be closed. Do not add the non-closable windows to the list. */ for (node = window_list; node != NULL; node = node->next) { window = NEMO_WINDOW (node->data); if (window != NULL && window_can_be_closed (window)) { GList *l; GList *lp; for (lp = window->details->panes; lp != NULL; lp = lp->next) { NemoWindowPane *pane; pane = (NemoWindowPane*) lp->data; for (l = pane->slots; l != NULL; l = l->next) { slot = l->data; n_slots++; if (nemo_window_slot_should_close_with_mount (slot, mount)) { close_list = g_list_prepend (close_list, slot); } } /* for all slots */ } /* for all panes */ } } if ((nemo_application_desktop_windows == NULL) && (close_list != NULL) && (g_list_length (close_list) == n_slots)) { /* We are trying to close all open slots. Keep one navigation slot open. */ force_no_close_slot = close_list->data; } /* Handle the windows in the close list. */ for (node = close_list; node != NULL; node = node->next) { slot = node->data; if (slot != force_no_close_slot) { if (g_settings_get_boolean (nemo_preferences, NEMO_PREFERENCES_CLOSE_DEVICE_VIEW_ON_EJECT)) nemo_window_pane_slot_close (slot->pane, slot); else nemo_window_slot_go_home (slot, FALSE); } else { computer = g_file_new_for_path (g_get_home_dir ()); nemo_window_slot_go_to (slot, computer, FALSE); g_object_unref(computer); } } g_list_free (close_list); }