From 0e004c696b0e68b2cff37a4c3315b022a35eaf43 Mon Sep 17 00:00:00 2001 From: Perberos Date: Thu, 1 Dec 2011 22:24:23 -0300 Subject: moving from https://github.com/perberos/mate-desktop-environment --- src/caja-window-toolbars.c | 204 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 204 insertions(+) create mode 100644 src/caja-window-toolbars.c (limited to 'src/caja-window-toolbars.c') diff --git a/src/caja-window-toolbars.c b/src/caja-window-toolbars.c new file mode 100644 index 00000000..90c40269 --- /dev/null +++ b/src/caja-window-toolbars.c @@ -0,0 +1,204 @@ +/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ + +/* + * Caja + * + * Copyright (C) 2000, 2001 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; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + * Author: John Sullivan + */ + +/* caja-window-toolbars.c - implementation of caja window toolbar operations, + * split into separate file just for convenience. + */ + +#include + +#include +#include "caja-application.h" +#include "caja-window-manage-views.h" +#include "caja-window-private.h" +#include "caja-window.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/* FIXME bugzilla.gnome.org 41243: + * We should use inheritance instead of these special cases + * for the desktop window. + */ +#include "caja-desktop-window.h" + +#define TOOLBAR_PATH_EXTENSION_ACTIONS "/Toolbar/Extra Buttons Placeholder/Extension Actions" + +void +caja_navigation_window_set_spinner_active (CajaNavigationWindow *window, + gboolean allow) +{ + if (( window->details->spinner_active && allow) || + (!window->details->spinner_active && !allow)) + { + return; + } + + window->details->spinner_active = allow; + if (allow) + { + gtk_spinner_start (GTK_SPINNER (window->details->spinner)); + } + else + { + gtk_spinner_stop (GTK_SPINNER (window->details->spinner)); + } +} + +void +caja_navigation_window_activate_spinner (CajaNavigationWindow *window) +{ + GtkToolItem *item; + GtkWidget *spinner; + + if (window->details->spinner != NULL) + { + return; + } + + item = gtk_tool_item_new (); + gtk_widget_show (GTK_WIDGET (item)); + gtk_tool_item_set_expand (item, TRUE); + gtk_toolbar_insert (GTK_TOOLBAR (window->details->toolbar), + item, -1); + + spinner = gtk_spinner_new (); + gtk_widget_show (GTK_WIDGET (spinner)); + + item = gtk_tool_item_new (); + gtk_container_add (GTK_CONTAINER (item), spinner); + gtk_widget_show (GTK_WIDGET (item)); + + gtk_toolbar_insert (GTK_TOOLBAR (window->details->toolbar), + item, -1); + + window->details->spinner = spinner; +} + +void +caja_navigation_window_initialize_toolbars (CajaNavigationWindow *window) +{ + caja_navigation_window_activate_spinner (window); +} + + +static GList * +get_extension_toolbar_items (CajaNavigationWindow *window) +{ + CajaWindowSlot *slot; + GList *items; + GList *providers; + GList *l; + + providers = caja_module_get_extensions_for_type (CAJA_TYPE_MENU_PROVIDER); + items = NULL; + + slot = CAJA_WINDOW (window)->details->active_pane->active_slot; + + for (l = providers; l != NULL; l = l->next) + { + CajaMenuProvider *provider; + GList *file_items; + + provider = CAJA_MENU_PROVIDER (l->data); + file_items = caja_menu_provider_get_toolbar_items + (provider, + GTK_WIDGET (window), + slot->viewed_file); + items = g_list_concat (items, file_items); + } + + caja_module_extension_list_free (providers); + + return items; +} + +void +caja_navigation_window_load_extension_toolbar_items (CajaNavigationWindow *window) +{ + GtkActionGroup *action_group; + GtkAction *action; + GtkUIManager *ui_manager; + GList *items; + GList *l; + CajaMenuItem *item; + guint merge_id; + + ui_manager = caja_window_get_ui_manager (CAJA_WINDOW (window)); + if (window->details->extensions_toolbar_merge_id != 0) + { + gtk_ui_manager_remove_ui (ui_manager, + window->details->extensions_toolbar_merge_id); + window->details->extensions_toolbar_merge_id = 0; + } + + if (window->details->extensions_toolbar_action_group != NULL) + { + gtk_ui_manager_remove_action_group (ui_manager, + window->details->extensions_toolbar_action_group); + window->details->extensions_toolbar_action_group = NULL; + } + + merge_id = gtk_ui_manager_new_merge_id (ui_manager); + window->details->extensions_toolbar_merge_id = merge_id; + action_group = gtk_action_group_new ("ExtensionsToolbarGroup"); + window->details->extensions_toolbar_action_group = action_group; + gtk_action_group_set_translation_domain (action_group, GETTEXT_PACKAGE); + gtk_ui_manager_insert_action_group (ui_manager, action_group, -1); + g_object_unref (action_group); /* owned by ui manager */ + + items = get_extension_toolbar_items (window); + + for (l = items; l != NULL; l = l->next) + { + item = CAJA_MENU_ITEM (l->data); + + action = caja_toolbar_action_from_menu_item (item); + + gtk_action_group_add_action (action_group, + GTK_ACTION (action)); + g_object_unref (action); + + gtk_ui_manager_add_ui (ui_manager, + merge_id, + TOOLBAR_PATH_EXTENSION_ACTIONS, + gtk_action_get_name (action), + gtk_action_get_name (action), + GTK_UI_MANAGER_TOOLITEM, + FALSE); + + g_object_unref (item); + } + + g_list_free (items); +} -- cgit v1.2.1