2011-11-07 13:46:58 -06:00
|
|
|
/*
|
2011-11-07 18:10:16 -06:00
|
|
|
* pluma-file-browser-plugin.c - Pluma plugin providing easy file access
|
2011-11-07 13:46:58 -06:00
|
|
|
* from the sidepanel
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 - Jesse van den Kieboom <jesse@icecrew.nl>
|
|
|
|
*
|
|
|
|
* This program 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, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
#include <pluma/pluma-commands.h>
|
|
|
|
#include <pluma/pluma-utils.h>
|
|
|
|
#include <pluma/pluma-app.h>
|
2011-11-07 13:46:58 -06:00
|
|
|
#include <glib/gi18n-lib.h>
|
2011-11-07 16:52:18 -06:00
|
|
|
#include <pluma/pluma-debug.h>
|
2011-11-07 13:46:58 -06:00
|
|
|
#include <mateconf/mateconf-client.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
#include "pluma-file-browser-enum-types.h"
|
|
|
|
#include "pluma-file-browser-plugin.h"
|
|
|
|
#include "pluma-file-browser-utils.h"
|
|
|
|
#include "pluma-file-browser-error.h"
|
|
|
|
#include "pluma-file-browser-widget.h"
|
|
|
|
#include "pluma-file-browser-messages.h"
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
#define WINDOW_DATA_KEY "PlumaFileBrowserPluginWindowData"
|
2011-11-07 18:10:16 -06:00
|
|
|
#define FILE_BROWSER_BASE_KEY "/apps/pluma/plugins/filebrowser"
|
2011-11-07 13:46:58 -06:00
|
|
|
#define CAJA_CLICK_POLICY_BASE_KEY "/apps/caja/preferences"
|
|
|
|
#define CAJA_CLICK_POLICY_KEY "click_policy"
|
|
|
|
#define CAJA_ENABLE_DELETE_KEY "enable_delete"
|
|
|
|
#define CAJA_CONFIRM_TRASH_KEY "confirm_trash"
|
|
|
|
#define TERMINAL_EXEC_KEY "/desktop/mate/applications/terminal/exec"
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
#define PLUMA_FILE_BROWSER_PLUGIN_GET_PRIVATE(object) (G_TYPE_INSTANCE_GET_PRIVATE ((object), PLUMA_TYPE_FILE_BROWSER_PLUGIN, PlumaFileBrowserPluginPrivate))
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
struct _PlumaFileBrowserPluginPrivate
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
gpointer dummy;
|
|
|
|
};
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
typedef struct _PlumaFileBrowserPluginData
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserWidget * tree_widget;
|
2011-11-07 13:46:58 -06:00
|
|
|
gulong merge_id;
|
|
|
|
GtkActionGroup * action_group;
|
|
|
|
GtkActionGroup * single_selection_action_group;
|
|
|
|
gboolean auto_root;
|
|
|
|
gulong end_loading_handle;
|
|
|
|
gboolean confirm_trash;
|
|
|
|
|
|
|
|
guint click_policy_handle;
|
|
|
|
guint enable_delete_handle;
|
|
|
|
guint confirm_trash_handle;
|
2011-11-07 16:52:18 -06:00
|
|
|
} PlumaFileBrowserPluginData;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
static void on_uri_activated_cb (PlumaFileBrowserWidget * widget,
|
2011-11-07 18:10:16 -06:00
|
|
|
gchar const *uri,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaWindow * window);
|
|
|
|
static void on_error_cb (PlumaFileBrowserWidget * widget,
|
2011-11-07 13:46:58 -06:00
|
|
|
guint code,
|
2011-11-07 18:10:16 -06:00
|
|
|
gchar const *message,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaWindow * window);
|
|
|
|
static void on_model_set_cb (PlumaFileBrowserView * widget,
|
2011-11-07 13:46:58 -06:00
|
|
|
GParamSpec *arg1,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaWindow * window);
|
|
|
|
static void on_virtual_root_changed_cb (PlumaFileBrowserStore * model,
|
2011-11-07 13:46:58 -06:00
|
|
|
GParamSpec * param,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaWindow * window);
|
|
|
|
static void on_filter_mode_changed_cb (PlumaFileBrowserStore * model,
|
2011-11-07 13:46:58 -06:00
|
|
|
GParamSpec * param,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaWindow * window);
|
|
|
|
static void on_rename_cb (PlumaFileBrowserStore * model,
|
2011-11-07 13:46:58 -06:00
|
|
|
const gchar * olduri,
|
|
|
|
const gchar * newuri,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaWindow * window);
|
|
|
|
static void on_filter_pattern_changed_cb (PlumaFileBrowserWidget * widget,
|
2011-11-07 13:46:58 -06:00
|
|
|
GParamSpec * param,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaWindow * window);
|
|
|
|
static void on_tab_added_cb (PlumaWindow * window,
|
|
|
|
PlumaTab * tab,
|
|
|
|
PlumaFileBrowserPluginData * data);
|
|
|
|
static gboolean on_confirm_delete_cb (PlumaFileBrowserWidget * widget,
|
|
|
|
PlumaFileBrowserStore * store,
|
2011-11-07 13:46:58 -06:00
|
|
|
GList * rows,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaWindow * window);
|
|
|
|
static gboolean on_confirm_no_trash_cb (PlumaFileBrowserWidget * widget,
|
2011-11-07 13:46:58 -06:00
|
|
|
GList * files,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaWindow * window);
|
|
|
|
|
|
|
|
PLUMA_PLUGIN_REGISTER_TYPE_WITH_CODE (PlumaFileBrowserPlugin, filetree_plugin, \
|
|
|
|
pluma_file_browser_enum_and_flag_register_type (type_module); \
|
|
|
|
pluma_file_browser_store_register_type (type_module); \
|
|
|
|
pluma_file_bookmarks_store_register_type (type_module); \
|
|
|
|
pluma_file_browser_view_register_type (type_module); \
|
|
|
|
pluma_file_browser_widget_register_type (type_module); \
|
2011-11-07 13:46:58 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
filetree_plugin_init (PlumaFileBrowserPlugin * plugin)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
plugin->priv = PLUMA_FILE_BROWSER_PLUGIN_GET_PRIVATE (plugin);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
filetree_plugin_finalize (GObject * object)
|
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
//PlumaFileBrowserPlugin * plugin = PLUMA_FILE_BROWSER_PLUGIN (object);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
G_OBJECT_CLASS (filetree_plugin_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
static PlumaFileBrowserPluginData *
|
|
|
|
get_plugin_data (PlumaWindow * window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
return (PlumaFileBrowserPluginData *) (g_object_get_data (G_OBJECT (window), WINDOW_DATA_KEY));
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
on_end_loading_cb (PlumaFileBrowserStore * store,
|
2011-11-07 13:46:58 -06:00
|
|
|
GtkTreeIter * iter,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserPluginData * data)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
/* Disconnect the signal */
|
|
|
|
g_signal_handler_disconnect (store, data->end_loading_handle);
|
|
|
|
data->end_loading_handle = 0;
|
|
|
|
data->auto_root = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
prepare_auto_root (PlumaFileBrowserPluginData *data)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserStore *store;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
data->auto_root = TRUE;
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
store = pluma_file_browser_widget_get_browser_store (data->tree_widget);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
if (data->end_loading_handle != 0) {
|
|
|
|
g_signal_handler_disconnect (store, data->end_loading_handle);
|
|
|
|
data->end_loading_handle = 0;
|
|
|
|
}
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
data->end_loading_handle = g_signal_connect (store,
|
2011-11-07 13:46:58 -06:00
|
|
|
"end-loading",
|
|
|
|
G_CALLBACK (on_end_loading_cb),
|
|
|
|
data);
|
|
|
|
}
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
restore_default_location (PlumaFileBrowserPluginData *data)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
gchar * root;
|
|
|
|
gchar * virtual_root;
|
|
|
|
gboolean bookmarks;
|
|
|
|
gboolean remote;
|
|
|
|
MateConfClient * client;
|
|
|
|
|
|
|
|
client = mateconf_client_get_default ();
|
|
|
|
if (!client)
|
|
|
|
return;
|
|
|
|
|
|
|
|
bookmarks = !mateconf_client_get_bool (client,
|
|
|
|
FILE_BROWSER_BASE_KEY "/on_load/tree_view",
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (bookmarks) {
|
|
|
|
g_object_unref (client);
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_file_browser_widget_show_bookmarks (data->tree_widget);
|
2011-11-07 13:46:58 -06:00
|
|
|
return;
|
|
|
|
}
|
2011-11-07 18:10:16 -06:00
|
|
|
|
|
|
|
root = mateconf_client_get_string (client,
|
|
|
|
FILE_BROWSER_BASE_KEY "/on_load/root",
|
2011-11-07 13:46:58 -06:00
|
|
|
NULL);
|
2011-11-07 18:10:16 -06:00
|
|
|
virtual_root = mateconf_client_get_string (client,
|
|
|
|
FILE_BROWSER_BASE_KEY "/on_load/virtual_root",
|
2011-11-07 13:46:58 -06:00
|
|
|
NULL);
|
|
|
|
|
|
|
|
remote = mateconf_client_get_bool (client,
|
|
|
|
FILE_BROWSER_BASE_KEY "/on_load/enable_remote",
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (root != NULL && *root != '\0') {
|
|
|
|
GFile *file;
|
|
|
|
|
|
|
|
file = g_file_new_for_uri (root);
|
|
|
|
|
|
|
|
if (remote || g_file_is_native (file)) {
|
|
|
|
if (virtual_root != NULL && *virtual_root != '\0') {
|
|
|
|
prepare_auto_root (data);
|
2011-11-07 18:10:16 -06:00
|
|
|
pluma_file_browser_widget_set_root_and_virtual_root (data->tree_widget,
|
2011-11-07 13:46:58 -06:00
|
|
|
root,
|
|
|
|
virtual_root);
|
|
|
|
} else {
|
|
|
|
prepare_auto_root (data);
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_file_browser_widget_set_root (data->tree_widget,
|
2011-11-07 13:46:58 -06:00
|
|
|
root,
|
|
|
|
TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_object_unref (file);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_object_unref (client);
|
|
|
|
g_free (root);
|
|
|
|
g_free (virtual_root);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-07 18:10:16 -06:00
|
|
|
restore_filter (PlumaFileBrowserPluginData * data)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
MateConfClient * client;
|
|
|
|
gchar *filter_mode;
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserStoreFilterMode mode;
|
2011-11-07 13:46:58 -06:00
|
|
|
gchar *pattern;
|
|
|
|
|
|
|
|
client = mateconf_client_get_default ();
|
|
|
|
if (!client)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Get filter_mode */
|
|
|
|
filter_mode = mateconf_client_get_string (client,
|
|
|
|
FILE_BROWSER_BASE_KEY "/filter_mode",
|
|
|
|
NULL);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
/* Filter mode */
|
2011-11-07 16:52:18 -06:00
|
|
|
mode = pluma_file_browser_store_filter_mode_get_default ();
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
if (filter_mode != NULL) {
|
|
|
|
if (strcmp (filter_mode, "hidden") == 0) {
|
2011-11-07 16:52:18 -06:00
|
|
|
mode = PLUMA_FILE_BROWSER_STORE_FILTER_MODE_HIDE_HIDDEN;
|
2011-11-07 13:46:58 -06:00
|
|
|
} else if (strcmp (filter_mode, "binary") == 0) {
|
2011-11-07 16:52:18 -06:00
|
|
|
mode = PLUMA_FILE_BROWSER_STORE_FILTER_MODE_HIDE_BINARY;
|
2011-11-07 13:46:58 -06:00
|
|
|
} else if (strcmp (filter_mode, "hidden_and_binary") == 0 ||
|
|
|
|
strcmp (filter_mode, "binary_and_hidden") == 0) {
|
2011-11-07 16:52:18 -06:00
|
|
|
mode = PLUMA_FILE_BROWSER_STORE_FILTER_MODE_HIDE_HIDDEN |
|
|
|
|
PLUMA_FILE_BROWSER_STORE_FILTER_MODE_HIDE_BINARY;
|
2011-11-07 18:10:16 -06:00
|
|
|
} else if (strcmp (filter_mode, "none") == 0 ||
|
2011-11-07 13:46:58 -06:00
|
|
|
*filter_mode == '\0') {
|
2011-11-07 16:52:18 -06:00
|
|
|
mode = PLUMA_FILE_BROWSER_STORE_FILTER_MODE_NONE;
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
}
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
/* Set the filter mode */
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_file_browser_store_set_filter_mode (
|
|
|
|
pluma_file_browser_widget_get_browser_store (data->tree_widget),
|
2011-11-07 13:46:58 -06:00
|
|
|
mode);
|
|
|
|
|
|
|
|
pattern = mateconf_client_get_string (client,
|
|
|
|
FILE_BROWSER_BASE_KEY "/filter_pattern",
|
|
|
|
NULL);
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
pluma_file_browser_widget_set_filter_pattern (data->tree_widget,
|
2011-11-07 13:46:58 -06:00
|
|
|
pattern);
|
|
|
|
|
|
|
|
g_object_unref (client);
|
|
|
|
g_free (filter_mode);
|
|
|
|
g_free (pattern);
|
|
|
|
}
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
static PlumaFileBrowserViewClickPolicy
|
2011-11-07 13:46:58 -06:00
|
|
|
click_policy_from_string (gchar const *click_policy)
|
|
|
|
{
|
|
|
|
if (click_policy && strcmp (click_policy, "single") == 0)
|
2011-11-07 16:52:18 -06:00
|
|
|
return PLUMA_FILE_BROWSER_VIEW_CLICK_POLICY_SINGLE;
|
2011-11-07 13:46:58 -06:00
|
|
|
else
|
2011-11-07 16:52:18 -06:00
|
|
|
return PLUMA_FILE_BROWSER_VIEW_CLICK_POLICY_DOUBLE;
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_click_policy_changed (MateConfClient *client,
|
|
|
|
guint cnxn_id,
|
|
|
|
MateConfEntry *entry,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
MateConfValue *value;
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserPluginData * data;
|
2011-11-07 13:46:58 -06:00
|
|
|
gchar const *click_policy;
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserViewClickPolicy policy = PLUMA_FILE_BROWSER_VIEW_CLICK_POLICY_DOUBLE;
|
|
|
|
PlumaFileBrowserView *view;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
data = (PlumaFileBrowserPluginData *)(user_data);
|
2011-11-07 13:46:58 -06:00
|
|
|
value = mateconf_entry_get_value (entry);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
if (value && value->type == MATECONF_VALUE_STRING) {
|
|
|
|
click_policy = mateconf_value_get_string (value);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
policy = click_policy_from_string (click_policy);
|
|
|
|
}
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
view = pluma_file_browser_widget_get_browser_view (data->tree_widget);
|
2011-11-07 18:10:16 -06:00
|
|
|
pluma_file_browser_view_set_click_policy (view, policy);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_enable_delete_changed (MateConfClient *client,
|
|
|
|
guint cnxn_id,
|
|
|
|
MateConfEntry *entry,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
MateConfValue *value;
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserPluginData *data;
|
2011-11-07 13:46:58 -06:00
|
|
|
gboolean enable = FALSE;
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
data = (PlumaFileBrowserPluginData *)(user_data);
|
2011-11-07 13:46:58 -06:00
|
|
|
value = mateconf_entry_get_value (entry);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
if (value && value->type == MATECONF_VALUE_BOOL)
|
|
|
|
enable = mateconf_value_get_bool (value);
|
|
|
|
|
|
|
|
g_object_set (G_OBJECT (data->tree_widget), "enable-delete", enable, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_confirm_trash_changed (MateConfClient *client,
|
|
|
|
guint cnxn_id,
|
|
|
|
MateConfEntry *entry,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
MateConfValue *value;
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserPluginData *data;
|
2011-11-07 13:46:58 -06:00
|
|
|
gboolean enable = FALSE;
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
data = (PlumaFileBrowserPluginData *)(user_data);
|
2011-11-07 13:46:58 -06:00
|
|
|
value = mateconf_entry_get_value (entry);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
if (value && value->type == MATECONF_VALUE_BOOL)
|
|
|
|
enable = mateconf_value_get_bool (value);
|
|
|
|
|
|
|
|
data->confirm_trash = enable;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
install_caja_prefs (PlumaFileBrowserPluginData *data)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
MateConfClient *client;
|
|
|
|
gchar *pref;
|
|
|
|
gboolean prefb;
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserViewClickPolicy policy;
|
|
|
|
PlumaFileBrowserView *view;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
client = mateconf_client_get_default ();
|
|
|
|
if (!client)
|
|
|
|
return;
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
mateconf_client_add_dir (client,
|
2011-11-07 13:46:58 -06:00
|
|
|
CAJA_CLICK_POLICY_BASE_KEY,
|
|
|
|
MATECONF_CLIENT_PRELOAD_NONE,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
/* Get click_policy */
|
|
|
|
pref = mateconf_client_get_string (client,
|
|
|
|
CAJA_CLICK_POLICY_BASE_KEY "/" CAJA_CLICK_POLICY_KEY,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
policy = click_policy_from_string (pref);
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
view = pluma_file_browser_widget_get_browser_view (data->tree_widget);
|
|
|
|
pluma_file_browser_view_set_click_policy (view, policy);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
if (pref) {
|
2011-11-07 18:10:16 -06:00
|
|
|
data->click_policy_handle =
|
|
|
|
mateconf_client_notify_add (client,
|
2011-11-07 13:46:58 -06:00
|
|
|
CAJA_CLICK_POLICY_BASE_KEY "/" CAJA_CLICK_POLICY_KEY,
|
|
|
|
on_click_policy_changed,
|
|
|
|
data,
|
|
|
|
NULL,
|
|
|
|
NULL);
|
|
|
|
g_free (pref);
|
|
|
|
}
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
/* Get enable_delete */
|
|
|
|
prefb = mateconf_client_get_bool (client,
|
|
|
|
CAJA_CLICK_POLICY_BASE_KEY "/" CAJA_ENABLE_DELETE_KEY,
|
|
|
|
NULL);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
g_object_set (G_OBJECT (data->tree_widget), "enable-delete", prefb, NULL);
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
data->enable_delete_handle =
|
|
|
|
mateconf_client_notify_add (client,
|
2011-11-07 13:46:58 -06:00
|
|
|
CAJA_CLICK_POLICY_BASE_KEY "/" CAJA_ENABLE_DELETE_KEY,
|
|
|
|
on_enable_delete_changed,
|
|
|
|
data,
|
|
|
|
NULL,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
/* Get confirm_trash */
|
|
|
|
prefb = mateconf_client_get_bool (client,
|
|
|
|
CAJA_CLICK_POLICY_BASE_KEY "/" CAJA_CONFIRM_TRASH_KEY,
|
|
|
|
NULL);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
data->confirm_trash = prefb;
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
data->confirm_trash_handle =
|
|
|
|
mateconf_client_notify_add (client,
|
2011-11-07 13:46:58 -06:00
|
|
|
CAJA_CLICK_POLICY_BASE_KEY "/" CAJA_CONFIRM_TRASH_KEY,
|
|
|
|
on_confirm_trash_changed,
|
|
|
|
data,
|
|
|
|
NULL,
|
|
|
|
NULL);
|
|
|
|
g_object_unref (client);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
set_root_from_doc (PlumaFileBrowserPluginData * data,
|
|
|
|
PlumaDocument * doc)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
GFile *file;
|
|
|
|
GFile *parent;
|
|
|
|
|
|
|
|
if (doc == NULL)
|
|
|
|
return;
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
file = pluma_document_get_location (doc);
|
2011-11-07 13:46:58 -06:00
|
|
|
if (file == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
parent = g_file_get_parent (file);
|
|
|
|
|
|
|
|
if (parent != NULL) {
|
|
|
|
gchar * root;
|
|
|
|
|
|
|
|
root = g_file_get_uri (parent);
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_file_browser_widget_set_root (data->tree_widget,
|
2011-11-07 13:46:58 -06:00
|
|
|
root,
|
|
|
|
TRUE);
|
|
|
|
|
|
|
|
g_object_unref (parent);
|
|
|
|
g_free (root);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_object_unref (file);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_action_set_active_root (GtkAction * action,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaWindow * window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserPluginData *data;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
data = get_plugin_data (window);
|
2011-11-07 18:10:16 -06:00
|
|
|
set_root_from_doc (data,
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_window_get_active_document (window));
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static gchar *
|
|
|
|
get_terminal (void)
|
|
|
|
{
|
|
|
|
MateConfClient * client;
|
|
|
|
gchar * terminal;
|
|
|
|
|
|
|
|
client = mateconf_client_get_default ();
|
|
|
|
terminal = mateconf_client_get_string (client,
|
|
|
|
TERMINAL_EXEC_KEY,
|
|
|
|
NULL);
|
|
|
|
g_object_unref (client);
|
|
|
|
|
|
|
|
if (terminal == NULL) {
|
|
|
|
const gchar *term = g_getenv ("TERM");
|
|
|
|
|
|
|
|
if (term != NULL)
|
|
|
|
terminal = g_strdup (term);
|
|
|
|
else
|
|
|
|
terminal = g_strdup ("xterm");
|
|
|
|
}
|
|
|
|
|
|
|
|
return terminal;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_action_open_terminal (GtkAction * action,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaWindow * window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserPluginData * data;
|
2011-11-07 13:46:58 -06:00
|
|
|
gchar * terminal;
|
|
|
|
gchar * wd = NULL;
|
|
|
|
gchar * local;
|
|
|
|
gchar * argv[2];
|
|
|
|
GFile * file;
|
|
|
|
|
|
|
|
GtkTreeIter iter;
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserStore * store;
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
data = get_plugin_data (window);
|
|
|
|
|
|
|
|
/* Get the current directory */
|
2011-11-07 16:52:18 -06:00
|
|
|
if (!pluma_file_browser_widget_get_selected_directory (data->tree_widget, &iter))
|
2011-11-07 13:46:58 -06:00
|
|
|
return;
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
store = pluma_file_browser_widget_get_browser_store (data->tree_widget);
|
2011-11-07 18:10:16 -06:00
|
|
|
gtk_tree_model_get (GTK_TREE_MODEL (store),
|
2011-11-07 13:46:58 -06:00
|
|
|
&iter,
|
2011-11-07 16:52:18 -06:00
|
|
|
PLUMA_FILE_BROWSER_STORE_COLUMN_URI,
|
2011-11-07 13:46:58 -06:00
|
|
|
&wd,
|
|
|
|
-1);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
if (wd == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
terminal = get_terminal ();
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
file = g_file_new_for_uri (wd);
|
|
|
|
local = g_file_get_path (file);
|
|
|
|
g_object_unref (file);
|
|
|
|
|
|
|
|
argv[0] = terminal;
|
|
|
|
argv[1] = NULL;
|
2011-11-07 18:10:16 -06:00
|
|
|
|
|
|
|
g_spawn_async (local,
|
|
|
|
argv,
|
|
|
|
NULL,
|
|
|
|
G_SPAWN_SEARCH_PATH,
|
2011-11-07 13:46:58 -06:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
g_free (terminal);
|
|
|
|
g_free (wd);
|
|
|
|
g_free (local);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_selection_changed_cb (GtkTreeSelection *selection,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaWindow *window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserPluginData * data;
|
2011-11-07 13:46:58 -06:00
|
|
|
GtkTreeView * tree_view;
|
|
|
|
GtkTreeModel * model;
|
|
|
|
GtkTreeIter iter;
|
|
|
|
gboolean sensitive;
|
|
|
|
gchar * uri;
|
|
|
|
|
|
|
|
data = get_plugin_data (window);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
tree_view = GTK_TREE_VIEW (pluma_file_browser_widget_get_browser_view (data->tree_widget));
|
2011-11-07 13:46:58 -06:00
|
|
|
model = gtk_tree_view_get_model (tree_view);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
if (!PLUMA_IS_FILE_BROWSER_STORE (model))
|
2011-11-07 13:46:58 -06:00
|
|
|
return;
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
sensitive = pluma_file_browser_widget_get_selected_directory (data->tree_widget, &iter);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
if (sensitive) {
|
2011-11-07 18:10:16 -06:00
|
|
|
gtk_tree_model_get (model, &iter,
|
|
|
|
PLUMA_FILE_BROWSER_STORE_COLUMN_URI,
|
2011-11-07 13:46:58 -06:00
|
|
|
&uri, -1);
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
sensitive = pluma_utils_uri_has_file_scheme (uri);
|
2011-11-07 13:46:58 -06:00
|
|
|
g_free (uri);
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_action_set_sensitive (
|
2011-11-07 18:10:16 -06:00
|
|
|
gtk_action_group_get_action (data->single_selection_action_group,
|
2011-11-07 13:46:58 -06:00
|
|
|
"OpenTerminal"),
|
|
|
|
sensitive);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define POPUP_UI "" \
|
|
|
|
"<ui>" \
|
|
|
|
" <popup name=\"FilePopup\">" \
|
|
|
|
" <placeholder name=\"FilePopup_Opt1\">" \
|
|
|
|
" <menuitem action=\"SetActiveRoot\"/>" \
|
|
|
|
" </placeholder>" \
|
|
|
|
" <placeholder name=\"FilePopup_Opt4\">" \
|
|
|
|
" <menuitem action=\"OpenTerminal\"/>" \
|
|
|
|
" </placeholder>" \
|
|
|
|
" </popup>" \
|
|
|
|
" <popup name=\"BookmarkPopup\">" \
|
|
|
|
" <placeholder name=\"BookmarkPopup_Opt1\">" \
|
|
|
|
" <menuitem action=\"SetActiveRoot\"/>" \
|
|
|
|
" </placeholder>" \
|
|
|
|
" </popup>" \
|
|
|
|
"</ui>"
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
static GtkActionEntry extra_actions[] =
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
{"SetActiveRoot", GTK_STOCK_JUMP_TO, N_("_Set root to active document"),
|
|
|
|
NULL,
|
|
|
|
N_("Set the root to the active document location"),
|
|
|
|
G_CALLBACK (on_action_set_active_root)}
|
|
|
|
};
|
|
|
|
|
|
|
|
static GtkActionEntry extra_single_selection_actions[] = {
|
|
|
|
{"OpenTerminal", "utilities-terminal", N_("_Open terminal here"),
|
|
|
|
NULL,
|
|
|
|
N_("Open a terminal at the currently opened directory"),
|
|
|
|
G_CALLBACK (on_action_open_terminal)}
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
add_popup_ui (PlumaWindow * window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserPluginData * data;
|
2011-11-07 13:46:58 -06:00
|
|
|
GtkUIManager * manager;
|
|
|
|
GtkActionGroup * action_group;
|
|
|
|
GError * error = NULL;
|
|
|
|
|
|
|
|
data = get_plugin_data (window);
|
2011-11-07 16:52:18 -06:00
|
|
|
manager = pluma_file_browser_widget_get_ui_manager (data->tree_widget);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
action_group = gtk_action_group_new ("FileBrowserPluginExtra");
|
|
|
|
gtk_action_group_set_translation_domain (action_group, NULL);
|
|
|
|
gtk_action_group_add_actions (action_group,
|
|
|
|
extra_actions,
|
|
|
|
G_N_ELEMENTS (extra_actions),
|
|
|
|
window);
|
|
|
|
gtk_ui_manager_insert_action_group (manager, action_group, 0);
|
|
|
|
data->action_group = action_group;
|
|
|
|
|
|
|
|
action_group = gtk_action_group_new ("FileBrowserPluginSingleSelectionExtra");
|
|
|
|
gtk_action_group_set_translation_domain (action_group, NULL);
|
|
|
|
gtk_action_group_add_actions (action_group,
|
|
|
|
extra_single_selection_actions,
|
|
|
|
G_N_ELEMENTS (extra_single_selection_actions),
|
|
|
|
window);
|
|
|
|
gtk_ui_manager_insert_action_group (manager, action_group, 0);
|
|
|
|
data->single_selection_action_group = action_group;
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
data->merge_id = gtk_ui_manager_add_ui_from_string (manager,
|
|
|
|
POPUP_UI,
|
|
|
|
-1,
|
2011-11-07 13:46:58 -06:00
|
|
|
&error);
|
|
|
|
|
|
|
|
if (data->merge_id == 0) {
|
|
|
|
g_warning("Unable to merge UI: %s", error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
remove_popup_ui (PlumaWindow * window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserPluginData * data;
|
2011-11-07 13:46:58 -06:00
|
|
|
GtkUIManager * manager;
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
data = get_plugin_data (window);
|
2011-11-07 16:52:18 -06:00
|
|
|
manager = pluma_file_browser_widget_get_ui_manager (data->tree_widget);
|
2011-11-07 13:46:58 -06:00
|
|
|
gtk_ui_manager_remove_ui (manager, data->merge_id);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
gtk_ui_manager_remove_action_group (manager, data->action_group);
|
|
|
|
g_object_unref (data->action_group);
|
|
|
|
|
|
|
|
gtk_ui_manager_remove_action_group (manager, data->single_selection_action_group);
|
|
|
|
g_object_unref (data->single_selection_action_group);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-07 18:10:16 -06:00
|
|
|
impl_updateui (PlumaPlugin * plugin, PlumaWindow * window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserPluginData * data;
|
|
|
|
PlumaDocument * doc;
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
data = get_plugin_data (window);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
doc = pluma_window_get_active_document (window);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
|
|
|
gtk_action_set_sensitive (gtk_action_group_get_action (data->action_group,
|
2011-11-07 13:46:58 -06:00
|
|
|
"SetActiveRoot"),
|
2011-11-07 18:10:16 -06:00
|
|
|
doc != NULL &&
|
2011-11-07 16:52:18 -06:00
|
|
|
!pluma_document_is_untitled (doc));
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
impl_activate (PlumaPlugin * plugin, PlumaWindow * window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaPanel * panel;
|
|
|
|
PlumaFileBrowserPluginData * data;
|
2011-11-07 13:46:58 -06:00
|
|
|
GtkWidget * image;
|
|
|
|
GdkPixbuf * pixbuf;
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserStore * store;
|
2011-11-07 13:46:58 -06:00
|
|
|
gchar *data_dir;
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
data = g_new0 (PlumaFileBrowserPluginData, 1);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
data_dir = pluma_plugin_get_data_dir (plugin);
|
|
|
|
data->tree_widget = PLUMA_FILE_BROWSER_WIDGET (pluma_file_browser_widget_new (data_dir));
|
2011-11-07 13:46:58 -06:00
|
|
|
g_free (data_dir);
|
|
|
|
|
|
|
|
g_signal_connect (data->tree_widget,
|
|
|
|
"uri-activated",
|
|
|
|
G_CALLBACK (on_uri_activated_cb), window);
|
|
|
|
|
|
|
|
g_signal_connect (data->tree_widget,
|
|
|
|
"error", G_CALLBACK (on_error_cb), window);
|
|
|
|
|
|
|
|
g_signal_connect (data->tree_widget,
|
|
|
|
"notify::filter-pattern",
|
|
|
|
G_CALLBACK (on_filter_pattern_changed_cb),
|
|
|
|
window);
|
|
|
|
|
|
|
|
g_signal_connect (data->tree_widget,
|
|
|
|
"confirm-delete",
|
|
|
|
G_CALLBACK (on_confirm_delete_cb),
|
|
|
|
window);
|
|
|
|
|
|
|
|
g_signal_connect (data->tree_widget,
|
|
|
|
"confirm-no-trash",
|
|
|
|
G_CALLBACK (on_confirm_no_trash_cb),
|
|
|
|
window);
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
g_signal_connect (gtk_tree_view_get_selection (GTK_TREE_VIEW
|
|
|
|
(pluma_file_browser_widget_get_browser_view
|
2011-11-07 13:46:58 -06:00
|
|
|
(data->tree_widget))),
|
|
|
|
"changed",
|
|
|
|
G_CALLBACK (on_selection_changed_cb),
|
2011-11-07 18:10:16 -06:00
|
|
|
window);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
panel = pluma_window_get_side_panel (window);
|
2011-11-07 18:10:16 -06:00
|
|
|
pixbuf = pluma_file_browser_utils_pixbuf_from_theme("system-file-manager",
|
2011-11-07 13:46:58 -06:00
|
|
|
GTK_ICON_SIZE_MENU);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
if (pixbuf) {
|
|
|
|
image = gtk_image_new_from_pixbuf(pixbuf);
|
|
|
|
g_object_unref(pixbuf);
|
|
|
|
} else {
|
|
|
|
image = gtk_image_new_from_stock(GTK_STOCK_INDEX, GTK_ICON_SIZE_MENU);
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_widget_show(image);
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_panel_add_item (panel,
|
2011-11-07 13:46:58 -06:00
|
|
|
GTK_WIDGET (data->tree_widget),
|
|
|
|
_("File Browser"),
|
|
|
|
image);
|
|
|
|
gtk_widget_show (GTK_WIDGET (data->tree_widget));
|
|
|
|
g_object_set_data (G_OBJECT (window), WINDOW_DATA_KEY, data);
|
|
|
|
|
|
|
|
add_popup_ui (window);
|
|
|
|
|
|
|
|
/* Restore filter options */
|
|
|
|
restore_filter (data);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
/* Install caja preferences */
|
|
|
|
install_caja_prefs (data);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
/* Connect signals to store the last visited location */
|
2011-11-07 16:52:18 -06:00
|
|
|
g_signal_connect (pluma_file_browser_widget_get_browser_view (data->tree_widget),
|
2011-11-07 13:46:58 -06:00
|
|
|
"notify::model",
|
|
|
|
G_CALLBACK (on_model_set_cb),
|
|
|
|
window);
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
store = pluma_file_browser_widget_get_browser_store (data->tree_widget);
|
2011-11-07 13:46:58 -06:00
|
|
|
g_signal_connect (store,
|
|
|
|
"notify::virtual-root",
|
|
|
|
G_CALLBACK (on_virtual_root_changed_cb),
|
|
|
|
window);
|
|
|
|
|
|
|
|
g_signal_connect (store,
|
|
|
|
"notify::filter-mode",
|
|
|
|
G_CALLBACK (on_filter_mode_changed_cb),
|
|
|
|
window);
|
|
|
|
|
|
|
|
g_signal_connect (store,
|
|
|
|
"rename",
|
|
|
|
G_CALLBACK (on_rename_cb),
|
|
|
|
window);
|
|
|
|
|
|
|
|
g_signal_connect (window,
|
|
|
|
"tab-added",
|
|
|
|
G_CALLBACK (on_tab_added_cb),
|
|
|
|
data);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
/* Register messages on the bus */
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_file_browser_messages_register (window, data->tree_widget);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
impl_updateui (plugin, window);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
impl_deactivate (PlumaPlugin * plugin, PlumaWindow * window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserPluginData * data;
|
|
|
|
PlumaPanel * panel;
|
2011-11-07 13:46:58 -06:00
|
|
|
MateConfClient *client;
|
|
|
|
|
|
|
|
data = get_plugin_data (window);
|
|
|
|
|
|
|
|
/* Unregister messages from the bus */
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_file_browser_messages_unregister (window);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
/* Disconnect signals */
|
2011-11-07 18:10:16 -06:00
|
|
|
g_signal_handlers_disconnect_by_func (window,
|
2011-11-07 13:46:58 -06:00
|
|
|
G_CALLBACK (on_tab_added_cb),
|
|
|
|
data);
|
|
|
|
|
|
|
|
client = mateconf_client_get_default ();
|
|
|
|
mateconf_client_remove_dir (client, CAJA_CLICK_POLICY_BASE_KEY, NULL);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
if (data->click_policy_handle)
|
|
|
|
mateconf_client_notify_remove (client, data->click_policy_handle);
|
|
|
|
|
|
|
|
if (data->enable_delete_handle)
|
|
|
|
mateconf_client_notify_remove (client, data->enable_delete_handle);
|
|
|
|
|
|
|
|
if (data->confirm_trash_handle)
|
|
|
|
mateconf_client_notify_remove (client, data->confirm_trash_handle);
|
|
|
|
|
|
|
|
g_object_unref (client);
|
|
|
|
remove_popup_ui (window);
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
panel = pluma_window_get_side_panel (window);
|
|
|
|
pluma_panel_remove_item (panel, GTK_WIDGET (data->tree_widget));
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
g_free (data);
|
|
|
|
g_object_set_data (G_OBJECT (window), WINDOW_DATA_KEY, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
filetree_plugin_class_init (PlumaFileBrowserPluginClass * klass)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaPluginClass * plugin_class = PLUMA_PLUGIN_CLASS (klass);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
object_class->finalize = filetree_plugin_finalize;
|
|
|
|
|
|
|
|
plugin_class->activate = impl_activate;
|
|
|
|
plugin_class->deactivate = impl_deactivate;
|
|
|
|
plugin_class->update_ui = impl_updateui;
|
|
|
|
|
|
|
|
g_type_class_add_private (object_class,
|
2011-11-07 16:52:18 -06:00
|
|
|
sizeof (PlumaFileBrowserPluginPrivate));
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Callbacks */
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
on_uri_activated_cb (PlumaFileBrowserWidget * tree_widget,
|
|
|
|
gchar const *uri, PlumaWindow * window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_commands_load_uri (window, uri, NULL, 0);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
on_error_cb (PlumaFileBrowserWidget * tree_widget,
|
|
|
|
guint code, gchar const *message, PlumaWindow * window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
gchar * title;
|
|
|
|
GtkWidget * dlg;
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserPluginData * data;
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
data = get_plugin_data (window);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
/* Do not show the error when the root has been set automatically */
|
2011-11-07 16:52:18 -06:00
|
|
|
if (data->auto_root && (code == PLUMA_FILE_BROWSER_ERROR_SET_ROOT ||
|
2011-11-07 18:10:16 -06:00
|
|
|
code == PLUMA_FILE_BROWSER_ERROR_LOAD_DIRECTORY))
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
/* Show bookmarks */
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_file_browser_widget_show_bookmarks (data->tree_widget);
|
2011-11-07 13:46:58 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (code) {
|
2011-11-07 16:52:18 -06:00
|
|
|
case PLUMA_FILE_BROWSER_ERROR_NEW_DIRECTORY:
|
2011-11-07 13:46:58 -06:00
|
|
|
title =
|
|
|
|
_("An error occurred while creating a new directory");
|
|
|
|
break;
|
2011-11-07 16:52:18 -06:00
|
|
|
case PLUMA_FILE_BROWSER_ERROR_NEW_FILE:
|
2011-11-07 13:46:58 -06:00
|
|
|
title = _("An error occurred while creating a new file");
|
|
|
|
break;
|
2011-11-07 16:52:18 -06:00
|
|
|
case PLUMA_FILE_BROWSER_ERROR_RENAME:
|
2011-11-07 13:46:58 -06:00
|
|
|
title =
|
|
|
|
_
|
|
|
|
("An error occurred while renaming a file or directory");
|
|
|
|
break;
|
2011-11-07 16:52:18 -06:00
|
|
|
case PLUMA_FILE_BROWSER_ERROR_DELETE:
|
2011-11-07 13:46:58 -06:00
|
|
|
title =
|
|
|
|
_
|
|
|
|
("An error occurred while deleting a file or directory");
|
|
|
|
break;
|
2011-11-07 16:52:18 -06:00
|
|
|
case PLUMA_FILE_BROWSER_ERROR_OPEN_DIRECTORY:
|
2011-11-07 13:46:58 -06:00
|
|
|
title =
|
|
|
|
_
|
|
|
|
("An error occurred while opening a directory in the file manager");
|
|
|
|
break;
|
2011-11-07 16:52:18 -06:00
|
|
|
case PLUMA_FILE_BROWSER_ERROR_SET_ROOT:
|
2011-11-07 13:46:58 -06:00
|
|
|
title =
|
|
|
|
_("An error occurred while setting a root directory");
|
|
|
|
break;
|
2011-11-07 16:52:18 -06:00
|
|
|
case PLUMA_FILE_BROWSER_ERROR_LOAD_DIRECTORY:
|
2011-11-07 18:10:16 -06:00
|
|
|
title =
|
2011-11-07 13:46:58 -06:00
|
|
|
_("An error occurred while loading a directory");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
title = _("An error occurred");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
dlg = gtk_message_dialog_new (GTK_WINDOW (window),
|
|
|
|
GTK_DIALOG_MODAL |
|
|
|
|
GTK_DIALOG_DESTROY_WITH_PARENT,
|
|
|
|
GTK_MESSAGE_ERROR, GTK_BUTTONS_OK,
|
|
|
|
"%s", title);
|
|
|
|
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dlg),
|
|
|
|
"%s", message);
|
|
|
|
|
|
|
|
gtk_dialog_run (GTK_DIALOG (dlg));
|
|
|
|
gtk_widget_destroy (dlg);
|
|
|
|
}
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
on_model_set_cb (PlumaFileBrowserView * widget,
|
2011-11-07 13:46:58 -06:00
|
|
|
GParamSpec *arg1,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaWindow * window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserPluginData * data = get_plugin_data (window);
|
2011-11-07 13:46:58 -06:00
|
|
|
GtkTreeModel * model;
|
|
|
|
MateConfClient * client;
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
model = gtk_tree_view_get_model (GTK_TREE_VIEW (pluma_file_browser_widget_get_browser_view (data->tree_widget)));
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
if (model == NULL)
|
|
|
|
return;
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
client = mateconf_client_get_default ();
|
|
|
|
mateconf_client_set_bool (client,
|
|
|
|
FILE_BROWSER_BASE_KEY "/on_load/tree_view",
|
2011-11-07 16:52:18 -06:00
|
|
|
PLUMA_IS_FILE_BROWSER_STORE (model),
|
2011-11-07 13:46:58 -06:00
|
|
|
NULL);
|
|
|
|
g_object_unref (client);
|
|
|
|
}
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
on_filter_mode_changed_cb (PlumaFileBrowserStore * model,
|
2011-11-07 13:46:58 -06:00
|
|
|
GParamSpec * param,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaWindow * window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
MateConfClient * client;
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserStoreFilterMode mode;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
client = mateconf_client_get_default ();
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
if (!client)
|
|
|
|
return;
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
mode = pluma_file_browser_store_get_filter_mode (model);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
if ((mode & PLUMA_FILE_BROWSER_STORE_FILTER_MODE_HIDE_HIDDEN) &&
|
|
|
|
(mode & PLUMA_FILE_BROWSER_STORE_FILTER_MODE_HIDE_BINARY)) {
|
2011-11-07 13:46:58 -06:00
|
|
|
mateconf_client_set_string (client,
|
|
|
|
FILE_BROWSER_BASE_KEY "/filter_mode",
|
|
|
|
"hidden_and_binary",
|
|
|
|
NULL);
|
2011-11-07 16:52:18 -06:00
|
|
|
} else if (mode & PLUMA_FILE_BROWSER_STORE_FILTER_MODE_HIDE_HIDDEN) {
|
2011-11-07 13:46:58 -06:00
|
|
|
mateconf_client_set_string (client,
|
|
|
|
FILE_BROWSER_BASE_KEY "/filter_mode",
|
|
|
|
"hidden",
|
2011-11-07 18:10:16 -06:00
|
|
|
NULL);
|
2011-11-07 16:52:18 -06:00
|
|
|
} else if (mode & PLUMA_FILE_BROWSER_STORE_FILTER_MODE_HIDE_BINARY) {
|
2011-11-07 13:46:58 -06:00
|
|
|
mateconf_client_set_string (client,
|
|
|
|
FILE_BROWSER_BASE_KEY "/filter_mode",
|
|
|
|
"binary",
|
|
|
|
NULL);
|
|
|
|
} else {
|
|
|
|
mateconf_client_set_string (client,
|
|
|
|
FILE_BROWSER_BASE_KEY "/filter_mode",
|
|
|
|
"none",
|
|
|
|
NULL);
|
|
|
|
}
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
g_object_unref (client);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
on_rename_cb (PlumaFileBrowserStore * store,
|
2011-11-07 13:46:58 -06:00
|
|
|
const gchar * olduri,
|
|
|
|
const gchar * newuri,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaWindow * window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaApp * app;
|
2011-11-07 13:46:58 -06:00
|
|
|
GList * documents;
|
|
|
|
GList * item;
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaDocument * doc;
|
2011-11-07 13:46:58 -06:00
|
|
|
GFile * docfile;
|
|
|
|
GFile * oldfile;
|
|
|
|
GFile * newfile;
|
|
|
|
gchar * uri;
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
/* Find all documents and set its uri to newuri where it matches olduri */
|
2011-11-07 16:52:18 -06:00
|
|
|
app = pluma_app_get_default ();
|
|
|
|
documents = pluma_app_get_documents (app);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
oldfile = g_file_new_for_uri (olduri);
|
|
|
|
newfile = g_file_new_for_uri (newuri);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
for (item = documents; item; item = item->next) {
|
2011-11-07 16:52:18 -06:00
|
|
|
doc = PLUMA_DOCUMENT (item->data);
|
|
|
|
uri = pluma_document_get_uri (doc);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
if (!uri)
|
|
|
|
continue;
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
docfile = g_file_new_for_uri (uri);
|
|
|
|
|
|
|
|
if (g_file_equal (docfile, oldfile)) {
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_document_set_uri (doc, newuri);
|
2011-11-07 13:46:58 -06:00
|
|
|
} else {
|
|
|
|
gchar *relative;
|
|
|
|
|
|
|
|
relative = g_file_get_relative_path (oldfile, docfile);
|
|
|
|
|
|
|
|
if (relative) {
|
|
|
|
/* relative now contains the part in docfile without
|
|
|
|
the prefix oldfile */
|
|
|
|
|
|
|
|
g_object_unref (docfile);
|
|
|
|
g_free (uri);
|
|
|
|
|
|
|
|
docfile = g_file_get_child (newfile, relative);
|
|
|
|
uri = g_file_get_uri (docfile);
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
pluma_document_set_uri (doc, uri);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
g_free (relative);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (uri);
|
|
|
|
g_object_unref (docfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_object_unref (oldfile);
|
|
|
|
g_object_unref (newfile);
|
|
|
|
|
|
|
|
g_list_free (documents);
|
|
|
|
}
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
on_filter_pattern_changed_cb (PlumaFileBrowserWidget * widget,
|
2011-11-07 13:46:58 -06:00
|
|
|
GParamSpec * param,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaWindow * window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
MateConfClient * client;
|
|
|
|
gchar * pattern;
|
|
|
|
|
|
|
|
client = mateconf_client_get_default ();
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
if (!client)
|
|
|
|
return;
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
g_object_get (G_OBJECT (widget), "filter-pattern", &pattern, NULL);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
if (pattern == NULL)
|
|
|
|
mateconf_client_set_string (client,
|
|
|
|
FILE_BROWSER_BASE_KEY "/filter_pattern",
|
|
|
|
"",
|
|
|
|
NULL);
|
|
|
|
else
|
|
|
|
mateconf_client_set_string (client,
|
|
|
|
FILE_BROWSER_BASE_KEY "/filter_pattern",
|
|
|
|
pattern,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
g_free (pattern);
|
|
|
|
}
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
on_virtual_root_changed_cb (PlumaFileBrowserStore * store,
|
2011-11-07 13:46:58 -06:00
|
|
|
GParamSpec * param,
|
2011-11-07 18:10:16 -06:00
|
|
|
PlumaWindow * window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserPluginData * data = get_plugin_data (window);
|
2011-11-07 13:46:58 -06:00
|
|
|
gchar * root;
|
|
|
|
gchar * virtual_root;
|
|
|
|
MateConfClient * client;
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
root = pluma_file_browser_store_get_root (store);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
if (!root)
|
|
|
|
return;
|
|
|
|
|
|
|
|
client = mateconf_client_get_default ();
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 13:46:58 -06:00
|
|
|
if (!client)
|
|
|
|
return;
|
|
|
|
|
|
|
|
mateconf_client_set_string (client,
|
|
|
|
FILE_BROWSER_BASE_KEY "/on_load/root",
|
|
|
|
root,
|
|
|
|
NULL);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
virtual_root = pluma_file_browser_store_get_virtual_root (store);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
if (!virtual_root) {
|
|
|
|
/* Set virtual to same as root then */
|
|
|
|
mateconf_client_set_string (client,
|
|
|
|
FILE_BROWSER_BASE_KEY "/on_load/virtual_root",
|
|
|
|
root,
|
|
|
|
NULL);
|
2011-11-07 18:10:16 -06:00
|
|
|
} else {
|
2011-11-07 13:46:58 -06:00
|
|
|
mateconf_client_set_string (client,
|
|
|
|
FILE_BROWSER_BASE_KEY "/on_load/virtual_root",
|
|
|
|
virtual_root,
|
2011-11-07 18:10:16 -06:00
|
|
|
NULL);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
g_signal_handlers_disconnect_by_func (window,
|
2011-11-07 13:46:58 -06:00
|
|
|
G_CALLBACK (on_tab_added_cb),
|
|
|
|
data);
|
|
|
|
|
|
|
|
g_object_unref (client);
|
|
|
|
g_free (root);
|
|
|
|
g_free (virtual_root);
|
|
|
|
}
|
|
|
|
|
2011-11-07 18:10:16 -06:00
|
|
|
static void
|
2011-11-07 16:52:18 -06:00
|
|
|
on_tab_added_cb (PlumaWindow * window,
|
|
|
|
PlumaTab * tab,
|
|
|
|
PlumaFileBrowserPluginData * data)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
MateConfClient *client;
|
|
|
|
gboolean open;
|
|
|
|
gboolean load_default = TRUE;
|
|
|
|
|
|
|
|
client = mateconf_client_get_default ();
|
|
|
|
|
|
|
|
if (!client)
|
|
|
|
return;
|
|
|
|
|
|
|
|
open = mateconf_client_get_bool (client,
|
|
|
|
FILE_BROWSER_BASE_KEY "/open_at_first_doc",
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (open) {
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaDocument *doc;
|
2011-11-07 13:46:58 -06:00
|
|
|
gchar *uri;
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
doc = pluma_tab_get_document (tab);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
uri = pluma_document_get_uri (doc);
|
2011-11-07 13:46:58 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
if (uri != NULL && pluma_utils_uri_has_file_scheme (uri)) {
|
2011-11-07 13:46:58 -06:00
|
|
|
prepare_auto_root (data);
|
|
|
|
set_root_from_doc (data, doc);
|
|
|
|
load_default = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (uri);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (load_default)
|
|
|
|
restore_default_location (data);
|
|
|
|
|
|
|
|
g_object_unref (client);
|
|
|
|
|
|
|
|
/* Disconnect this signal, it's only called once */
|
2011-11-07 18:10:16 -06:00
|
|
|
g_signal_handlers_disconnect_by_func (window,
|
2011-11-07 13:46:58 -06:00
|
|
|
G_CALLBACK (on_tab_added_cb),
|
|
|
|
data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gchar *
|
|
|
|
get_filename_from_path (GtkTreeModel *model, GtkTreePath *path)
|
|
|
|
{
|
|
|
|
GtkTreeIter iter;
|
|
|
|
gchar *uri;
|
|
|
|
|
|
|
|
gtk_tree_model_get_iter (model, &iter, path);
|
|
|
|
gtk_tree_model_get (model, &iter,
|
2011-11-07 16:52:18 -06:00
|
|
|
PLUMA_FILE_BROWSER_STORE_COLUMN_URI, &uri,
|
2011-11-07 13:46:58 -06:00
|
|
|
-1);
|
2011-11-07 18:10:16 -06:00
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
return pluma_file_browser_utils_uri_basename (uri);
|
2011-11-07 13:46:58 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-11-07 16:52:18 -06:00
|
|
|
on_confirm_no_trash_cb (PlumaFileBrowserWidget * widget,
|
2011-11-07 13:46:58 -06:00
|
|
|
GList * files,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaWindow * window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
gchar *normal;
|
|
|
|
gchar *message;
|
|
|
|
gchar *secondary;
|
|
|
|
gboolean result;
|
|
|
|
|
|
|
|
message = _("Cannot move file to trash, do you\nwant to delete permanently?");
|
|
|
|
|
|
|
|
if (files->next == NULL) {
|
2011-11-07 16:52:18 -06:00
|
|
|
normal = pluma_file_browser_utils_file_basename (G_FILE (files->data));
|
2011-11-07 13:46:58 -06:00
|
|
|
secondary = g_strdup_printf (_("The file \"%s\" cannot be moved to the trash."), normal);
|
|
|
|
g_free (normal);
|
|
|
|
} else {
|
|
|
|
secondary = g_strdup (_("The selected files cannot be moved to the trash."));
|
|
|
|
}
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
result = pluma_file_browser_utils_confirmation_dialog (window,
|
2011-11-07 18:10:16 -06:00
|
|
|
GTK_MESSAGE_QUESTION,
|
|
|
|
message,
|
|
|
|
secondary,
|
|
|
|
GTK_STOCK_DELETE,
|
2011-11-07 13:46:58 -06:00
|
|
|
NULL);
|
|
|
|
g_free (secondary);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2011-11-07 16:52:18 -06:00
|
|
|
on_confirm_delete_cb (PlumaFileBrowserWidget *widget,
|
|
|
|
PlumaFileBrowserStore *store,
|
2011-11-07 13:46:58 -06:00
|
|
|
GList *paths,
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaWindow *window)
|
2011-11-07 13:46:58 -06:00
|
|
|
{
|
|
|
|
gchar *normal;
|
|
|
|
gchar *message;
|
|
|
|
gchar *secondary;
|
|
|
|
gboolean result;
|
2011-11-07 16:52:18 -06:00
|
|
|
PlumaFileBrowserPluginData *data;
|
2011-11-07 13:46:58 -06:00
|
|
|
|
|
|
|
data = get_plugin_data (window);
|
|
|
|
|
|
|
|
if (!data->confirm_trash)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
if (paths->next == NULL) {
|
|
|
|
normal = get_filename_from_path (GTK_TREE_MODEL (store), (GtkTreePath *)(paths->data));
|
|
|
|
message = g_strdup_printf (_("Are you sure you want to permanently delete \"%s\"?"), normal);
|
|
|
|
g_free (normal);
|
|
|
|
} else {
|
|
|
|
message = g_strdup (_("Are you sure you want to permanently delete the selected files?"));
|
|
|
|
}
|
|
|
|
|
|
|
|
secondary = _("If you delete an item, it is permanently lost.");
|
|
|
|
|
2011-11-07 16:52:18 -06:00
|
|
|
result = pluma_file_browser_utils_confirmation_dialog (window,
|
2011-11-07 18:10:16 -06:00
|
|
|
GTK_MESSAGE_QUESTION,
|
|
|
|
message,
|
|
|
|
secondary,
|
|
|
|
GTK_STOCK_DELETE,
|
2011-11-07 13:46:58 -06:00
|
|
|
NULL);
|
|
|
|
|
|
|
|
g_free (message);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ex:ts=8:noet:
|