2007-10-22 12:42:19 +00:00
|
|
|
/*
|
|
|
|
* filebrowser.c - this file is part of Geany, a fast and lightweight IDE
|
|
|
|
*
|
2008-01-06 18:11:57 +00:00
|
|
|
* Copyright 2007-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
|
|
|
|
* Copyright 2007-2008 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
2007-10-22 12:42:19 +00:00
|
|
|
*
|
|
|
|
* 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 of the License, 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., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
* MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Sidebar file browser plugin. */
|
|
|
|
|
|
|
|
#include "geany.h"
|
2008-05-23 17:08:58 +00:00
|
|
|
#include <string.h>
|
2007-10-22 12:42:19 +00:00
|
|
|
|
|
|
|
#include <gdk/gdkkeysyms.h>
|
|
|
|
|
|
|
|
#include "support.h"
|
|
|
|
#include "prefs.h"
|
|
|
|
#include "document.h"
|
|
|
|
#include "utils.h"
|
2007-10-24 11:02:43 +00:00
|
|
|
#include "keybindings.h"
|
2007-11-13 16:41:59 +00:00
|
|
|
#include "project.h"
|
2008-05-16 12:08:39 +00:00
|
|
|
#include "ui_utils.h"
|
2007-10-24 12:04:15 +00:00
|
|
|
|
2007-10-22 12:42:19 +00:00
|
|
|
#include "plugindata.h"
|
2007-10-24 12:04:15 +00:00
|
|
|
#include "pluginmacros.h"
|
2007-10-22 12:42:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
GeanyData *geany_data;
|
2008-05-19 12:35:35 +00:00
|
|
|
GeanyFunctions *geany_functions;
|
2007-10-22 12:42:19 +00:00
|
|
|
|
|
|
|
|
2008-06-12 20:09:57 +00:00
|
|
|
PLUGIN_VERSION_CHECK(69)
|
2007-10-22 12:42:19 +00:00
|
|
|
|
2008-05-23 17:08:58 +00:00
|
|
|
PLUGIN_SET_INFO(_("File Browser"), _("Adds a file browser tab to the sidebar."), VERSION,
|
2007-11-20 18:15:46 +00:00
|
|
|
_("The Geany developer team"))
|
2007-10-22 12:42:19 +00:00
|
|
|
|
|
|
|
|
2008-04-03 16:06:41 +00:00
|
|
|
/* Keybinding(s) */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
KB_FOCUS_FILE_LIST,
|
|
|
|
KB_FOCUS_PATH_ENTRY,
|
|
|
|
KB_COUNT
|
|
|
|
};
|
|
|
|
|
|
|
|
PLUGIN_KEY_GROUP(file_browser, KB_COUNT)
|
|
|
|
|
|
|
|
|
2007-10-22 12:42:19 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
FILEVIEW_COLUMN_ICON = 0,
|
|
|
|
FILEVIEW_COLUMN_NAME,
|
2008-02-20 11:24:23 +00:00
|
|
|
FILEVIEW_N_COLUMNS
|
2007-10-22 12:42:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static gboolean show_hidden_files = FALSE;
|
|
|
|
static gboolean hide_object_files = TRUE;
|
|
|
|
|
2007-12-04 13:25:41 +00:00
|
|
|
static GtkWidget *file_view_vbox;
|
|
|
|
static GtkWidget *file_view;
|
|
|
|
static GtkListStore *file_store;
|
|
|
|
static GtkTreeIter *last_dir_iter = NULL;
|
|
|
|
static GtkEntryCompletion *entry_completion = NULL;
|
2007-10-22 12:42:19 +00:00
|
|
|
|
2008-04-22 15:14:30 +00:00
|
|
|
static GtkWidget *filter_entry;
|
2007-10-22 12:42:19 +00:00
|
|
|
static GtkWidget *path_entry;
|
2008-02-27 13:17:29 +00:00
|
|
|
static gchar *current_dir = NULL; /* in locale-encoding */
|
|
|
|
static gchar *open_cmd; /* in locale-encoding */
|
2007-12-02 10:52:19 +00:00
|
|
|
static gchar *config_file;
|
2008-04-22 15:14:30 +00:00
|
|
|
static gchar *filter = NULL;
|
2007-10-22 12:42:19 +00:00
|
|
|
|
2007-12-28 17:35:58 +00:00
|
|
|
static struct
|
|
|
|
{
|
|
|
|
GtkWidget *open;
|
|
|
|
GtkWidget *open_external;
|
|
|
|
GtkWidget *find_in_files;
|
|
|
|
} popup_items;
|
|
|
|
|
2007-10-22 12:42:19 +00:00
|
|
|
|
2008-02-27 13:17:29 +00:00
|
|
|
/* Returns: whether name should be hidden. */
|
2007-10-28 20:54:25 +00:00
|
|
|
static gboolean check_hidden(const gchar *base_name)
|
2007-10-22 12:42:19 +00:00
|
|
|
{
|
|
|
|
gsize len;
|
|
|
|
|
2007-10-28 20:54:25 +00:00
|
|
|
if (! NZV(base_name))
|
2007-10-22 12:42:19 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2007-10-28 20:54:25 +00:00
|
|
|
if (base_name[0] == '.')
|
2007-10-22 12:42:19 +00:00
|
|
|
return TRUE;
|
|
|
|
|
2007-10-28 20:54:25 +00:00
|
|
|
len = strlen(base_name);
|
|
|
|
if (base_name[len - 1] == '~')
|
2007-10-22 12:42:19 +00:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
if (hide_object_files)
|
|
|
|
{
|
|
|
|
const gchar *exts[] = {".o", ".obj", ".so", ".dll", ".a", ".lib"};
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
for (i = 0; i < G_N_ELEMENTS(exts); i++)
|
|
|
|
{
|
|
|
|
const gchar *ext = exts[i];
|
|
|
|
|
2008-11-24 17:57:16 +00:00
|
|
|
if (g_str_has_suffix(base_name, ext))
|
2007-10-22 12:42:19 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-22 15:14:30 +00:00
|
|
|
/* Returns: whether name has been removed by filter. */
|
|
|
|
static gboolean check_filtered(const gchar *base_name)
|
|
|
|
{
|
|
|
|
if (filter == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (! p_utils->str_equal(base_name, "*") && ! g_pattern_match_simple(filter, base_name))
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 13:17:29 +00:00
|
|
|
/* name is in locale encoding */
|
2007-10-22 12:42:19 +00:00
|
|
|
static void add_item(const gchar *name)
|
|
|
|
{
|
|
|
|
GtkTreeIter iter;
|
|
|
|
gchar *fname, *utf8_name;
|
|
|
|
gboolean dir;
|
|
|
|
|
|
|
|
if (! show_hidden_files && check_hidden(name))
|
|
|
|
return;
|
|
|
|
|
2008-04-22 15:14:30 +00:00
|
|
|
if (check_filtered(name))
|
|
|
|
return;
|
|
|
|
|
2007-10-22 12:42:19 +00:00
|
|
|
fname = g_strconcat(current_dir, G_DIR_SEPARATOR_S, name, NULL);
|
|
|
|
dir = g_file_test(fname, G_FILE_TEST_IS_DIR);
|
|
|
|
g_free(fname);
|
|
|
|
|
|
|
|
if (dir)
|
|
|
|
{
|
|
|
|
if (last_dir_iter == NULL)
|
|
|
|
gtk_list_store_prepend(file_store, &iter);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gtk_list_store_insert_after(file_store, &iter, last_dir_iter);
|
|
|
|
gtk_tree_iter_free(last_dir_iter);
|
|
|
|
}
|
|
|
|
last_dir_iter = gtk_tree_iter_copy(&iter);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
gtk_list_store_append(file_store, &iter);
|
|
|
|
|
2008-01-28 17:27:39 +00:00
|
|
|
utf8_name = p_utils->get_utf8_from_locale(name);
|
2007-10-22 12:42:19 +00:00
|
|
|
|
|
|
|
gtk_list_store_set(file_store, &iter,
|
|
|
|
FILEVIEW_COLUMN_ICON, (dir) ? GTK_STOCK_DIRECTORY : GTK_STOCK_FILE,
|
|
|
|
FILEVIEW_COLUMN_NAME, utf8_name, -1);
|
|
|
|
g_free(utf8_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 13:17:29 +00:00
|
|
|
/* adds ".." to the start of the file list */
|
2008-02-20 11:24:23 +00:00
|
|
|
static void add_top_level_entry(void)
|
2007-12-04 13:25:41 +00:00
|
|
|
{
|
|
|
|
GtkTreeIter iter;
|
|
|
|
|
2008-07-15 14:50:06 +00:00
|
|
|
if (! NZV(g_path_skip_root(current_dir)))
|
|
|
|
return; /* ignore 'C:\' or '/' */
|
2007-12-04 13:25:41 +00:00
|
|
|
|
|
|
|
gtk_list_store_prepend(file_store, &iter);
|
|
|
|
last_dir_iter = gtk_tree_iter_copy(&iter);
|
|
|
|
|
|
|
|
gtk_list_store_set(file_store, &iter,
|
|
|
|
FILEVIEW_COLUMN_ICON, GTK_STOCK_DIRECTORY, FILEVIEW_COLUMN_NAME, "..", -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-20 11:24:23 +00:00
|
|
|
static void clear(void)
|
2007-10-22 12:42:19 +00:00
|
|
|
{
|
|
|
|
gtk_list_store_clear(file_store);
|
|
|
|
|
2008-02-27 13:17:29 +00:00
|
|
|
/* reset the directory item pointer */
|
2007-10-22 12:42:19 +00:00
|
|
|
if (last_dir_iter != NULL)
|
|
|
|
gtk_tree_iter_free(last_dir_iter);
|
|
|
|
last_dir_iter = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 13:17:29 +00:00
|
|
|
/* recreate the tree model from current_dir. */
|
2008-02-20 11:24:23 +00:00
|
|
|
static void refresh(void)
|
2007-10-22 12:42:19 +00:00
|
|
|
{
|
|
|
|
gchar *utf8_dir;
|
|
|
|
GSList *list;
|
|
|
|
|
2008-02-27 13:17:29 +00:00
|
|
|
/* don't clear when the new path doesn't exist */
|
2007-12-02 10:52:19 +00:00
|
|
|
if (! g_file_test(current_dir, G_FILE_TEST_EXISTS))
|
|
|
|
return;
|
|
|
|
|
2007-10-22 12:42:19 +00:00
|
|
|
clear();
|
|
|
|
|
2008-01-28 17:27:39 +00:00
|
|
|
utf8_dir = p_utils->get_utf8_from_locale(current_dir);
|
2007-10-22 12:42:19 +00:00
|
|
|
gtk_entry_set_text(GTK_ENTRY(path_entry), utf8_dir);
|
|
|
|
g_free(utf8_dir);
|
|
|
|
|
2008-07-15 14:50:06 +00:00
|
|
|
add_top_level_entry(); /* ".." item */
|
|
|
|
|
2008-01-28 17:27:39 +00:00
|
|
|
list = p_utils->get_file_list(current_dir, NULL, NULL);
|
2007-10-22 12:42:19 +00:00
|
|
|
if (list != NULL)
|
|
|
|
{
|
|
|
|
g_slist_foreach(list, (GFunc) add_item, NULL);
|
|
|
|
g_slist_foreach(list, (GFunc) g_free, NULL);
|
|
|
|
g_slist_free(list);
|
|
|
|
}
|
2007-12-04 13:25:41 +00:00
|
|
|
gtk_entry_completion_set_model(entry_completion, GTK_TREE_MODEL(file_store));
|
2007-10-22 12:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-20 11:24:23 +00:00
|
|
|
static void on_go_home(void)
|
2007-10-29 17:15:03 +00:00
|
|
|
{
|
|
|
|
setptr(current_dir, g_strdup(g_get_home_dir()));
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-20 11:24:23 +00:00
|
|
|
static gchar *get_default_dir(void)
|
2007-11-13 16:41:59 +00:00
|
|
|
{
|
|
|
|
const gchar *dir = NULL;
|
2008-07-07 16:16:18 +00:00
|
|
|
GeanyProject *project = geany->app->project;
|
2007-11-13 16:41:59 +00:00
|
|
|
|
|
|
|
if (project)
|
|
|
|
dir = project->base_path;
|
|
|
|
if (NZV(dir))
|
2008-01-28 17:27:39 +00:00
|
|
|
return p_utils->get_locale_from_utf8(dir);
|
2007-11-13 16:41:59 +00:00
|
|
|
|
|
|
|
return g_get_current_dir();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-20 11:24:23 +00:00
|
|
|
static void on_current_path(void)
|
2007-10-22 12:42:19 +00:00
|
|
|
{
|
|
|
|
gchar *fname;
|
|
|
|
gchar *dir;
|
2008-06-12 20:09:57 +00:00
|
|
|
GeanyDocument *doc = p_document->get_current();
|
2007-10-22 12:42:19 +00:00
|
|
|
|
2008-06-12 20:09:57 +00:00
|
|
|
if (doc == NULL || doc->file_name == NULL || ! g_path_is_absolute(doc->file_name))
|
2007-10-24 11:02:43 +00:00
|
|
|
{
|
2007-11-13 16:41:59 +00:00
|
|
|
setptr(current_dir, get_default_dir());
|
|
|
|
refresh();
|
2007-10-29 17:15:03 +00:00
|
|
|
return;
|
2007-10-24 11:02:43 +00:00
|
|
|
}
|
2008-06-12 20:09:57 +00:00
|
|
|
fname = doc->file_name;
|
2008-01-28 17:27:39 +00:00
|
|
|
fname = p_utils->get_locale_from_utf8(fname);
|
2007-10-29 17:15:03 +00:00
|
|
|
dir = g_path_get_dirname(fname);
|
|
|
|
g_free(fname);
|
2007-10-22 12:42:19 +00:00
|
|
|
|
|
|
|
setptr(current_dir, dir);
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-20 11:24:23 +00:00
|
|
|
static void on_go_up(void)
|
2007-12-04 13:25:41 +00:00
|
|
|
{
|
2008-02-27 13:17:29 +00:00
|
|
|
/* remove the highest directory part (which becomes the basename of current_dir) */
|
2007-12-04 13:25:41 +00:00
|
|
|
setptr(current_dir, g_path_get_dirname(current_dir));
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-28 17:02:07 +00:00
|
|
|
static gboolean check_single_selection(GtkTreeSelection *treesel)
|
|
|
|
{
|
|
|
|
if (gtk_tree_selection_count_selected_rows(treesel) == 1)
|
|
|
|
return TRUE;
|
|
|
|
|
2008-01-28 17:27:39 +00:00
|
|
|
p_ui->set_statusbar(FALSE, _("Too many items selected!"));
|
2007-12-28 17:02:07 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Returns: TRUE if at least one of selected_items is a folder. */
|
|
|
|
static gboolean is_folder_selected(GList *selected_items)
|
2007-10-22 12:42:19 +00:00
|
|
|
{
|
|
|
|
GList *item;
|
|
|
|
GtkTreeModel *model = GTK_TREE_MODEL(file_store);
|
|
|
|
gboolean dir_found = FALSE;
|
|
|
|
|
2007-12-28 17:02:07 +00:00
|
|
|
for (item = selected_items; item != NULL; item = g_list_next(item))
|
2007-10-22 12:42:19 +00:00
|
|
|
{
|
|
|
|
gchar *icon;
|
2007-12-28 17:02:07 +00:00
|
|
|
GtkTreeIter iter;
|
|
|
|
GtkTreePath *treepath;
|
2007-10-22 12:42:19 +00:00
|
|
|
|
|
|
|
treepath = (GtkTreePath*) item->data;
|
|
|
|
gtk_tree_model_get_iter(model, &iter, treepath);
|
|
|
|
gtk_tree_model_get(model, &iter, FILEVIEW_COLUMN_ICON, &icon, -1);
|
|
|
|
|
2008-01-28 17:27:39 +00:00
|
|
|
if (p_utils->str_equal(icon, GTK_STOCK_DIRECTORY))
|
2007-10-22 12:42:19 +00:00
|
|
|
{
|
|
|
|
dir_found = TRUE;
|
|
|
|
g_free(icon);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
g_free(icon);
|
|
|
|
}
|
2007-12-28 17:02:07 +00:00
|
|
|
return dir_found;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Returns: the full filename in locale encoding. */
|
|
|
|
static gchar *get_tree_path_filename(GtkTreePath *treepath)
|
|
|
|
{
|
|
|
|
GtkTreeModel *model = GTK_TREE_MODEL(file_store);
|
|
|
|
GtkTreeIter iter;
|
|
|
|
gchar *name, *fname;
|
|
|
|
|
|
|
|
gtk_tree_model_get_iter(model, &iter, treepath);
|
|
|
|
gtk_tree_model_get(model, &iter, FILEVIEW_COLUMN_NAME, &name, -1);
|
2007-10-22 12:42:19 +00:00
|
|
|
|
2008-01-28 17:27:39 +00:00
|
|
|
if (p_utils->str_equal(name, ".."))
|
2007-10-22 12:42:19 +00:00
|
|
|
{
|
2007-12-28 17:02:07 +00:00
|
|
|
fname = g_path_get_dirname(current_dir);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-01-28 17:27:39 +00:00
|
|
|
setptr(name, p_utils->get_locale_from_utf8(name));
|
2007-12-28 17:02:07 +00:00
|
|
|
fname = g_build_filename(current_dir, name, NULL);
|
2007-10-22 12:42:19 +00:00
|
|
|
}
|
2007-12-28 17:02:07 +00:00
|
|
|
g_free(name);
|
2007-10-22 12:42:19 +00:00
|
|
|
|
2007-12-28 17:02:07 +00:00
|
|
|
return fname;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void open_external(const gchar *fname, gboolean dir_found)
|
|
|
|
{
|
|
|
|
gchar *cmd;
|
|
|
|
gchar *locale_cmd;
|
|
|
|
gchar *dir;
|
|
|
|
GString *cmd_str = g_string_new(open_cmd);
|
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
if (! dir_found)
|
|
|
|
dir = g_path_get_dirname(fname);
|
|
|
|
else
|
|
|
|
dir = g_strdup(fname);
|
|
|
|
|
2008-01-28 17:27:39 +00:00
|
|
|
p_utils->string_replace_all(cmd_str, "%f", fname);
|
|
|
|
p_utils->string_replace_all(cmd_str, "%d", dir);
|
2007-12-28 17:02:07 +00:00
|
|
|
|
|
|
|
cmd = g_string_free(cmd_str, FALSE);
|
2008-01-28 17:27:39 +00:00
|
|
|
locale_cmd = p_utils->get_locale_from_utf8(cmd);
|
2007-12-28 17:02:07 +00:00
|
|
|
if (! g_spawn_command_line_async(locale_cmd, &error))
|
2007-10-22 12:42:19 +00:00
|
|
|
{
|
2007-12-28 17:02:07 +00:00
|
|
|
gchar *c = strchr(cmd, ' ');
|
|
|
|
|
|
|
|
if (c != NULL)
|
|
|
|
*c = '\0';
|
2008-01-28 17:27:39 +00:00
|
|
|
p_ui->set_statusbar(TRUE,
|
2007-12-28 17:02:07 +00:00
|
|
|
_("Could not execute configured external command '%s' (%s)."),
|
|
|
|
cmd, error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
}
|
|
|
|
g_free(locale_cmd);
|
|
|
|
g_free(cmd);
|
|
|
|
g_free(dir);
|
|
|
|
}
|
2007-10-22 12:42:19 +00:00
|
|
|
|
|
|
|
|
2007-12-28 17:02:07 +00:00
|
|
|
static void on_external_open(GtkMenuItem *menuitem, gpointer user_data)
|
|
|
|
{
|
|
|
|
GtkTreeSelection *treesel;
|
|
|
|
GtkTreeModel *model;
|
|
|
|
GList *list;
|
|
|
|
gboolean dir_found;
|
2007-10-22 12:42:19 +00:00
|
|
|
|
2007-12-28 17:02:07 +00:00
|
|
|
treesel = gtk_tree_view_get_selection(GTK_TREE_VIEW(file_view));
|
|
|
|
|
|
|
|
list = gtk_tree_selection_get_selected_rows(treesel, &model);
|
|
|
|
dir_found = is_folder_selected(list);
|
|
|
|
|
|
|
|
if (! dir_found || check_single_selection(treesel))
|
|
|
|
{
|
|
|
|
GList *item;
|
|
|
|
|
|
|
|
for (item = list; item != NULL; item = g_list_next(item))
|
2007-10-22 12:42:19 +00:00
|
|
|
{
|
2007-12-28 17:02:07 +00:00
|
|
|
GtkTreePath *treepath = item->data;
|
|
|
|
gchar *fname = get_tree_path_filename(treepath);
|
|
|
|
|
|
|
|
open_external(fname, dir_found);
|
2007-10-22 12:42:19 +00:00
|
|
|
g_free(fname);
|
|
|
|
}
|
|
|
|
}
|
2007-12-28 17:02:07 +00:00
|
|
|
|
|
|
|
g_list_foreach(list, (GFunc) gtk_tree_path_free, NULL);
|
|
|
|
g_list_free(list);
|
2007-10-22 12:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-28 17:27:39 +00:00
|
|
|
/* We use p_document->open_files() as it's more efficient. */
|
2007-12-28 17:02:07 +00:00
|
|
|
static void open_selected_files(GList *list)
|
|
|
|
{
|
2008-01-02 13:39:53 +00:00
|
|
|
GSList *files = NULL;
|
2007-12-28 17:02:07 +00:00
|
|
|
GList *item;
|
|
|
|
|
|
|
|
for (item = list; item != NULL; item = g_list_next(item))
|
|
|
|
{
|
|
|
|
GtkTreePath *treepath = item->data;
|
|
|
|
gchar *fname = get_tree_path_filename(treepath);
|
|
|
|
|
2008-01-02 13:39:53 +00:00
|
|
|
files = g_slist_append(files, fname);
|
2007-12-28 17:02:07 +00:00
|
|
|
}
|
2008-01-28 17:27:39 +00:00
|
|
|
p_document->open_files(files, FALSE, NULL, NULL);
|
2008-02-27 13:17:29 +00:00
|
|
|
g_slist_foreach(files, (GFunc) g_free, NULL); /* free filenames */
|
2008-01-02 13:39:53 +00:00
|
|
|
g_slist_free(files);
|
2007-12-28 17:02:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void open_folder(GtkTreePath *treepath)
|
|
|
|
{
|
|
|
|
gchar *fname = get_tree_path_filename(treepath);
|
|
|
|
|
|
|
|
setptr(current_dir, fname);
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void on_open_clicked(GtkMenuItem *menuitem, gpointer user_data)
|
2007-12-02 10:52:19 +00:00
|
|
|
{
|
|
|
|
GtkTreeSelection *treesel;
|
|
|
|
GtkTreeModel *model;
|
|
|
|
GList *list;
|
2007-12-28 17:02:07 +00:00
|
|
|
gboolean dir_found;
|
2007-12-02 10:52:19 +00:00
|
|
|
|
|
|
|
treesel = gtk_tree_view_get_selection(GTK_TREE_VIEW(file_view));
|
|
|
|
|
|
|
|
list = gtk_tree_selection_get_selected_rows(treesel, &model);
|
2007-12-28 17:02:07 +00:00
|
|
|
dir_found = is_folder_selected(list);
|
|
|
|
|
|
|
|
if (dir_found)
|
|
|
|
{
|
|
|
|
if (check_single_selection(treesel))
|
|
|
|
{
|
2008-02-27 13:17:29 +00:00
|
|
|
GtkTreePath *treepath = list->data; /* first selected item */
|
2007-12-28 17:02:07 +00:00
|
|
|
|
|
|
|
open_folder(treepath);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
open_selected_files(list);
|
2007-12-02 10:52:19 +00:00
|
|
|
|
|
|
|
g_list_foreach(list, (GFunc) gtk_tree_path_free, NULL);
|
|
|
|
g_list_free(list);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void on_find_in_files(GtkMenuItem *menuitem, gpointer user_data)
|
2007-10-22 12:42:19 +00:00
|
|
|
{
|
|
|
|
GtkTreeSelection *treesel;
|
|
|
|
GtkTreeModel *model;
|
|
|
|
GList *list;
|
2007-12-02 10:52:19 +00:00
|
|
|
gchar *dir;
|
|
|
|
gboolean is_dir = FALSE;
|
2007-10-22 12:42:19 +00:00
|
|
|
|
|
|
|
treesel = gtk_tree_view_get_selection(GTK_TREE_VIEW(file_view));
|
2007-12-28 17:02:07 +00:00
|
|
|
if (! check_single_selection(treesel))
|
2007-12-02 10:52:19 +00:00
|
|
|
return;
|
2007-10-22 12:42:19 +00:00
|
|
|
|
|
|
|
list = gtk_tree_selection_get_selected_rows(treesel, &model);
|
2007-12-28 17:02:07 +00:00
|
|
|
is_dir = is_folder_selected(list);
|
|
|
|
|
|
|
|
if (is_dir)
|
2007-12-02 10:52:19 +00:00
|
|
|
{
|
2008-02-27 13:17:29 +00:00
|
|
|
GtkTreePath *treepath = list->data; /* first selected item */
|
2007-12-02 10:52:19 +00:00
|
|
|
|
2007-12-28 17:02:07 +00:00
|
|
|
dir = get_tree_path_filename(treepath);
|
2007-12-02 10:52:19 +00:00
|
|
|
}
|
2007-12-28 17:02:07 +00:00
|
|
|
else
|
|
|
|
dir = g_strdup(current_dir);
|
2007-10-22 12:42:19 +00:00
|
|
|
|
|
|
|
g_list_foreach(list, (GFunc) gtk_tree_path_free, NULL);
|
|
|
|
g_list_free(list);
|
2007-12-02 10:52:19 +00:00
|
|
|
|
2008-01-28 17:27:39 +00:00
|
|
|
setptr(dir, p_utils->get_utf8_from_locale(dir));
|
|
|
|
p_search->show_find_in_files_dialog(dir);
|
2007-12-02 10:52:19 +00:00
|
|
|
g_free(dir);
|
2007-10-22 12:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-24 11:15:00 +00:00
|
|
|
static void on_hidden_files_clicked(GtkCheckMenuItem *item)
|
|
|
|
{
|
|
|
|
show_hidden_files = gtk_check_menu_item_get_active(item);
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-29 19:30:28 +00:00
|
|
|
static void on_hide_sidebar(void)
|
|
|
|
{
|
2008-03-12 13:37:39 +00:00
|
|
|
p_keybindings->send_command(GEANY_KEY_GROUP_VIEW, GEANY_KEYS_VIEW_SIDEBAR);
|
2008-02-29 19:30:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-20 11:24:23 +00:00
|
|
|
static GtkWidget *create_popup_menu(void)
|
2007-10-24 11:02:43 +00:00
|
|
|
{
|
2008-11-21 13:34:58 +00:00
|
|
|
GtkWidget *item, *menu;
|
2007-10-24 11:02:43 +00:00
|
|
|
|
|
|
|
menu = gtk_menu_new();
|
|
|
|
|
|
|
|
item = gtk_image_menu_item_new_from_stock(GTK_STOCK_OPEN, NULL);
|
|
|
|
gtk_widget_show(item);
|
|
|
|
gtk_container_add(GTK_CONTAINER(menu), item);
|
2008-07-18 13:40:48 +00:00
|
|
|
g_signal_connect(item, "activate", G_CALLBACK(on_open_clicked), NULL);
|
2007-12-28 17:35:58 +00:00
|
|
|
popup_items.open = item;
|
2007-12-02 10:52:19 +00:00
|
|
|
|
2008-11-21 13:34:58 +00:00
|
|
|
item = p_ui->image_menu_item_new(GTK_STOCK_OPEN, _("Open _externally"));
|
2007-12-02 10:52:19 +00:00
|
|
|
gtk_widget_show(item);
|
|
|
|
gtk_container_add(GTK_CONTAINER(menu), item);
|
2008-07-18 13:40:48 +00:00
|
|
|
g_signal_connect(item, "activate", G_CALLBACK(on_external_open), NULL);
|
2007-12-28 17:35:58 +00:00
|
|
|
popup_items.open_external = item;
|
2007-12-02 10:52:19 +00:00
|
|
|
|
2008-11-21 13:34:58 +00:00
|
|
|
item = p_ui->image_menu_item_new(GTK_STOCK_FIND, _("_Find in Files"));
|
2007-12-02 10:52:19 +00:00
|
|
|
gtk_widget_show(item);
|
|
|
|
gtk_container_add(GTK_CONTAINER(menu), item);
|
2008-07-18 13:40:48 +00:00
|
|
|
g_signal_connect(item, "activate", G_CALLBACK(on_find_in_files), NULL);
|
2007-12-28 17:35:58 +00:00
|
|
|
popup_items.find_in_files = item;
|
2007-10-24 11:02:43 +00:00
|
|
|
|
|
|
|
item = gtk_separator_menu_item_new();
|
|
|
|
gtk_widget_show(item);
|
|
|
|
gtk_container_add(GTK_CONTAINER(menu), item);
|
|
|
|
|
2007-11-08 16:21:46 +00:00
|
|
|
item = gtk_check_menu_item_new_with_mnemonic(_("Show _Hidden Files"));
|
2007-10-24 11:15:00 +00:00
|
|
|
gtk_widget_show(item);
|
|
|
|
gtk_container_add(GTK_CONTAINER(menu), item);
|
2008-07-18 13:40:48 +00:00
|
|
|
g_signal_connect(item, "activate", G_CALLBACK(on_hidden_files_clicked), NULL);
|
2007-10-24 11:15:00 +00:00
|
|
|
|
|
|
|
item = gtk_separator_menu_item_new();
|
|
|
|
gtk_widget_show(item);
|
|
|
|
gtk_container_add(GTK_CONTAINER(menu), item);
|
|
|
|
|
2008-11-21 13:34:58 +00:00
|
|
|
item = p_ui->image_menu_item_new(GTK_STOCK_CLOSE, _("H_ide Sidebar"));
|
2007-10-24 11:02:43 +00:00
|
|
|
gtk_widget_show(item);
|
|
|
|
gtk_container_add(GTK_CONTAINER(menu), item);
|
2008-07-18 13:40:48 +00:00
|
|
|
g_signal_connect(item, "activate", G_CALLBACK(on_hide_sidebar), NULL);
|
2007-10-24 11:02:43 +00:00
|
|
|
|
|
|
|
return menu;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-22 12:42:19 +00:00
|
|
|
static gboolean on_button_press(GtkWidget *widget, GdkEventButton *event, gpointer user_data)
|
|
|
|
{
|
|
|
|
if (event->button == 1 && event->type == GDK_2BUTTON_PRESS)
|
2007-12-28 17:02:07 +00:00
|
|
|
on_open_clicked(NULL, NULL);
|
2008-05-16 12:16:03 +00:00
|
|
|
else if (event->button == 3)
|
|
|
|
return TRUE;
|
2007-12-28 17:35:58 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void update_popup_menu(GtkWidget *popup_menu)
|
|
|
|
{
|
|
|
|
GtkTreeSelection *treesel = gtk_tree_view_get_selection(GTK_TREE_VIEW(file_view));
|
|
|
|
gboolean have_sel = (gtk_tree_selection_count_selected_rows(treesel) > 0);
|
|
|
|
gboolean multi_sel = (gtk_tree_selection_count_selected_rows(treesel) > 1);
|
|
|
|
|
|
|
|
gtk_widget_set_sensitive(popup_items.open, have_sel);
|
|
|
|
gtk_widget_set_sensitive(popup_items.open_external, have_sel);
|
|
|
|
gtk_widget_set_sensitive(popup_items.find_in_files, have_sel && ! multi_sel);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 13:17:29 +00:00
|
|
|
/* delay updating popup menu until the selection has been set */
|
2007-12-28 17:35:58 +00:00
|
|
|
static gboolean on_button_release(GtkWidget *widget, GdkEventButton *event, gpointer user_data)
|
|
|
|
{
|
2007-10-24 11:02:43 +00:00
|
|
|
if (event->button == 3)
|
|
|
|
{
|
|
|
|
static GtkWidget *popup_menu = NULL;
|
|
|
|
|
|
|
|
if (popup_menu == NULL)
|
|
|
|
popup_menu = create_popup_menu();
|
|
|
|
|
2007-12-28 17:35:58 +00:00
|
|
|
update_popup_menu(popup_menu);
|
|
|
|
|
2007-10-24 11:02:43 +00:00
|
|
|
gtk_menu_popup(GTK_MENU(popup_menu), NULL, NULL, NULL, NULL,
|
|
|
|
event->button, event->time);
|
|
|
|
}
|
2007-10-22 12:42:19 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean on_key_press(GtkWidget *widget, GdkEventKey *event, gpointer data)
|
|
|
|
{
|
|
|
|
if (event->keyval == GDK_Return
|
|
|
|
|| event->keyval == GDK_ISO_Enter
|
|
|
|
|| event->keyval == GDK_KP_Enter
|
|
|
|
|| event->keyval == GDK_space)
|
2007-12-28 17:02:07 +00:00
|
|
|
on_open_clicked(NULL, NULL);
|
2007-10-22 12:42:19 +00:00
|
|
|
|
|
|
|
if ((event->keyval == GDK_Up ||
|
|
|
|
event->keyval == GDK_KP_Up) &&
|
2008-02-27 13:17:29 +00:00
|
|
|
(event->state & GDK_MOD1_MASK)) /* FIXME: Alt-Up doesn't seem to work! */
|
2007-10-22 12:42:19 +00:00
|
|
|
on_go_up();
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-22 15:14:30 +00:00
|
|
|
static void on_clear_filter(GtkEntry *entry, gpointer user_data)
|
|
|
|
{
|
|
|
|
setptr(filter, NULL);
|
|
|
|
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(filter_entry), "");
|
|
|
|
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-02 10:52:19 +00:00
|
|
|
static void on_path_entry_activate(GtkEntry *entry, gpointer user_data)
|
|
|
|
{
|
|
|
|
gchar *new_dir = (gchar*) gtk_entry_get_text(entry);
|
2007-12-28 17:02:07 +00:00
|
|
|
|
2007-12-02 10:52:19 +00:00
|
|
|
if (NZV(new_dir))
|
2007-12-04 13:25:41 +00:00
|
|
|
{
|
|
|
|
if (g_str_has_suffix(new_dir, ".."))
|
|
|
|
{
|
|
|
|
on_go_up();
|
|
|
|
return;
|
|
|
|
}
|
2008-01-28 17:27:39 +00:00
|
|
|
new_dir = p_utils->get_locale_from_utf8(new_dir);
|
2007-12-04 13:25:41 +00:00
|
|
|
}
|
2007-12-02 10:52:19 +00:00
|
|
|
else
|
|
|
|
new_dir = g_strdup(g_get_home_dir());
|
|
|
|
|
|
|
|
setptr(current_dir, new_dir);
|
2008-04-22 15:14:30 +00:00
|
|
|
|
|
|
|
on_clear_filter(NULL, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void on_filter_activate(GtkEntry *entry, gpointer user_data)
|
|
|
|
{
|
|
|
|
setptr(filter, g_strdup(gtk_entry_get_text(entry)));
|
|
|
|
|
|
|
|
if (! NZV(filter))
|
|
|
|
{
|
|
|
|
setptr(filter, g_strdup("*"));
|
|
|
|
}
|
|
|
|
|
2007-12-02 10:52:19 +00:00
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-20 11:24:23 +00:00
|
|
|
static void prepare_file_view(void)
|
2007-10-22 12:42:19 +00:00
|
|
|
{
|
|
|
|
GtkCellRenderer *text_renderer, *icon_renderer;
|
|
|
|
GtkTreeViewColumn *column;
|
|
|
|
GtkTreeSelection *select;
|
|
|
|
PangoFontDescription *pfd;
|
|
|
|
|
|
|
|
file_store = gtk_list_store_new(FILEVIEW_N_COLUMNS, G_TYPE_STRING, G_TYPE_STRING);
|
|
|
|
|
|
|
|
gtk_tree_view_set_model(GTK_TREE_VIEW(file_view), GTK_TREE_MODEL(file_store));
|
2008-10-07 18:51:50 +00:00
|
|
|
g_object_unref(file_store);
|
2007-10-22 12:42:19 +00:00
|
|
|
|
|
|
|
icon_renderer = gtk_cell_renderer_pixbuf_new();
|
|
|
|
text_renderer = gtk_cell_renderer_text_new();
|
|
|
|
column = gtk_tree_view_column_new();
|
|
|
|
gtk_tree_view_column_pack_start(column, icon_renderer, FALSE);
|
|
|
|
gtk_tree_view_column_set_attributes(column, icon_renderer, "stock-id", FILEVIEW_COLUMN_ICON, NULL);
|
|
|
|
gtk_tree_view_column_pack_start(column, text_renderer, TRUE);
|
|
|
|
gtk_tree_view_column_set_attributes(column, text_renderer, "text", FILEVIEW_COLUMN_NAME, NULL);
|
|
|
|
gtk_tree_view_append_column(GTK_TREE_VIEW(file_view), column);
|
|
|
|
gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(file_view), FALSE);
|
|
|
|
|
|
|
|
gtk_tree_view_set_enable_search(GTK_TREE_VIEW(file_view), TRUE);
|
|
|
|
gtk_tree_view_set_search_column(GTK_TREE_VIEW(file_view), FILEVIEW_COLUMN_NAME);
|
|
|
|
|
2008-07-07 16:16:18 +00:00
|
|
|
pfd = pango_font_description_from_string(geany->interface_prefs->tagbar_font);
|
2007-10-22 12:42:19 +00:00
|
|
|
gtk_widget_modify_font(file_view, pfd);
|
|
|
|
pango_font_description_free(pfd);
|
|
|
|
|
2008-02-27 13:17:29 +00:00
|
|
|
/* selection handling */
|
2007-10-22 12:42:19 +00:00
|
|
|
select = gtk_tree_view_get_selection(GTK_TREE_VIEW(file_view));
|
|
|
|
gtk_tree_selection_set_mode(select, GTK_SELECTION_MULTIPLE);
|
|
|
|
|
|
|
|
g_signal_connect(G_OBJECT(file_view), "realize", G_CALLBACK(on_current_path), NULL);
|
2008-07-18 13:40:48 +00:00
|
|
|
g_signal_connect(file_view, "button-press-event", G_CALLBACK(on_button_press), NULL);
|
|
|
|
g_signal_connect(file_view, "button-release-event", G_CALLBACK(on_button_release), NULL);
|
|
|
|
g_signal_connect(file_view, "key-press-event", G_CALLBACK(on_key_press), NULL);
|
2007-10-22 12:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-20 11:24:23 +00:00
|
|
|
static GtkWidget *make_toolbar(void)
|
2007-10-22 12:42:19 +00:00
|
|
|
{
|
2007-10-24 11:02:43 +00:00
|
|
|
GtkWidget *wid, *toolbar;
|
2007-10-22 12:42:19 +00:00
|
|
|
|
|
|
|
toolbar = gtk_toolbar_new();
|
|
|
|
gtk_toolbar_set_icon_size(GTK_TOOLBAR(toolbar), GTK_ICON_SIZE_MENU);
|
2007-10-26 16:09:00 +00:00
|
|
|
gtk_toolbar_set_style(GTK_TOOLBAR(toolbar), GTK_TOOLBAR_ICONS);
|
2007-10-22 12:42:19 +00:00
|
|
|
|
|
|
|
wid = (GtkWidget *) gtk_tool_button_new_from_stock(GTK_STOCK_GO_UP);
|
2008-11-18 20:14:42 +00:00
|
|
|
p_ui->widget_set_tooltip_text(wid, _("Up"));
|
2008-07-18 13:40:48 +00:00
|
|
|
g_signal_connect(wid, "clicked", G_CALLBACK(on_go_up), NULL);
|
2007-10-22 12:42:19 +00:00
|
|
|
gtk_container_add(GTK_CONTAINER(toolbar), wid);
|
|
|
|
|
|
|
|
wid = (GtkWidget *) gtk_tool_button_new_from_stock(GTK_STOCK_REFRESH);
|
2008-11-18 20:14:42 +00:00
|
|
|
p_ui->widget_set_tooltip_text(wid, _("Refresh"));
|
2008-07-18 13:40:48 +00:00
|
|
|
g_signal_connect(wid, "clicked", G_CALLBACK(refresh), NULL);
|
2007-10-22 12:42:19 +00:00
|
|
|
gtk_container_add(GTK_CONTAINER(toolbar), wid);
|
|
|
|
|
|
|
|
wid = (GtkWidget *) gtk_tool_button_new_from_stock(GTK_STOCK_HOME);
|
2008-11-18 20:14:42 +00:00
|
|
|
p_ui->widget_set_tooltip_text(wid, _("Home"));
|
2008-07-18 13:40:48 +00:00
|
|
|
g_signal_connect(wid, "clicked", G_CALLBACK(on_go_home), NULL);
|
2007-10-22 12:42:19 +00:00
|
|
|
gtk_container_add(GTK_CONTAINER(toolbar), wid);
|
|
|
|
|
|
|
|
wid = (GtkWidget *) gtk_tool_button_new_from_stock(GTK_STOCK_JUMP_TO);
|
2008-11-18 20:14:42 +00:00
|
|
|
p_ui->widget_set_tooltip_text(wid, _("Set path from document"));
|
2008-07-18 13:40:48 +00:00
|
|
|
g_signal_connect(wid, "clicked", G_CALLBACK(on_current_path), NULL);
|
2007-10-22 12:42:19 +00:00
|
|
|
gtk_container_add(GTK_CONTAINER(toolbar), wid);
|
|
|
|
|
2008-05-16 12:16:03 +00:00
|
|
|
wid = (GtkWidget *) gtk_separator_tool_item_new();
|
|
|
|
gtk_container_add(GTK_CONTAINER(toolbar), wid);
|
|
|
|
|
2008-04-22 15:14:30 +00:00
|
|
|
wid = (GtkWidget *) gtk_tool_button_new_from_stock(GTK_STOCK_CLEAR);
|
2008-11-18 20:14:42 +00:00
|
|
|
p_ui->widget_set_tooltip_text(wid, _("Clear the filter"));
|
2008-07-18 13:40:48 +00:00
|
|
|
g_signal_connect(wid, "clicked", G_CALLBACK(on_clear_filter), NULL);
|
2008-04-22 15:14:30 +00:00
|
|
|
gtk_container_add(GTK_CONTAINER(toolbar), wid);
|
|
|
|
|
2007-10-24 11:02:43 +00:00
|
|
|
return toolbar;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-22 15:14:30 +00:00
|
|
|
static GtkWidget *make_filterbar(void)
|
|
|
|
{
|
|
|
|
GtkWidget *label, *filterbar;
|
|
|
|
|
|
|
|
filterbar = gtk_hbox_new(FALSE, 1);
|
|
|
|
|
|
|
|
label = gtk_label_new(_("Filter:"));
|
|
|
|
|
|
|
|
filter_entry = gtk_entry_new();
|
2008-07-18 13:40:48 +00:00
|
|
|
g_signal_connect(filter_entry, "activate", G_CALLBACK(on_filter_activate), NULL);
|
2008-04-22 15:14:30 +00:00
|
|
|
|
|
|
|
gtk_box_pack_start(GTK_BOX(filterbar), label, FALSE, FALSE, 0);
|
|
|
|
gtk_box_pack_start(GTK_BOX(filterbar), filter_entry, TRUE, TRUE, 0);
|
|
|
|
|
|
|
|
return filterbar;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-04 13:25:41 +00:00
|
|
|
static gboolean completion_match_func(GtkEntryCompletion *completion, const gchar *key,
|
|
|
|
GtkTreeIter *iter, gpointer user_data)
|
|
|
|
{
|
|
|
|
gchar *str, *icon;
|
|
|
|
gboolean result = FALSE;
|
|
|
|
|
|
|
|
gtk_tree_model_get(GTK_TREE_MODEL(file_store), iter,
|
|
|
|
FILEVIEW_COLUMN_ICON, &icon, FILEVIEW_COLUMN_NAME, &str, -1);
|
|
|
|
|
2008-01-28 17:27:39 +00:00
|
|
|
if (str != NULL && icon != NULL && p_utils->str_equal(icon, GTK_STOCK_DIRECTORY) &&
|
2007-12-04 13:25:41 +00:00
|
|
|
! g_str_has_suffix(key, G_DIR_SEPARATOR_S))
|
|
|
|
{
|
2008-02-27 13:17:29 +00:00
|
|
|
/* key is something like "/tmp/te" and str is a filename like "test",
|
|
|
|
* so strip the path from key to make them comparable */
|
2007-12-04 13:25:41 +00:00
|
|
|
gchar *base_name = g_path_get_basename(key);
|
|
|
|
gchar *str_lowered = g_utf8_strdown(str, -1);
|
|
|
|
result = g_str_has_prefix(str_lowered, base_name);
|
|
|
|
g_free(base_name);
|
|
|
|
g_free(str_lowered);
|
|
|
|
}
|
|
|
|
g_free(str);
|
|
|
|
g_free(icon);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean completion_match_selected(GtkEntryCompletion *widget, GtkTreeModel *model,
|
|
|
|
GtkTreeIter *iter, gpointer user_data)
|
|
|
|
{
|
|
|
|
gchar *str;
|
|
|
|
gtk_tree_model_get(model, iter, FILEVIEW_COLUMN_NAME, &str, -1);
|
|
|
|
if (str != NULL)
|
|
|
|
{
|
|
|
|
gchar *text = g_strconcat(current_dir, G_DIR_SEPARATOR_S, str, NULL);
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(path_entry), text);
|
|
|
|
gtk_editable_set_position(GTK_EDITABLE(path_entry), -1);
|
2008-02-27 13:17:29 +00:00
|
|
|
/* force change of directory when completion is done */
|
2007-12-04 13:25:41 +00:00
|
|
|
on_path_entry_activate(GTK_ENTRY(path_entry), NULL);
|
|
|
|
g_free(text);
|
|
|
|
}
|
|
|
|
g_free(str);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-20 11:24:23 +00:00
|
|
|
static void completion_create(void)
|
2007-12-04 13:25:41 +00:00
|
|
|
{
|
|
|
|
entry_completion = gtk_entry_completion_new();
|
|
|
|
|
|
|
|
gtk_entry_completion_set_inline_completion(entry_completion, FALSE);
|
|
|
|
gtk_entry_completion_set_popup_completion(entry_completion, TRUE);
|
|
|
|
gtk_entry_completion_set_text_column(entry_completion, FILEVIEW_COLUMN_NAME);
|
|
|
|
gtk_entry_completion_set_match_func(entry_completion, completion_match_func, NULL, NULL);
|
|
|
|
|
|
|
|
g_signal_connect(entry_completion, "match-selected",
|
|
|
|
G_CALLBACK(completion_match_selected), NULL);
|
|
|
|
|
|
|
|
gtk_entry_set_completion(GTK_ENTRY(path_entry), entry_completion);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-12-02 10:52:19 +00:00
|
|
|
#define CHECK_READ_SETTING(var, error, tmp) \
|
|
|
|
if ((error) != NULL) \
|
|
|
|
{ \
|
|
|
|
g_error_free((error)); \
|
|
|
|
(error) = NULL; \
|
|
|
|
} \
|
|
|
|
else \
|
|
|
|
(var) = (tmp);
|
|
|
|
|
2008-04-03 16:06:41 +00:00
|
|
|
static void load_settings(void)
|
2007-10-24 11:02:43 +00:00
|
|
|
{
|
2007-12-02 10:52:19 +00:00
|
|
|
GKeyFile *config = g_key_file_new();
|
|
|
|
GError *error = NULL;
|
|
|
|
gboolean tmp;
|
2007-10-24 11:02:43 +00:00
|
|
|
|
2008-07-07 16:16:18 +00:00
|
|
|
config_file = g_strconcat(geany->app->configdir, G_DIR_SEPARATOR_S, "plugins", G_DIR_SEPARATOR_S,
|
2008-04-03 16:06:41 +00:00
|
|
|
"filebrowser", G_DIR_SEPARATOR_S, "filebrowser.conf", NULL);
|
|
|
|
g_key_file_load_from_file(config, config_file, G_KEY_FILE_NONE, NULL);
|
|
|
|
open_cmd = g_key_file_get_string(config, "filebrowser", "open_command", &error);
|
|
|
|
if (error != NULL)
|
|
|
|
{
|
|
|
|
open_cmd = g_strdup("nautilus \"%d\"");
|
|
|
|
g_error_free(error);
|
|
|
|
error = NULL;
|
|
|
|
}
|
|
|
|
tmp = g_key_file_get_boolean(config, "filebrowser", "show_hidden_files", &error);
|
|
|
|
CHECK_READ_SETTING(show_hidden_files, error, tmp);
|
|
|
|
tmp = g_key_file_get_boolean(config, "filebrowser", "hide_object_files", &error);
|
|
|
|
CHECK_READ_SETTING(hide_object_files, error, tmp);
|
|
|
|
|
|
|
|
g_key_file_free(config);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void kb_activate(guint key_id)
|
|
|
|
{
|
|
|
|
switch (key_id)
|
|
|
|
{
|
|
|
|
case KB_FOCUS_FILE_LIST:
|
|
|
|
gtk_widget_grab_focus(file_view);
|
|
|
|
break;
|
|
|
|
case KB_FOCUS_PATH_ENTRY:
|
|
|
|
gtk_widget_grab_focus(path_entry);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-26 17:24:11 +00:00
|
|
|
void plugin_init(GeanyData *data)
|
2008-04-03 16:06:41 +00:00
|
|
|
{
|
2008-04-22 15:14:30 +00:00
|
|
|
GtkWidget *scrollwin, *toolbar, *filterbar;
|
|
|
|
|
|
|
|
filter = NULL;
|
2008-04-03 16:06:41 +00:00
|
|
|
|
2007-11-20 18:15:46 +00:00
|
|
|
file_view_vbox = gtk_vbox_new(FALSE, 0);
|
2007-10-24 11:02:43 +00:00
|
|
|
toolbar = make_toolbar();
|
2007-11-20 18:15:46 +00:00
|
|
|
gtk_box_pack_start(GTK_BOX(file_view_vbox), toolbar, FALSE, FALSE, 0);
|
2007-10-22 12:42:19 +00:00
|
|
|
|
2008-04-22 15:14:30 +00:00
|
|
|
filterbar = make_filterbar();
|
|
|
|
gtk_box_pack_start(GTK_BOX(file_view_vbox), filterbar, FALSE, FALSE, 0);
|
|
|
|
|
2007-10-22 12:42:19 +00:00
|
|
|
path_entry = gtk_entry_new();
|
2007-11-20 18:15:46 +00:00
|
|
|
gtk_box_pack_start(GTK_BOX(file_view_vbox), path_entry, FALSE, FALSE, 2);
|
2008-07-18 13:40:48 +00:00
|
|
|
g_signal_connect(path_entry, "activate", G_CALLBACK(on_path_entry_activate), NULL);
|
2007-10-22 12:42:19 +00:00
|
|
|
|
2007-10-24 11:02:43 +00:00
|
|
|
file_view = gtk_tree_view_new();
|
|
|
|
prepare_file_view();
|
2007-12-04 13:25:41 +00:00
|
|
|
completion_create();
|
2007-10-24 11:02:43 +00:00
|
|
|
|
2007-10-22 12:42:19 +00:00
|
|
|
scrollwin = gtk_scrolled_window_new(NULL, NULL);
|
|
|
|
gtk_scrolled_window_set_policy(
|
|
|
|
GTK_SCROLLED_WINDOW(scrollwin),
|
|
|
|
GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
|
|
|
|
gtk_container_add(GTK_CONTAINER(scrollwin), file_view);
|
2007-11-20 18:15:46 +00:00
|
|
|
gtk_container_add(GTK_CONTAINER(file_view_vbox), scrollwin);
|
2007-10-22 12:42:19 +00:00
|
|
|
|
2007-11-20 18:15:46 +00:00
|
|
|
gtk_widget_show_all(file_view_vbox);
|
2008-07-07 16:16:18 +00:00
|
|
|
gtk_notebook_append_page(GTK_NOTEBOOK(geany->main_widgets->sidebar_notebook), file_view_vbox,
|
2007-10-22 12:42:19 +00:00
|
|
|
gtk_label_new(_("Files")));
|
2007-12-02 10:52:19 +00:00
|
|
|
|
2008-04-03 16:06:41 +00:00
|
|
|
load_settings();
|
2007-12-02 10:52:19 +00:00
|
|
|
|
2008-04-03 16:06:41 +00:00
|
|
|
/* setup keybindings */
|
|
|
|
p_keybindings->set_item(plugin_key_group, KB_FOCUS_FILE_LIST, kb_activate,
|
|
|
|
0, 0, "focus_file_list", _("Focus File List"), NULL);
|
|
|
|
p_keybindings->set_item(plugin_key_group, KB_FOCUS_PATH_ENTRY, kb_activate,
|
|
|
|
0, 0, "focus_path_entry", _("Focus Path Entry"), NULL);
|
2007-12-02 10:52:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-28 13:05:09 +00:00
|
|
|
static struct
|
2007-12-02 10:52:19 +00:00
|
|
|
{
|
2008-05-28 13:05:09 +00:00
|
|
|
GtkWidget *open_cmd_entry;
|
|
|
|
GtkWidget *show_hidden_checkbox;
|
|
|
|
GtkWidget *hide_objects_checkbox;
|
|
|
|
}
|
|
|
|
pref_widgets;
|
|
|
|
|
|
|
|
static void
|
|
|
|
on_configure_response(GtkDialog *dialog, gint response, gpointer user_data)
|
|
|
|
{
|
|
|
|
if (response == GTK_RESPONSE_OK || response == GTK_RESPONSE_APPLY)
|
|
|
|
{
|
|
|
|
GKeyFile *config = g_key_file_new();
|
|
|
|
gchar *data;
|
|
|
|
gchar *config_dir = g_path_get_dirname(config_file);
|
|
|
|
|
|
|
|
g_free(open_cmd);
|
|
|
|
open_cmd = g_strdup(gtk_entry_get_text(GTK_ENTRY(pref_widgets.open_cmd_entry)));
|
|
|
|
show_hidden_files = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(pref_widgets.show_hidden_checkbox));
|
|
|
|
hide_object_files = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(pref_widgets.hide_objects_checkbox));
|
|
|
|
|
|
|
|
g_key_file_load_from_file(config, config_file, G_KEY_FILE_NONE, NULL);
|
|
|
|
|
|
|
|
g_key_file_set_string(config, "filebrowser", "open_command", open_cmd);
|
|
|
|
g_key_file_set_boolean(config, "filebrowser", "show_hidden_files", show_hidden_files);
|
|
|
|
g_key_file_set_boolean(config, "filebrowser", "hide_object_files", hide_object_files);
|
|
|
|
|
|
|
|
if (! g_file_test(config_dir, G_FILE_TEST_IS_DIR) && p_utils->mkdir(config_dir, TRUE) != 0)
|
|
|
|
{
|
|
|
|
p_dialogs->show_msgbox(GTK_MESSAGE_ERROR,
|
|
|
|
_("Plugin configuration directory could not be created."));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* write config to file */
|
|
|
|
data = g_key_file_to_data(config, NULL, NULL);
|
|
|
|
p_utils->write_file(config_file, data);
|
|
|
|
g_free(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* apply the changes */
|
|
|
|
refresh();
|
|
|
|
|
|
|
|
g_free(config_dir);
|
|
|
|
g_key_file_free(config);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GtkWidget *plugin_configure(GtkDialog *dialog)
|
|
|
|
{
|
|
|
|
GtkWidget *label, *entry, *checkbox_of, *checkbox_hf, *vbox;
|
2007-12-02 10:52:19 +00:00
|
|
|
|
2008-05-28 13:05:09 +00:00
|
|
|
vbox = gtk_vbox_new(FALSE, 6);
|
2007-12-02 10:52:19 +00:00
|
|
|
|
2008-02-06 16:02:00 +00:00
|
|
|
label = gtk_label_new(_("External open command:"));
|
2007-12-02 10:52:19 +00:00
|
|
|
gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
|
|
|
|
gtk_container_add(GTK_CONTAINER(vbox), label);
|
|
|
|
|
|
|
|
entry = gtk_entry_new();
|
|
|
|
gtk_widget_show(entry);
|
|
|
|
if (open_cmd != NULL)
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(entry), open_cmd);
|
2008-11-18 20:14:42 +00:00
|
|
|
p_ui->widget_set_tooltip_text(entry,
|
2007-12-02 10:52:19 +00:00
|
|
|
_("The command to execute when using \"Open with\". You can use %f and %d wildcards.\n"
|
|
|
|
"%f will be replaced with the filename including full path\n"
|
2008-11-18 20:14:42 +00:00
|
|
|
"%d will be replaced with the path name of the selected file without the filename"));
|
2007-12-02 10:52:19 +00:00
|
|
|
gtk_container_add(GTK_CONTAINER(vbox), entry);
|
2008-05-28 13:05:09 +00:00
|
|
|
pref_widgets.open_cmd_entry = entry;
|
2007-12-02 10:52:19 +00:00
|
|
|
|
|
|
|
checkbox_hf = gtk_check_button_new_with_label(_("Show hidden files"));
|
|
|
|
gtk_button_set_focus_on_click(GTK_BUTTON(checkbox_hf), FALSE);
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbox_hf), show_hidden_files);
|
|
|
|
gtk_box_pack_start(GTK_BOX(vbox), checkbox_hf, FALSE, FALSE, 5);
|
2008-05-28 13:05:09 +00:00
|
|
|
pref_widgets.show_hidden_checkbox = checkbox_hf;
|
2007-12-02 10:52:19 +00:00
|
|
|
|
|
|
|
checkbox_of = gtk_check_button_new_with_label(_("Hide object files"));
|
|
|
|
gtk_button_set_focus_on_click(GTK_BUTTON(checkbox_of), FALSE);
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbox_of), hide_object_files);
|
2008-11-18 20:14:42 +00:00
|
|
|
p_ui->widget_set_tooltip_text(checkbox_of,
|
2007-12-02 10:52:19 +00:00
|
|
|
_("Don't show generated object files in the file browser, this includes "
|
2008-11-18 20:14:42 +00:00
|
|
|
"*.o, *.obj. *.so, *.dll, *.a, *.lib"));
|
2007-12-02 10:52:19 +00:00
|
|
|
gtk_box_pack_start(GTK_BOX(vbox), checkbox_of, FALSE, FALSE, 5);
|
2008-05-28 13:05:09 +00:00
|
|
|
pref_widgets.hide_objects_checkbox = checkbox_of;
|
2007-12-02 10:52:19 +00:00
|
|
|
|
|
|
|
gtk_widget_show_all(vbox);
|
|
|
|
|
2008-05-28 13:05:09 +00:00
|
|
|
g_signal_connect(dialog, "response", G_CALLBACK(on_configure_response), NULL);
|
|
|
|
return vbox;
|
2007-10-22 12:42:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-26 17:24:11 +00:00
|
|
|
void plugin_cleanup(void)
|
2007-10-22 12:42:19 +00:00
|
|
|
{
|
2007-12-02 10:52:19 +00:00
|
|
|
g_free(config_file);
|
|
|
|
g_free(open_cmd);
|
2008-04-22 15:14:30 +00:00
|
|
|
g_free(filter);
|
2007-11-20 18:15:46 +00:00
|
|
|
gtk_widget_destroy(file_view_vbox);
|
2007-12-04 13:25:41 +00:00
|
|
|
g_object_unref(G_OBJECT(entry_completion));
|
2007-10-22 12:42:19 +00:00
|
|
|
}
|