/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ /* * Caja * * Copyright (C) 2000 Eazel, Inc. * * Caja is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * Caja 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 * General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program; see the file COPYING. If not, * write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301, USA. * * Author: Maciej Stachowiak * Ettore Perazzoli * Michael Meeks * Andy Hertzfeld * */ /* caja-location-bar.c - Location bar for Caja */ #include #include #include #include #include #include #include "../eel/eel-accessibility.h" #include "../eel/eel-glib-extensions.h" #include "../eel/eel-gtk-macros.h" #include "../eel/eel-stock-dialogs.h" #include "../eel/eel-string.h" #include "../eel/eel-vfs-extensions.h" #include "../libcaja-private/caja-icon-dnd.h" #include "../libcaja-private/caja-clipboard.h" #include "caja-location-bar.h" #include "caja-location-entry.h" #include "caja-window-private.h" #include "caja-window.h" #include "caja-navigation-window-pane.h" #define CAJA_DND_URI_LIST_TYPE "text/uri-list" #define CAJA_DND_TEXT_PLAIN_TYPE "text/plain" static const char untranslated_location_label[] = N_("Location:"); static const char untranslated_go_to_label[] = N_("Go To:"); #define LOCATION_LABEL _(untranslated_location_label) #define GO_TO_LABEL _(untranslated_go_to_label) struct _CajaLocationBarPrivate { GtkLabel *label; CajaEntry *entry; char *last_location; guint idle_id; }; enum { CAJA_DND_MC_DESKTOP_ICON, CAJA_DND_URI_LIST, CAJA_DND_TEXT_PLAIN, CAJA_DND_NTARGETS }; enum { CANCEL, LOCATION_CHANGED, LAST_SIGNAL }; static guint signals[LAST_SIGNAL]; static const GtkTargetEntry drag_types [] = { { CAJA_DND_URI_LIST_TYPE, 0, CAJA_DND_URI_LIST }, { CAJA_DND_TEXT_PLAIN_TYPE, 0, CAJA_DND_TEXT_PLAIN }, }; static const GtkTargetEntry drop_types [] = { { CAJA_DND_URI_LIST_TYPE, 0, CAJA_DND_URI_LIST }, { CAJA_DND_TEXT_PLAIN_TYPE, 0, CAJA_DND_TEXT_PLAIN }, }; G_DEFINE_TYPE_WITH_PRIVATE (CajaLocationBar, caja_location_bar, GTK_TYPE_BOX); static CajaNavigationWindow * caja_location_bar_get_window (GtkWidget *bar) { return CAJA_NAVIGATION_WINDOW (gtk_widget_get_ancestor (bar, CAJA_TYPE_WINDOW)); } /** * caja_location_bar_get_location * * Get the "URI" represented by the text in the location bar. * * @bar: A CajaLocationBar. * * returns a newly allocated "string" containing the mangled * (by g_file_parse_name) text that the user typed in...maybe a URI * but not guaranteed. * **/ static char * caja_location_bar_get_location (CajaLocationBar *bar) { char *user_location, *uri; GFile *location; user_location = gtk_editable_get_chars (GTK_EDITABLE (bar->details->entry), 0, -1); location = g_file_parse_name (user_location); g_free (user_location); uri = g_file_get_uri (location); g_object_unref (location); return uri; } static void emit_location_changed (CajaLocationBar *bar) { char *location; location = caja_location_bar_get_location (bar); g_signal_emit (bar, signals[LOCATION_CHANGED], 0, location); g_free (location); } static void drag_data_received_callback (GtkWidget *widget, GdkDragContext *context, int x, int y, GtkSelectionData *data, guint info, guint32 time, gpointer callback_data) { char **names; CajaApplication *application; int name_count; CajaWindow *new_window; CajaNavigationWindow *window; GdkScreen *screen; gboolean new_windows_for_extras; char *prompt; char *detail; GFile *location; CajaLocationBar *self = CAJA_LOCATION_BAR (widget); g_assert (data != NULL); g_assert (callback_data == NULL); names = g_uri_list_extract_uris (gtk_selection_data_get_data (data)); if (names == NULL || *names == NULL) { g_warning ("No D&D URI's"); g_strfreev (names); gtk_drag_finish (context, FALSE, FALSE, time); return; } window = caja_location_bar_get_window (widget); new_windows_for_extras = FALSE; /* Ask user if they really want to open multiple windows * for multiple dropped URIs. This is likely to have been * a mistake. */ name_count = g_strv_length (names); if (name_count > 1) { prompt = g_strdup_printf (ngettext("Do you want to view %d location?", "Do you want to view %d locations?", name_count), name_count); detail = g_strdup_printf (ngettext("This will open %d separate window.", "This will open %d separate windows.", name_count), name_count); /* eel_run_simple_dialog should really take in pairs * like gtk_dialog_new_with_buttons() does. */ new_windows_for_extras = eel_run_simple_dialog (GTK_WIDGET (window), TRUE, GTK_MESSAGE_QUESTION, prompt, detail, "process-stop", "gtk-ok", NULL) != 0 /* MATE_OK */; g_free (prompt); g_free (detail); if (!new_windows_for_extras) { g_strfreev (names); gtk_drag_finish (context, FALSE, FALSE, time); return; } } caja_location_bar_set_location (self, names[0]); emit_location_changed (self); if (new_windows_for_extras) { int i; application = CAJA_WINDOW (window)->application; screen = gtk_window_get_screen (GTK_WINDOW (window)); for (i = 1; names[i] != NULL; ++i) { new_window = caja_application_create_navigation_window (application, screen); location = g_file_new_for_uri (names[i]); caja_window_go_to (new_window, location); g_object_unref (location); } } g_strfreev (names); gtk_drag_finish (context, TRUE, FALSE, time); } static void drag_data_get_callback (GtkWidget *widget, GdkDragContext *context, GtkSelectionData *selection_data, guint info, guint32 time, gpointer callback_data) { CajaLocationBar *self; char *entry_text; g_assert (selection_data != NULL); self = callback_data; entry_text = caja_location_bar_get_location (self); switch (info) { case CAJA_DND_URI_LIST: case CAJA_DND_TEXT_PLAIN: gtk_selection_data_set (selection_data, gtk_selection_data_get_target (selection_data), 8, (guchar *) entry_text, eel_strlen (entry_text)); break; default: g_assert_not_reached (); } g_free (entry_text); } /* routine that determines the usize for the label widget as larger then the size of the largest string and then sets it to that so that we don't have localization problems. see gtk_label_finalize_lines in gtklabel.c (line 618) for the code that we are imitating here. */ static void style_set_handler (GtkWidget *widget, GtkStyleContext *previous_style) { PangoLayout *layout; int width, width2; int xpad; gint margin_start, margin_end; layout = gtk_label_get_layout (GTK_LABEL(widget)); layout = pango_layout_copy (layout); pango_layout_set_text (layout, LOCATION_LABEL, -1); pango_layout_get_pixel_size (layout, &width, NULL); pango_layout_set_text (layout, GO_TO_LABEL, -1); pango_layout_get_pixel_size (layout, &width2, NULL); width = MAX (width, width2); margin_start = gtk_widget_get_margin_start (widget); margin_end = gtk_widget_get_margin_end (widget); xpad = margin_start + margin_end; width += 2 * xpad; gtk_widget_set_size_request (widget, width, -1); g_object_unref (layout); } static gboolean label_button_pressed_callback (GtkWidget *widget, GdkEventButton *event) { CajaNavigationWindow *window; CajaWindowSlot *slot; CajaView *view; GtkWidget *label; if (event->button != 3) { return FALSE; } window = caja_location_bar_get_window (gtk_widget_get_parent (widget)); slot = CAJA_WINDOW (window)->details->active_pane->active_slot; view = slot->content_view; label = gtk_bin_get_child (GTK_BIN (widget)); /* only pop-up if the URI in the entry matches the displayed location */ if (view == NULL || strcmp (gtk_label_get_text (GTK_LABEL (label)), LOCATION_LABEL)) { return FALSE; } caja_view_pop_up_location_context_menu (view, event, NULL); return FALSE; } static void editable_activate_callback (GtkEntry *entry, gpointer user_data) { CajaLocationBar *self = user_data; const char *entry_text; entry_text = gtk_entry_get_text (entry); if (entry_text != NULL && *entry_text != '\0') { emit_location_changed (self); } } /** * caja_location_bar_update_label * * if the text in the entry matches the uri, set the label to "location", otherwise use "goto" * **/ static void caja_location_bar_update_label (CajaLocationBar *bar) { const char *current_text; GFile *location; GFile *last_location; if (bar->details->last_location == NULL){ gtk_label_set_text (GTK_LABEL (bar->details->label), GO_TO_LABEL); caja_location_entry_set_secondary_action (CAJA_LOCATION_ENTRY (bar->details->entry), CAJA_LOCATION_ENTRY_ACTION_GOTO); return; } current_text = gtk_entry_get_text (GTK_ENTRY (bar->details->entry)); location = g_file_parse_name (current_text); last_location = g_file_parse_name (bar->details->last_location); if (g_file_equal (last_location, location)) { gtk_label_set_text (GTK_LABEL (bar->details->label), LOCATION_LABEL); caja_location_entry_set_secondary_action (CAJA_LOCATION_ENTRY (bar->details->entry), CAJA_LOCATION_ENTRY_ACTION_CLEAR); } else { gtk_label_set_text (GTK_LABEL (bar->details->label), GO_TO_LABEL); caja_location_entry_set_secondary_action (CAJA_LOCATION_ENTRY (bar->details->entry), CAJA_LOCATION_ENTRY_ACTION_GOTO); } g_object_unref (location); g_object_unref (last_location); } static void editable_changed_callback (GtkEntry *entry, gpointer user_data) { caja_location_bar_update_label (CAJA_LOCATION_BAR (user_data)); } void caja_location_bar_activate (CajaLocationBar *bar) { /* Put the keyboard focus in the text field when switching to this mode, * and select all text for easy overtyping */ gtk_widget_grab_focus (GTK_WIDGET (bar->details->entry)); caja_entry_select_all (bar->details->entry); } static void caja_location_bar_cancel (CajaLocationBar *bar) { char *last_location; last_location = bar->details->last_location; caja_location_bar_set_location (bar, last_location); } static void finalize (GObject *object) { CajaLocationBar *bar; bar = CAJA_LOCATION_BAR (object); /* cancel the pending idle call, if any */ if (bar->details->idle_id != 0) { g_source_remove (bar->details->idle_id); bar->details->idle_id = 0; } g_free (bar->details->last_location); bar->details->last_location = NULL; G_OBJECT_CLASS (caja_location_bar_parent_class)->finalize (object); } static void caja_location_bar_class_init (CajaLocationBarClass *klass) { GObjectClass *gobject_class; GtkBindingSet *binding_set; gobject_class = G_OBJECT_CLASS (klass); gobject_class->finalize = finalize; klass->cancel = caja_location_bar_cancel; signals[CANCEL] = g_signal_new ("cancel", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, G_STRUCT_OFFSET (CajaLocationBarClass, cancel), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); signals[LOCATION_CHANGED] = g_signal_new ("location-changed", G_TYPE_FROM_CLASS (klass), G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_marshal_VOID__STRING, G_TYPE_NONE, 1, G_TYPE_STRING); binding_set = gtk_binding_set_by_class (klass); gtk_binding_entry_add_signal (binding_set, GDK_KEY_Escape, 0, "cancel", 0); } static void caja_location_bar_init (CajaLocationBar *bar) { GtkWidget *label; GtkWidget *entry; GtkWidget *event_box; bar->details = caja_location_bar_get_instance_private (bar); gtk_orientable_set_orientation (GTK_ORIENTABLE (bar), GTK_ORIENTATION_HORIZONTAL); event_box = gtk_event_box_new (); gtk_event_box_set_visible_window (GTK_EVENT_BOX (event_box), FALSE); gtk_container_set_border_width (GTK_CONTAINER (event_box), 4); label = gtk_label_new (LOCATION_LABEL); gtk_container_add (GTK_CONTAINER (event_box), label); gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_RIGHT); gtk_label_set_xalign (GTK_LABEL (label), 1.0); gtk_label_set_yalign (GTK_LABEL (label), 0.5); g_signal_connect (label, "style_set", G_CALLBACK (style_set_handler), NULL); gtk_box_pack_start (GTK_BOX (bar), event_box, FALSE, TRUE, 4); entry = caja_location_entry_new (); g_signal_connect_object (entry, "activate", G_CALLBACK (editable_activate_callback), bar, G_CONNECT_AFTER); g_signal_connect_object (entry, "changed", G_CALLBACK (editable_changed_callback), bar, 0); gtk_box_pack_start (GTK_BOX (bar), entry, TRUE, TRUE, 0); eel_accessibility_set_up_label_widget_relation (label, entry); /* Label context menu */ g_signal_connect (event_box, "button-press-event", G_CALLBACK (label_button_pressed_callback), NULL); /* Drag source */ gtk_drag_source_set (GTK_WIDGET (event_box), GDK_BUTTON1_MASK | GDK_BUTTON3_MASK, drag_types, G_N_ELEMENTS (drag_types), GDK_ACTION_COPY | GDK_ACTION_LINK); g_signal_connect_object (event_box, "drag_data_get", G_CALLBACK (drag_data_get_callback), bar, 0); /* Drag dest. */ gtk_drag_dest_set (GTK_WIDGET (bar), GTK_DEST_DEFAULT_ALL, drop_types, G_N_ELEMENTS (drop_types), GDK_ACTION_COPY | GDK_ACTION_MOVE | GDK_ACTION_LINK); g_signal_connect (bar, "drag_data_received", G_CALLBACK (drag_data_received_callback), NULL); bar->details->label = GTK_LABEL (label); bar->details->entry = CAJA_ENTRY (entry); gtk_widget_show_all (GTK_WIDGET (bar)); } GtkWidget * caja_location_bar_new (CajaNavigationWindowPane *pane) { GtkWidget *bar; CajaLocationBar *location_bar; bar = gtk_widget_new (CAJA_TYPE_LOCATION_BAR, NULL); location_bar = CAJA_LOCATION_BAR (bar); /* Clipboard */ caja_clipboard_set_up_editable (GTK_EDITABLE (location_bar->details->entry), caja_window_get_ui_manager (CAJA_WINDOW (CAJA_WINDOW_PANE(pane)->window)), TRUE); return bar; } void caja_location_bar_set_location (CajaLocationBar *bar, const char *location) { char *formatted_location; GFile *file; g_assert (location != NULL); /* Note: This is called in reaction to external changes, and * thus should not emit the LOCATION_CHANGED signal. */ if (eel_uri_is_search (location)) { caja_location_entry_set_special_text (CAJA_LOCATION_ENTRY (bar->details->entry), ""); } else { file = g_file_new_for_uri (location); formatted_location = g_file_get_parse_name (file); g_object_unref (file); caja_location_entry_update_current_location (CAJA_LOCATION_ENTRY (bar->details->entry), formatted_location); g_free (formatted_location); } /* remember the original location for later comparison */ if (bar->details->last_location != location) { g_free (bar->details->last_location); bar->details->last_location = g_strdup (location); } caja_location_bar_update_label (bar); } static void override_background_color (GtkWidget *widget, GdkRGBA *rgba) { gchar *css; GtkCssProvider *provider; provider = gtk_css_provider_new (); css = g_strdup_printf ("entry { background-color: %s;}", gdk_rgba_to_string (rgba)); gtk_css_provider_load_from_data (provider, css, -1, NULL); g_free (css); gtk_style_context_add_provider (gtk_widget_get_style_context (widget), GTK_STYLE_PROVIDER (provider), GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); g_object_unref (provider); } /* change background color based on activity state */ void caja_location_bar_set_active (CajaLocationBar *location_bar, gboolean is_active) { GtkStyleContext *style; GdkRGBA color; GdkRGBA *c; static GdkRGBA bg_active; static GdkRGBA bg_inactive; style = gtk_widget_get_style_context (GTK_WIDGET (location_bar->details->entry)); if (is_active) gtk_style_context_get (style, GTK_STATE_FLAG_NORMAL, GTK_STYLE_PROPERTY_BACKGROUND_COLOR, &c, NULL); else gtk_style_context_get (style, GTK_STATE_FLAG_INSENSITIVE, GTK_STYLE_PROPERTY_BACKGROUND_COLOR, &c, NULL); color = *c; gdk_rgba_free (c); if (is_active) { if (gdk_rgba_equal (&bg_active, &bg_inactive)) bg_active = color; override_background_color (GTK_WIDGET (location_bar->details->entry), &bg_active); } else { if (gdk_rgba_equal (&bg_active, &bg_inactive)) bg_inactive = color; override_background_color(GTK_WIDGET (location_bar->details->entry), &bg_inactive); } } CajaEntry * caja_location_bar_get_entry (CajaLocationBar *location_bar) { return location_bar->details->entry; }