2005-11-22 12:26:26 +00:00
|
|
|
/*
|
|
|
|
* prefs.c - this file is part of Geany, a fast and lightweight IDE
|
|
|
|
*
|
2006-02-20 15:11:38 +00:00
|
|
|
* Copyright 2006 Enrico Troeger <enrico.troeger@uvena.de>
|
2005-11-22 12:26:26 +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
|
2006-06-08 15:12:55 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2005-11-22 12:26:26 +00:00
|
|
|
*
|
2005-12-11 02:16:02 +00:00
|
|
|
* $Id$
|
2005-11-22 12:26:26 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2006-05-22 00:25:19 +00:00
|
|
|
#include <stdlib.h>
|
2006-06-08 15:12:55 +00:00
|
|
|
#include <string.h>
|
2006-05-22 00:25:19 +00:00
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
#include "geany.h"
|
|
|
|
|
|
|
|
#include "prefs.h"
|
|
|
|
#include "support.h"
|
2006-05-30 19:19:05 +00:00
|
|
|
#include "dialogs.h"
|
2006-09-05 14:24:47 +00:00
|
|
|
#include "ui_utils.h"
|
2005-11-22 12:26:26 +00:00
|
|
|
#include "utils.h"
|
|
|
|
#include "msgwindow.h"
|
|
|
|
#include "sciwrappers.h"
|
2006-02-26 18:19:28 +00:00
|
|
|
#include "document.h"
|
2006-02-20 15:11:38 +00:00
|
|
|
#include "keyfile.h"
|
2006-06-16 19:58:26 +00:00
|
|
|
#include "keybindings.h"
|
2006-07-11 14:15:56 +00:00
|
|
|
#include "interface.h"
|
|
|
|
#include "encodings.h"
|
2006-06-16 19:58:26 +00:00
|
|
|
|
2005-12-11 02:16:02 +00:00
|
|
|
#ifdef HAVE_VTE
|
|
|
|
# include "vte.h"
|
|
|
|
#endif
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-11-24 11:47:29 +00:00
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
# include "win32.h"
|
|
|
|
#endif
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-05-19 17:18:06 +00:00
|
|
|
gchar *dialog_key_name;
|
|
|
|
static GtkListStore *store = NULL;
|
|
|
|
static GtkTreeView *tree = NULL;
|
|
|
|
GtkWidget *dialog_label;
|
|
|
|
static gboolean edited = FALSE;
|
|
|
|
|
|
|
|
static gboolean on_prefs_tree_view_button_press_event(
|
|
|
|
GtkWidget *widget, GdkEventButton *event, gpointer user_data);
|
|
|
|
static void on_cell_edited(GtkCellRendererText *cellrenderertext, gchar *path, gchar *new_text, gpointer user_data);
|
|
|
|
static gboolean on_keytype_dialog_response(GtkWidget *dialog, GdkEventKey *event, gpointer user_data);
|
|
|
|
static void on_dialog_response(GtkWidget *dialog, gint response, gpointer user_data);
|
2006-05-30 19:19:05 +00:00
|
|
|
static gboolean find_duplicate(guint idx, guint key, GdkModifierType mods, const gchar *action);
|
2006-10-29 01:28:58 +00:00
|
|
|
static void on_pref_toolbar_show_toggled(GtkToggleButton *togglebutton, gpointer user_data);
|
|
|
|
static void on_pref_show_notebook_tabs_toggled(GtkToggleButton *togglebutton, gpointer user_data);
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
void prefs_init_dialog(void)
|
|
|
|
{
|
|
|
|
GtkWidget *widget;
|
2005-12-11 02:16:02 +00:00
|
|
|
GdkColor *color;
|
2006-05-19 17:18:06 +00:00
|
|
|
GtkTreeIter iter;
|
|
|
|
guint i;
|
|
|
|
gchar *key_string;
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
// General settings
|
2005-12-12 02:23:51 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "spin_mru");
|
|
|
|
gtk_spin_button_set_value(GTK_SPIN_BUTTON(widget), app->mru_length);
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_load_session");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_main_load_session);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_save_win_pos");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_main_save_winpos);
|
|
|
|
|
2006-01-03 12:39:25 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_beep");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->beep_on_errors);
|
|
|
|
|
2005-11-24 22:28:45 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_switch_pages");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->switch_msgwin_pages);
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_ask_for_quit");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_main_confirm_exit);
|
|
|
|
|
2006-11-18 15:47:28 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_ask_suppress_search_dialogs");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_main_suppress_search_dialogs);
|
|
|
|
|
2006-10-29 01:28:58 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_show_notebook_tabs");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->show_notebook_tabs);
|
|
|
|
// disable following setting if notebook tabs are hidden
|
|
|
|
on_pref_show_notebook_tabs_toggled(GTK_TOGGLE_BUTTON(
|
|
|
|
lookup_widget(app->prefs_dialog, "check_show_notebook_tabs")), NULL);
|
|
|
|
|
2006-07-02 16:21:35 +00:00
|
|
|
if (app->tab_order_ltr)
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "radio_tab_right");
|
|
|
|
else
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "radio_tab_left");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), TRUE);
|
|
|
|
|
|
|
|
|
|
|
|
// Interface settings
|
2005-12-11 02:16:02 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_list_symbol");
|
2006-07-07 14:34:43 +00:00
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->sidebar_symbol_visible);
|
2005-12-11 02:16:02 +00:00
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_list_openfiles");
|
2006-07-07 14:34:43 +00:00
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->sidebar_openfiles_visible);
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "tagbar_font");
|
|
|
|
gtk_font_button_set_font_name(GTK_FONT_BUTTON(widget), app->tagbar_font);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "msgwin_font");
|
|
|
|
gtk_font_button_set_font_name(GTK_FONT_BUTTON(widget), app->msgwin_font);
|
|
|
|
|
2006-07-02 16:21:35 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "editor_font");
|
|
|
|
gtk_font_button_set_font_name(GTK_FONT_BUTTON(widget), app->editor_font);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "spin_long_line");
|
|
|
|
gtk_spin_button_set_value(GTK_SPIN_BUTTON(widget), app->long_line_column);
|
|
|
|
|
|
|
|
switch (app->long_line_type)
|
|
|
|
{
|
|
|
|
case 0: widget = lookup_widget(app->prefs_dialog, "radio_long_line_line"); break;
|
|
|
|
case 1: widget = lookup_widget(app->prefs_dialog, "radio_long_line_background"); break;
|
|
|
|
default: widget = lookup_widget(app->prefs_dialog, "radio_long_line_disabled"); break;
|
|
|
|
}
|
2006-04-27 18:01:44 +00:00
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), TRUE);
|
|
|
|
|
2006-07-02 16:21:35 +00:00
|
|
|
color = g_new0(GdkColor, 1);
|
|
|
|
gdk_color_parse(app->long_line_color, color);
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "long_line_color");
|
|
|
|
gtk_color_button_set_color(GTK_COLOR_BUTTON(widget), color);
|
|
|
|
g_free(color);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "combo_tab_editor");
|
|
|
|
gtk_combo_box_set_active(GTK_COMBO_BOX(widget), app->tab_pos_editor);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "combo_tab_msgwin");
|
|
|
|
gtk_combo_box_set_active(GTK_COMBO_BOX(widget), app->tab_pos_msgwin);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "combo_tab_sidebar");
|
|
|
|
gtk_combo_box_set_active(GTK_COMBO_BOX(widget), app->tab_pos_sidebar);
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-07-11 14:15:56 +00:00
|
|
|
// Toolbar settings
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_toolbar_show");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->toolbar_visible);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_toolbar_search");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_toolbar_show_search);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_toolbar_goto");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_toolbar_show_goto);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_toolbar_compile");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_toolbar_show_compile);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_toolbar_zoom");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_toolbar_show_zoom);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_toolbar_undo");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_toolbar_show_undo);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_toolbar_colour");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_toolbar_show_colour);
|
|
|
|
|
2006-07-15 18:15:30 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_toolbar_fileops");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_toolbar_show_fileops);
|
|
|
|
|
2006-10-29 01:28:58 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_toolbar_quit");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_toolbar_show_quit);
|
|
|
|
|
2006-07-11 14:15:56 +00:00
|
|
|
|
|
|
|
switch (app->toolbar_icon_style)
|
|
|
|
{
|
|
|
|
case 0: widget = lookup_widget(app->prefs_dialog, "radio_toolbar_image"); break;
|
|
|
|
case 1: widget = lookup_widget(app->prefs_dialog, "radio_toolbar_text"); break;
|
|
|
|
default: widget = lookup_widget(app->prefs_dialog, "radio_toolbar_imagetext"); break;
|
|
|
|
}
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), TRUE);
|
|
|
|
|
|
|
|
|
|
|
|
switch (app->toolbar_icon_size)
|
|
|
|
{
|
|
|
|
case GTK_ICON_SIZE_LARGE_TOOLBAR:
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "radio_toolbar_large"); break;
|
|
|
|
default: widget = lookup_widget(app->prefs_dialog, "radio_toolbar_small"); break;
|
|
|
|
}
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), TRUE);
|
|
|
|
// disable elements if toolbar is hidden
|
|
|
|
on_pref_toolbar_show_toggled(GTK_TOGGLE_BUTTON(
|
|
|
|
lookup_widget(app->prefs_dialog, "check_toolbar_show")), NULL);
|
|
|
|
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
// Editor settings
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "spin_tab_width");
|
|
|
|
gtk_spin_button_set_value(GTK_SPIN_BUTTON(widget), app->pref_editor_tab_width);
|
|
|
|
|
2006-06-21 18:54:07 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "combo_encoding");
|
|
|
|
// luckily the index of the combo box items match the index of the encodings array
|
|
|
|
gtk_combo_box_set_active(GTK_COMBO_BOX(widget), app->pref_editor_default_encoding);
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_trailing_spaces");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_editor_trail_space);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_new_line");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_editor_new_line);
|
|
|
|
|
2006-06-21 18:54:07 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_replace_tabs");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_editor_replace_tabs);
|
|
|
|
|
2006-02-14 22:07:55 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_indent");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_editor_show_indent_guide);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_white_space");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_editor_show_white_space);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_line_end");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_editor_show_line_endings);
|
|
|
|
|
2006-08-01 10:06:28 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_auto_indent");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_editor_use_auto_indention);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_line_wrapping");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_editor_line_breaking);
|
2006-02-14 22:07:55 +00:00
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_auto_complete");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_editor_auto_complete_constructs);
|
|
|
|
|
2006-08-01 10:06:28 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_xmltag");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_editor_auto_close_xml_tags);
|
|
|
|
|
2006-02-26 18:19:28 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_folding");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_editor_folding);
|
|
|
|
|
2006-06-13 19:37:21 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_indicators");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), app->pref_editor_use_indicators);
|
|
|
|
|
2006-08-13 15:04:30 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "spin_autocheight");
|
|
|
|
gtk_spin_button_set_value(GTK_SPIN_BUTTON(widget), app->autocompletion_max_height);
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
// Tools Settings
|
2006-07-26 17:02:16 +00:00
|
|
|
#ifdef G_OS_WIN32
|
2006-07-13 14:30:44 +00:00
|
|
|
// hide related Make path setting
|
2006-06-08 15:12:55 +00:00
|
|
|
gtk_widget_set_sensitive(lookup_widget(app->prefs_dialog, "label11"), FALSE);
|
|
|
|
gtk_widget_set_sensitive(lookup_widget(app->prefs_dialog, "entry_com_make"), FALSE);
|
|
|
|
gtk_widget_set_sensitive(lookup_widget(app->prefs_dialog, "button_make"), FALSE);
|
|
|
|
#else
|
2006-06-29 14:00:09 +00:00
|
|
|
if (app->tools_make_cmd)
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(lookup_widget(app->prefs_dialog, "entry_com_make")), app->tools_make_cmd);
|
2006-06-08 15:12:55 +00:00
|
|
|
#endif
|
2006-09-11 11:13:36 +00:00
|
|
|
if (app->tools_term_cmd)
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(lookup_widget(app->prefs_dialog, "entry_com_term")), app->tools_term_cmd);
|
|
|
|
|
2006-06-29 14:00:09 +00:00
|
|
|
if (app->tools_browser_cmd)
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(lookup_widget(app->prefs_dialog, "entry_browser")), app->tools_browser_cmd);
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-07-13 14:30:44 +00:00
|
|
|
if (app->tools_print_cmd)
|
2006-06-29 17:14:52 +00:00
|
|
|
gtk_entry_set_text(GTK_ENTRY(lookup_widget(app->prefs_dialog, "entry_print")), app->tools_print_cmd);
|
|
|
|
|
2006-07-13 14:30:44 +00:00
|
|
|
if (app->tools_grep_cmd)
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(lookup_widget(app->prefs_dialog, "entry_grep")), app->tools_grep_cmd);
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
// Template settings
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_template_developer");
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(widget), app->pref_template_developer);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_template_company");
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(widget), app->pref_template_company);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_template_mail");
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(widget), app->pref_template_mail);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_template_initial");
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(widget), app->pref_template_initial);
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_template_version");
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(widget), app->pref_template_version);
|
2005-12-11 02:16:02 +00:00
|
|
|
|
|
|
|
|
2006-05-19 17:18:06 +00:00
|
|
|
// Keybindings
|
|
|
|
if (store == NULL)
|
|
|
|
{
|
|
|
|
GtkCellRenderer *renderer;
|
|
|
|
GtkTreeViewColumn *column;
|
|
|
|
|
|
|
|
tree = GTK_TREE_VIEW(lookup_widget(app->prefs_dialog, "treeview7"));
|
|
|
|
//g_object_set(tree, "vertical-separator", 6, NULL);
|
|
|
|
|
|
|
|
store = gtk_list_store_new(2, G_TYPE_STRING, G_TYPE_STRING);
|
|
|
|
gtk_tree_view_set_model(GTK_TREE_VIEW(tree), GTK_TREE_MODEL(store));
|
|
|
|
|
|
|
|
renderer = gtk_cell_renderer_text_new();
|
|
|
|
column = gtk_tree_view_column_new_with_attributes(_("Action"), renderer, "text", 0, NULL);
|
|
|
|
gtk_tree_view_append_column(GTK_TREE_VIEW(tree), column);
|
|
|
|
|
|
|
|
renderer = gtk_cell_renderer_text_new();
|
|
|
|
g_object_set(renderer, "editable", TRUE, NULL);
|
|
|
|
column = gtk_tree_view_column_new_with_attributes(_("Shortcut"), renderer, "text", 1, NULL);
|
|
|
|
gtk_tree_view_append_column(GTK_TREE_VIEW(tree), column);
|
|
|
|
|
2006-05-30 19:19:05 +00:00
|
|
|
// set policy settings for the scollwedwindow around the treeview again, because glade
|
|
|
|
// doesn't keep the settings
|
|
|
|
gtk_scrolled_window_set_policy(
|
|
|
|
GTK_SCROLLED_WINDOW(lookup_widget(app->prefs_dialog, "scrolledwindow8")),
|
2006-06-08 15:12:55 +00:00
|
|
|
GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
|
2006-05-30 19:19:05 +00:00
|
|
|
|
2006-05-19 17:18:06 +00:00
|
|
|
g_signal_connect(G_OBJECT(renderer), "edited", G_CALLBACK(on_cell_edited), NULL);
|
|
|
|
g_signal_connect(G_OBJECT(tree), "button-press-event",
|
|
|
|
G_CALLBACK(on_prefs_tree_view_button_press_event), NULL);
|
|
|
|
g_signal_connect(G_OBJECT(lookup_widget(app->prefs_dialog, "button2")), "button-press-event",
|
|
|
|
G_CALLBACK(on_prefs_tree_view_button_press_event), NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < GEANY_MAX_KEYS; i++)
|
|
|
|
{
|
|
|
|
key_string = gtk_accelerator_name(keys[i]->key, keys[i]->mods);
|
|
|
|
gtk_list_store_append(store, &iter);
|
2006-06-08 15:12:55 +00:00
|
|
|
gtk_list_store_set(store, &iter, 0, keys[i]->label, 1, key_string, -1);
|
2006-05-19 17:18:06 +00:00
|
|
|
g_free(key_string);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-12-11 02:16:02 +00:00
|
|
|
#ifdef HAVE_VTE
|
2006-05-22 00:25:19 +00:00
|
|
|
// make VTE switch visible only when VTE is compiled in, it is hidden by default
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_vte");
|
|
|
|
gtk_widget_show(widget);
|
2006-08-19 15:07:11 +00:00
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), vte_info.load_vte);
|
2006-05-22 00:25:19 +00:00
|
|
|
|
2005-12-11 02:16:02 +00:00
|
|
|
// VTE settings
|
2006-08-19 15:07:11 +00:00
|
|
|
if (vte_info.have_vte)
|
2005-12-16 22:34:41 +00:00
|
|
|
{
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "font_term");
|
|
|
|
gtk_font_button_set_font_name(GTK_FONT_BUTTON(widget), vc->font);
|
2005-12-11 02:16:02 +00:00
|
|
|
|
2005-12-16 22:34:41 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "color_fore");
|
2006-08-22 19:03:38 +00:00
|
|
|
gtk_color_button_set_color(GTK_COLOR_BUTTON(widget), vc->colour_fore);
|
2005-12-11 02:16:02 +00:00
|
|
|
|
2005-12-16 22:34:41 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "color_back");
|
2006-08-22 19:03:38 +00:00
|
|
|
gtk_color_button_set_color(GTK_COLOR_BUTTON(widget), vc->colour_back);
|
2005-12-11 02:16:02 +00:00
|
|
|
|
2005-12-16 22:34:41 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "spin_scrollback");
|
|
|
|
gtk_spin_button_set_value(GTK_SPIN_BUTTON(widget), vc->scrollback_lines);
|
2005-12-11 02:16:02 +00:00
|
|
|
|
2005-12-16 22:34:41 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_emulation");
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(widget), vc->emulation);
|
2005-12-11 02:16:02 +00:00
|
|
|
|
2006-08-23 16:37:05 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_shell");
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(widget), vc->shell);
|
|
|
|
|
2005-12-16 22:34:41 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_scroll_key");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), vc->scroll_on_key);
|
2005-12-11 02:16:02 +00:00
|
|
|
|
2005-12-16 22:34:41 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_scroll_out");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), vc->scroll_on_out);
|
2006-07-02 18:34:03 +00:00
|
|
|
|
2006-08-23 16:37:05 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_ignore_menu_key");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), vc->ignore_menu_bar_accel);
|
|
|
|
|
2006-07-02 18:34:03 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_follow_path");
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widget), vc->follow_path);
|
2005-12-16 22:34:41 +00:00
|
|
|
}
|
2005-12-11 02:16:02 +00:00
|
|
|
#endif
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* callbacks
|
|
|
|
*/
|
|
|
|
void on_prefs_button_clicked(GtkDialog *dialog, gint response, gpointer user_data)
|
|
|
|
{
|
2006-10-29 01:28:58 +00:00
|
|
|
if (response == GTK_RESPONSE_OK || response == GTK_RESPONSE_APPLY)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
|
|
|
GtkWidget *widget;
|
2006-10-09 16:08:53 +00:00
|
|
|
guint i;
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
// General settings
|
2005-12-12 02:23:51 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "spin_mru");
|
|
|
|
app->mru_length = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(widget));
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_load_session");
|
|
|
|
app->pref_main_load_session = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_save_win_pos");
|
|
|
|
app->pref_main_save_winpos = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2006-01-03 12:39:25 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_beep");
|
|
|
|
app->beep_on_errors = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_ask_for_quit");
|
|
|
|
app->pref_main_confirm_exit = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2006-11-18 15:47:28 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_ask_suppress_search_dialogs");
|
|
|
|
app->pref_main_suppress_search_dialogs = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2005-11-24 22:28:45 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_switch_pages");
|
|
|
|
app->switch_msgwin_pages = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2006-07-02 16:21:35 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "radio_tab_right");
|
|
|
|
app->tab_order_ltr = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2006-10-29 01:28:58 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_show_notebook_tabs");
|
|
|
|
app->show_notebook_tabs = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2006-07-02 16:21:35 +00:00
|
|
|
|
|
|
|
// Interface settings
|
2005-12-11 02:16:02 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_list_symbol");
|
2006-07-07 14:34:43 +00:00
|
|
|
app->sidebar_symbol_visible = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
2005-12-11 02:16:02 +00:00
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_list_openfiles");
|
2006-07-07 14:34:43 +00:00
|
|
|
app->sidebar_openfiles_visible = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-07-02 16:21:35 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "radio_long_line_line");
|
|
|
|
if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget))) app->long_line_type = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "radio_long_line_background");
|
|
|
|
if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget))) app->long_line_type = 1;
|
|
|
|
else
|
|
|
|
{ // now only the disabled radio remains, so disable it
|
|
|
|
app->long_line_type = 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (app->long_line_column == 0) app->long_line_type = 2;
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "combo_tab_editor");
|
|
|
|
app->tab_pos_editor = gtk_combo_box_get_active(GTK_COMBO_BOX(widget));
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "combo_tab_msgwin");
|
|
|
|
app->tab_pos_msgwin = gtk_combo_box_get_active(GTK_COMBO_BOX(widget));
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "combo_tab_sidebar");
|
|
|
|
app->tab_pos_sidebar = gtk_combo_box_get_active(GTK_COMBO_BOX(widget));
|
2006-05-19 17:18:06 +00:00
|
|
|
|
2005-11-24 22:28:45 +00:00
|
|
|
|
2006-07-11 14:15:56 +00:00
|
|
|
// Toolbar settings
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_toolbar_show");
|
|
|
|
app->toolbar_visible = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_toolbar_search");
|
|
|
|
app->pref_toolbar_show_search = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_toolbar_goto");
|
|
|
|
app->pref_toolbar_show_goto = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_toolbar_zoom");
|
|
|
|
app->pref_toolbar_show_zoom = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_toolbar_undo");
|
|
|
|
app->pref_toolbar_show_undo = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_toolbar_compile");
|
|
|
|
app->pref_toolbar_show_compile = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_toolbar_colour");
|
|
|
|
app->pref_toolbar_show_colour = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2006-07-15 18:15:30 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_toolbar_fileops");
|
|
|
|
app->pref_toolbar_show_fileops = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2006-10-29 01:28:58 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_toolbar_quit");
|
|
|
|
app->pref_toolbar_show_quit = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2006-07-11 14:15:56 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "radio_toolbar_imagetext");
|
|
|
|
if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget))) app->toolbar_icon_style = 2;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "radio_toolbar_image");
|
|
|
|
if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)))
|
|
|
|
app->toolbar_icon_style = 0;
|
|
|
|
else
|
|
|
|
// now only the text only radio remains, so set text only
|
|
|
|
app->toolbar_icon_style = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "radio_toolbar_large");
|
|
|
|
if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)))
|
|
|
|
app->toolbar_icon_size = GTK_ICON_SIZE_LARGE_TOOLBAR;
|
|
|
|
else
|
|
|
|
app->toolbar_icon_size = GTK_ICON_SIZE_SMALL_TOOLBAR;
|
|
|
|
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
// Editor settings
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "spin_tab_width");
|
|
|
|
app->pref_editor_tab_width = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(widget));
|
|
|
|
|
2006-06-21 18:54:07 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "combo_encoding");
|
|
|
|
app->pref_editor_default_encoding = gtk_combo_box_get_active(GTK_COMBO_BOX(widget));
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_trailing_spaces");
|
|
|
|
app->pref_editor_trail_space = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_new_line");
|
|
|
|
app->pref_editor_new_line = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2006-06-21 18:54:07 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_replace_tabs");
|
|
|
|
app->pref_editor_replace_tabs = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "spin_long_line");
|
|
|
|
app->long_line_column = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(widget));
|
|
|
|
|
2006-02-26 18:19:28 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_folding");
|
|
|
|
app->pref_editor_folding = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
2006-09-05 14:24:47 +00:00
|
|
|
ui_update_fold_items();
|
2006-02-26 18:19:28 +00:00
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_indent");
|
|
|
|
app->pref_editor_show_indent_guide = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_white_space");
|
|
|
|
app->pref_editor_show_white_space = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_line_end");
|
|
|
|
app->pref_editor_show_line_endings = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2006-08-01 10:06:28 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_auto_indent");
|
|
|
|
app->pref_editor_use_auto_indention = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_line_wrapping");
|
|
|
|
app->pref_editor_line_breaking = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
2006-02-26 18:19:28 +00:00
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_auto_complete");
|
|
|
|
app->pref_editor_auto_complete_constructs = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2006-08-01 10:06:28 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_xmltag");
|
|
|
|
app->pref_editor_auto_close_xml_tags = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2006-06-13 19:37:21 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_indicators");
|
|
|
|
app->pref_editor_use_indicators = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2006-08-13 15:04:30 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "spin_autocheight");
|
|
|
|
app->autocompletion_max_height = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(widget));
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
// Tools Settings
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_com_make");
|
2006-06-29 14:00:09 +00:00
|
|
|
g_free(app->tools_make_cmd);
|
|
|
|
app->tools_make_cmd = g_strdup(gtk_entry_get_text(GTK_ENTRY(widget)));
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_com_term");
|
2006-06-29 14:00:09 +00:00
|
|
|
g_free(app->tools_term_cmd);
|
|
|
|
app->tools_term_cmd = g_strdup(gtk_entry_get_text(GTK_ENTRY(widget)));
|
2005-11-22 12:26:26 +00:00
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_browser");
|
2006-06-29 14:00:09 +00:00
|
|
|
g_free(app->tools_browser_cmd);
|
|
|
|
app->tools_browser_cmd = g_strdup(gtk_entry_get_text(GTK_ENTRY(widget)));
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-06-29 17:14:52 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_print");
|
|
|
|
g_free(app->tools_print_cmd);
|
|
|
|
app->tools_print_cmd = g_strdup(gtk_entry_get_text(GTK_ENTRY(widget)));
|
|
|
|
|
2006-07-13 14:30:44 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_grep");
|
|
|
|
g_free(app->tools_grep_cmd);
|
|
|
|
app->tools_grep_cmd = g_strdup(gtk_entry_get_text(GTK_ENTRY(widget)));
|
|
|
|
|
2006-07-02 16:21:35 +00:00
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
// Template settings
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_template_developer");
|
|
|
|
g_free(app->pref_template_developer);
|
|
|
|
app->pref_template_developer = g_strdup(gtk_entry_get_text(GTK_ENTRY(widget)));
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_template_company");
|
|
|
|
g_free(app->pref_template_company);
|
|
|
|
app->pref_template_company = g_strdup(gtk_entry_get_text(GTK_ENTRY(widget)));
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_template_mail");
|
|
|
|
g_free(app->pref_template_mail);
|
|
|
|
app->pref_template_mail = g_strdup(gtk_entry_get_text(GTK_ENTRY(widget)));
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_template_initial");
|
|
|
|
g_free(app->pref_template_initial);
|
|
|
|
app->pref_template_initial = g_strdup(gtk_entry_get_text(GTK_ENTRY(widget)));
|
|
|
|
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_template_version");
|
|
|
|
g_free(app->pref_template_version);
|
|
|
|
app->pref_template_version = g_strdup(gtk_entry_get_text(GTK_ENTRY(widget)));
|
|
|
|
|
|
|
|
|
2006-05-19 17:18:06 +00:00
|
|
|
// Keybindings
|
|
|
|
if (edited) keybindings_write_to_file();
|
|
|
|
|
2005-12-11 02:16:02 +00:00
|
|
|
#ifdef HAVE_VTE
|
2006-05-22 00:25:19 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_vte");
|
2006-08-19 15:07:11 +00:00
|
|
|
vte_info.load_vte = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
2006-05-22 00:25:19 +00:00
|
|
|
|
2005-12-11 02:16:02 +00:00
|
|
|
// VTE settings
|
2006-08-19 15:07:11 +00:00
|
|
|
if (vte_info.have_vte)
|
2005-12-16 23:23:18 +00:00
|
|
|
{
|
|
|
|
widget = lookup_widget(app->prefs_dialog, "spin_scrollback");
|
|
|
|
vc->scrollback_lines = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(widget));
|
2005-12-11 02:16:02 +00:00
|
|
|
|
2005-12-16 23:23:18 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_emulation");
|
|
|
|
g_free(vc->emulation);
|
|
|
|
vc->emulation = g_strdup(gtk_entry_get_text(GTK_ENTRY(widget)));
|
2005-12-11 02:16:02 +00:00
|
|
|
|
2006-08-23 16:37:05 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "entry_shell");
|
|
|
|
g_free(vc->shell);
|
|
|
|
vc->shell = g_strdup(gtk_entry_get_text(GTK_ENTRY(widget)));
|
|
|
|
|
2005-12-16 23:23:18 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_scroll_key");
|
|
|
|
vc->scroll_on_key = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
2005-12-11 02:16:02 +00:00
|
|
|
|
2005-12-16 23:23:18 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_scroll_out");
|
|
|
|
vc->scroll_on_out = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2006-08-23 16:37:05 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_ignore_menu_key");
|
|
|
|
vc->ignore_menu_bar_accel = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2006-07-02 18:34:03 +00:00
|
|
|
widget = lookup_widget(app->prefs_dialog, "check_follow_path");
|
|
|
|
vc->follow_path = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
|
|
|
|
|
2005-12-16 23:23:18 +00:00
|
|
|
vte_apply_user_settings();
|
|
|
|
}
|
2005-12-11 02:16:02 +00:00
|
|
|
#endif
|
|
|
|
|
2005-11-22 12:26:26 +00:00
|
|
|
// apply the changes made
|
2006-09-05 14:24:47 +00:00
|
|
|
ui_update_toolbar_items();
|
|
|
|
ui_update_toolbar_icons(app->toolbar_icon_size);
|
2006-07-11 14:15:56 +00:00
|
|
|
gtk_toolbar_set_style(GTK_TOOLBAR(app->toolbar), app->toolbar_icon_style);
|
2006-09-05 14:24:47 +00:00
|
|
|
ui_treeviews_show_hide(FALSE);
|
2006-10-29 01:28:58 +00:00
|
|
|
gtk_notebook_set_show_tabs(GTK_NOTEBOOK(app->notebook), app->show_notebook_tabs);
|
2005-11-22 12:26:26 +00:00
|
|
|
|
2006-07-02 16:21:35 +00:00
|
|
|
gtk_notebook_set_tab_pos(GTK_NOTEBOOK(app->notebook), app->tab_pos_editor);
|
|
|
|
gtk_notebook_set_tab_pos(GTK_NOTEBOOK(msgwindow.notebook), app->tab_pos_msgwin);
|
|
|
|
gtk_notebook_set_tab_pos(GTK_NOTEBOOK(app->treeview_notebook), app->tab_pos_sidebar);
|
|
|
|
|
2006-06-30 14:28:32 +00:00
|
|
|
// re-colourise all open documents, if tab width or long line settings have changed
|
2006-10-09 16:08:53 +00:00
|
|
|
for (i = 0; i < doc_array->len; i++)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-06-30 14:28:32 +00:00
|
|
|
if (doc_list[i].is_valid)
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2006-08-01 13:24:58 +00:00
|
|
|
document_apply_update_prefs(doc_list[i].sci);
|
2006-06-30 14:28:32 +00:00
|
|
|
if (! app->pref_editor_folding) document_unfold_all(i);
|
|
|
|
}
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
2006-02-20 15:11:38 +00:00
|
|
|
// store all settings
|
|
|
|
configuration_save();
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
2006-10-29 01:28:58 +00:00
|
|
|
|
|
|
|
if (response != GTK_RESPONSE_APPLY)
|
|
|
|
{
|
|
|
|
gtk_list_store_clear(store);
|
|
|
|
gtk_widget_hide(GTK_WIDGET(dialog));
|
|
|
|
}
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
gboolean on_prefs_delete_event(GtkWidget *widget, GdkEvent *event, gpointer user_data)
|
|
|
|
{
|
|
|
|
gtk_widget_hide(widget);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void on_prefs_color_choosed(GtkColorButton *widget, gpointer user_data)
|
|
|
|
{
|
|
|
|
GdkColor color;
|
|
|
|
|
2005-12-11 02:16:02 +00:00
|
|
|
switch (GPOINTER_TO_INT(user_data))
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
gtk_color_button_get_color(widget, &color);
|
|
|
|
app->long_line_color = utils_get_hex_from_color(&color);
|
|
|
|
break;
|
|
|
|
}
|
2005-12-16 22:34:41 +00:00
|
|
|
#ifdef HAVE_VTE
|
2005-12-11 02:16:02 +00:00
|
|
|
case 2:
|
|
|
|
{
|
2006-08-22 19:03:38 +00:00
|
|
|
g_free(vc->colour_fore);
|
|
|
|
vc->colour_fore = g_new0(GdkColor, 1);
|
|
|
|
gtk_color_button_get_color(widget, vc->colour_fore);
|
2005-12-11 02:16:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 3:
|
|
|
|
{
|
2006-08-22 19:03:38 +00:00
|
|
|
g_free(vc->colour_back);
|
|
|
|
vc->colour_back = g_new0(GdkColor, 1);
|
|
|
|
gtk_color_button_get_color(widget, vc->colour_back);
|
2005-12-11 02:16:02 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-12-16 22:34:41 +00:00
|
|
|
#endif
|
2005-12-19 19:20:16 +00:00
|
|
|
}
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void on_prefs_font_choosed(GtkFontButton *widget, gpointer user_data)
|
|
|
|
{
|
2006-06-29 16:55:29 +00:00
|
|
|
const gchar *fontbtn = gtk_font_button_get_font_name(widget);
|
2006-10-09 16:08:53 +00:00
|
|
|
guint i;
|
2006-06-29 16:55:29 +00:00
|
|
|
|
2005-12-11 02:16:02 +00:00
|
|
|
switch (GPOINTER_TO_INT(user_data))
|
2005-11-22 12:26:26 +00:00
|
|
|
{
|
2005-12-11 02:16:02 +00:00
|
|
|
case 1:
|
|
|
|
{
|
2006-06-29 16:55:29 +00:00
|
|
|
if (strcmp(fontbtn, app->tagbar_font) == 0) break;
|
2005-12-11 02:16:02 +00:00
|
|
|
g_free(app->tagbar_font);
|
2006-06-29 16:55:29 +00:00
|
|
|
app->tagbar_font = g_strdup(fontbtn);
|
2006-10-09 16:08:53 +00:00
|
|
|
for (i = 0; i < doc_array->len; i++)
|
2006-06-29 16:55:29 +00:00
|
|
|
{
|
|
|
|
if (doc_list[i].is_valid && GTK_IS_WIDGET(doc_list[i].tag_tree))
|
|
|
|
gtk_widget_modify_font(doc_list[i].tag_tree,
|
|
|
|
pango_font_description_from_string(app->tagbar_font));
|
|
|
|
}
|
|
|
|
if (GTK_IS_WIDGET(app->default_tag_tree))
|
|
|
|
gtk_widget_modify_font(app->default_tag_tree,
|
|
|
|
pango_font_description_from_string(app->tagbar_font));
|
|
|
|
gtk_widget_modify_font(lookup_widget(app->window, "entry1"),
|
|
|
|
pango_font_description_from_string(app->tagbar_font));
|
2005-12-11 02:16:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 2:
|
|
|
|
{
|
2006-06-29 16:55:29 +00:00
|
|
|
if (strcmp(fontbtn, app->msgwin_font) == 0) break;
|
2005-12-11 02:16:02 +00:00
|
|
|
g_free(app->msgwin_font);
|
2006-06-29 16:55:29 +00:00
|
|
|
app->msgwin_font = g_strdup(fontbtn);
|
|
|
|
gtk_widget_modify_font(msgwindow.tree_compiler,
|
|
|
|
pango_font_description_from_string(app->msgwin_font));
|
|
|
|
gtk_widget_modify_font(msgwindow.tree_msg,
|
|
|
|
pango_font_description_from_string(app->msgwin_font));
|
|
|
|
gtk_widget_modify_font(msgwindow.tree_status,
|
|
|
|
pango_font_description_from_string(app->msgwin_font));
|
2005-12-11 02:16:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 3:
|
|
|
|
{
|
2006-09-05 14:24:47 +00:00
|
|
|
ui_set_editor_font(fontbtn);
|
2005-12-11 02:16:02 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-12-19 19:20:16 +00:00
|
|
|
#ifdef HAVE_VTE
|
2005-12-11 02:16:02 +00:00
|
|
|
case 4:
|
|
|
|
{
|
|
|
|
// VTE settings
|
2006-06-29 16:55:29 +00:00
|
|
|
if (strcmp(fontbtn, vc->font) == 0) break;
|
2005-12-11 02:16:02 +00:00
|
|
|
g_free(vc->font);
|
|
|
|
vc->font = g_strdup(gtk_font_button_get_font_name(widget));
|
2006-06-29 16:55:29 +00:00
|
|
|
vte_apply_user_settings();
|
2005-12-11 02:16:02 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-12-19 19:20:16 +00:00
|
|
|
#endif
|
2005-11-22 12:26:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-19 17:18:06 +00:00
|
|
|
|
|
|
|
static gboolean on_prefs_tree_view_button_press_event(
|
|
|
|
GtkWidget *widget, GdkEventButton *event, gpointer user_data)
|
|
|
|
{
|
|
|
|
GtkTreeIter iter;
|
|
|
|
GtkTreeModel *model;
|
|
|
|
GtkTreeSelection *selection;
|
|
|
|
gchar *name;
|
|
|
|
|
|
|
|
// discard click events in the tree unless it is a double click
|
|
|
|
if (widget == (GtkWidget*)tree && event->type != GDK_2BUTTON_PRESS) return FALSE;
|
|
|
|
|
|
|
|
selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree));
|
|
|
|
if (gtk_tree_selection_get_selected(selection, &model, &iter))
|
|
|
|
{
|
|
|
|
gtk_tree_model_get(model, &iter, 0, &name, -1);
|
|
|
|
if (name != NULL)
|
|
|
|
{
|
|
|
|
GtkWidget *dialog;
|
|
|
|
GtkWidget *label;
|
|
|
|
gchar *str;
|
|
|
|
|
|
|
|
dialog = gtk_dialog_new_with_buttons(_("Grab key"), GTK_WINDOW(app->prefs_dialog),
|
|
|
|
GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT | GTK_DIALOG_NO_SEPARATOR,
|
|
|
|
GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT, GTK_STOCK_OK, GTK_RESPONSE_ACCEPT, NULL);
|
|
|
|
|
|
|
|
str = g_strdup_printf(_("Type the combination of the keys you want to use for \"%s\""), name);
|
|
|
|
label = gtk_label_new(str);
|
|
|
|
gtk_misc_set_padding(GTK_MISC(label), 5, 10);
|
|
|
|
gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), label);
|
|
|
|
|
|
|
|
dialog_label = gtk_label_new("");
|
|
|
|
gtk_misc_set_padding(GTK_MISC(dialog_label), 5, 10);
|
|
|
|
gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), dialog_label);
|
|
|
|
|
|
|
|
g_signal_connect(G_OBJECT(dialog), "key-press-event", G_CALLBACK(on_keytype_dialog_response), NULL);
|
|
|
|
g_signal_connect(G_OBJECT(dialog), "response", G_CALLBACK(on_dialog_response), NULL);
|
|
|
|
g_signal_connect(G_OBJECT(dialog), "close", G_CALLBACK(gtk_widget_destroy), NULL);
|
|
|
|
|
|
|
|
// copy name to global variable to hold it, will be freed in on_dialog_response()
|
|
|
|
dialog_key_name = g_strdup(name);
|
|
|
|
|
|
|
|
gtk_widget_show_all(dialog);
|
|
|
|
g_free(str);
|
|
|
|
g_free(name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void on_cell_edited(GtkCellRendererText *cellrenderertext, gchar *path, gchar *new_text, gpointer user_data)
|
|
|
|
{
|
|
|
|
if (path != NULL && new_text != NULL)
|
|
|
|
{
|
|
|
|
guint idx;
|
2006-05-30 19:19:05 +00:00
|
|
|
guint lkey;
|
|
|
|
GdkModifierType lmods;
|
2006-05-19 17:18:06 +00:00
|
|
|
gchar *test;
|
|
|
|
GtkTreeIter iter;
|
|
|
|
|
|
|
|
// get the index of the shortcut
|
|
|
|
idx = strtol(path, &test, 10);
|
|
|
|
if (test == path) return;
|
|
|
|
|
2006-05-30 19:19:05 +00:00
|
|
|
gtk_accelerator_parse(new_text, &lkey, &lmods);
|
|
|
|
|
|
|
|
if (find_duplicate(idx, lkey, lmods, new_text)) return;
|
|
|
|
|
|
|
|
// set the values here, because of the above check, setting it in gtk_accelerator_parse would
|
|
|
|
// return a wrong key combination if it is duplicate
|
|
|
|
keys[idx]->key = lkey;
|
|
|
|
keys[idx]->mods = lmods;
|
2006-05-19 17:18:06 +00:00
|
|
|
|
|
|
|
gtk_tree_model_get_iter_from_string(GTK_TREE_MODEL(store), &iter, path);
|
|
|
|
gtk_list_store_set(store, &iter, 1, new_text, -1);
|
|
|
|
|
|
|
|
edited = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean on_keytype_dialog_response(GtkWidget *dialog, GdkEventKey *event, gpointer user_data)
|
|
|
|
{
|
|
|
|
gchar *str;
|
|
|
|
|
|
|
|
// ignore numlock key, not necessary but nice
|
|
|
|
if (event->state & GDK_MOD2_MASK) event->state -= GDK_MOD2_MASK;
|
|
|
|
|
|
|
|
str = gtk_accelerator_name(event->keyval, event->state);
|
|
|
|
|
|
|
|
gtk_label_set_text(GTK_LABEL(dialog_label), str);
|
|
|
|
g_free(str);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void on_dialog_response(GtkWidget *dialog, gint response, gpointer user_data)
|
|
|
|
{
|
|
|
|
if (response == GTK_RESPONSE_ACCEPT)
|
|
|
|
{
|
|
|
|
GtkTreeIter iter;
|
|
|
|
guint idx;
|
2006-05-30 19:19:05 +00:00
|
|
|
guint lkey;
|
|
|
|
GdkModifierType lmods;
|
2006-05-19 17:18:06 +00:00
|
|
|
gchar path[3];
|
|
|
|
|
|
|
|
for (idx = 0; idx < GEANY_MAX_KEYS; idx++)
|
|
|
|
{
|
2006-11-08 16:21:46 +00:00
|
|
|
if (utils_str_equal(dialog_key_name, keys[idx]->label)) break;
|
2006-05-19 17:18:06 +00:00
|
|
|
}
|
|
|
|
|
2006-05-30 19:19:05 +00:00
|
|
|
gtk_accelerator_parse(gtk_label_get_text(GTK_LABEL(dialog_label)), &lkey, &lmods);
|
|
|
|
|
|
|
|
if (find_duplicate(idx, lkey, lmods, gtk_label_get_text(GTK_LABEL(dialog_label)))) return;
|
|
|
|
|
|
|
|
// set the values here, because of the above check, setting it in gtk_accelerator_parse would
|
|
|
|
// return a wrong key combination if it is duplicate
|
|
|
|
keys[idx]->key = lkey;
|
|
|
|
keys[idx]->mods = lmods;
|
2006-05-19 17:18:06 +00:00
|
|
|
|
|
|
|
// generate the path, it is exactly the index
|
|
|
|
g_snprintf(path, 3, "%d", idx);
|
|
|
|
gtk_tree_model_get_iter_from_string(GTK_TREE_MODEL(store), &iter, path);
|
|
|
|
gtk_list_store_set(store, &iter, 1, gtk_label_get_text(GTK_LABEL(dialog_label)), -1);
|
|
|
|
g_free(dialog_key_name);
|
2006-05-30 19:19:05 +00:00
|
|
|
dialog_key_name = NULL;
|
2006-05-19 17:18:06 +00:00
|
|
|
|
|
|
|
edited = TRUE;
|
|
|
|
}
|
|
|
|
gtk_widget_destroy(dialog);
|
|
|
|
}
|
2006-05-30 19:19:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
// test if the entered key combination is already used
|
|
|
|
static gboolean find_duplicate(guint idx, guint key, GdkModifierType mods, const gchar *action)
|
|
|
|
{
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
// allow duplicate if there is no key combination
|
|
|
|
if (key == 0 && mods == 0) return FALSE;
|
|
|
|
|
|
|
|
for (i = 0; i < GEANY_MAX_KEYS; i++)
|
|
|
|
{
|
|
|
|
// search another item with the same key, but take not the key we are searching for(-> idx)
|
|
|
|
if (keys[i]->key == key && keys[i]->mods == mods
|
|
|
|
&& ! (keys[i]->key == keys[idx]->key && keys[i]->mods == keys[idx]->mods))
|
|
|
|
{
|
2006-10-25 14:38:48 +00:00
|
|
|
dialogs_show_msgbox(GTK_MESSAGE_ERROR,
|
2006-05-30 19:19:05 +00:00
|
|
|
_("The combination '%s' is already used for \"%s\". Please choose another one."),
|
2006-06-08 15:12:55 +00:00
|
|
|
action, keys[i]->label);
|
2006-05-30 19:19:05 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-29 01:28:58 +00:00
|
|
|
static void on_pref_toolbar_show_toggled(GtkToggleButton *togglebutton, gpointer user_data)
|
2006-07-11 14:15:56 +00:00
|
|
|
{
|
|
|
|
gboolean sens = gtk_toggle_button_get_active(togglebutton);
|
|
|
|
|
|
|
|
gtk_widget_set_sensitive(lookup_widget(app->prefs_dialog, "frame11"), sens);
|
|
|
|
gtk_widget_set_sensitive(lookup_widget(app->prefs_dialog, "frame13"), sens);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-29 01:28:58 +00:00
|
|
|
static void on_pref_show_notebook_tabs_toggled(GtkToggleButton *togglebutton, gpointer user_data)
|
|
|
|
{
|
|
|
|
gboolean sens = gtk_toggle_button_get_active(togglebutton);
|
|
|
|
|
2006-11-18 15:47:28 +00:00
|
|
|
// tab placement only enabled when tabs are visible
|
|
|
|
gtk_widget_set_sensitive(lookup_widget(app->prefs_dialog, "combo_tab_editor"), sens);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-11 14:15:56 +00:00
|
|
|
void dialogs_show_prefs_dialog(void)
|
|
|
|
{
|
|
|
|
if (app->prefs_dialog == NULL)
|
|
|
|
{
|
|
|
|
GtkWidget *combo;
|
|
|
|
guint i;
|
|
|
|
gchar *encoding_string;
|
|
|
|
|
|
|
|
app->prefs_dialog = create_prefs_dialog();
|
|
|
|
gtk_window_set_transient_for(GTK_WINDOW(app->prefs_dialog), GTK_WINDOW(app->window));
|
|
|
|
|
|
|
|
// init the default file encoding combo box
|
|
|
|
combo = lookup_widget(app->prefs_dialog, "combo_encoding");
|
|
|
|
gtk_combo_box_set_wrap_width(GTK_COMBO_BOX(combo), 3);
|
|
|
|
for (i = 0; i < GEANY_ENCODINGS_MAX; i++)
|
|
|
|
{
|
|
|
|
encoding_string = encodings_to_string(&encodings[i]);
|
|
|
|
gtk_combo_box_append_text(GTK_COMBO_BOX(combo), encoding_string);
|
|
|
|
g_free(encoding_string);
|
|
|
|
}
|
|
|
|
|
2006-11-24 11:11:06 +00:00
|
|
|
#ifdef HAVE_VTE
|
2006-11-24 11:47:29 +00:00
|
|
|
vte_append_preferences_tab();
|
2006-11-24 11:11:06 +00:00
|
|
|
#endif
|
2006-11-18 15:47:28 +00:00
|
|
|
|
2006-07-11 14:15:56 +00:00
|
|
|
g_signal_connect((gpointer) app->prefs_dialog, "response", G_CALLBACK(on_prefs_button_clicked), NULL);
|
|
|
|
g_signal_connect((gpointer) app->prefs_dialog, "delete_event", G_CALLBACK(on_prefs_delete_event), NULL);
|
|
|
|
g_signal_connect((gpointer) lookup_widget(app->prefs_dialog, "tagbar_font"),
|
|
|
|
"font-set", G_CALLBACK(on_prefs_font_choosed), GINT_TO_POINTER(1));
|
|
|
|
g_signal_connect((gpointer) lookup_widget(app->prefs_dialog, "msgwin_font"),
|
|
|
|
"font-set", G_CALLBACK(on_prefs_font_choosed), GINT_TO_POINTER(2));
|
|
|
|
g_signal_connect((gpointer) lookup_widget(app->prefs_dialog, "editor_font"),
|
|
|
|
"font-set", G_CALLBACK(on_prefs_font_choosed), GINT_TO_POINTER(3));
|
|
|
|
g_signal_connect((gpointer) lookup_widget(app->prefs_dialog, "long_line_color"),
|
|
|
|
"color-set", G_CALLBACK(on_prefs_color_choosed), GINT_TO_POINTER(1));
|
|
|
|
// file chooser buttons in the tools tab
|
|
|
|
g_signal_connect((gpointer) lookup_widget(app->prefs_dialog, "button_make"),
|
2006-11-24 11:47:29 +00:00
|
|
|
"clicked", G_CALLBACK(on_prefs_tools_button_clicked), lookup_widget(app->prefs_dialog, "entry_com_make"));
|
2006-07-11 14:15:56 +00:00
|
|
|
g_signal_connect((gpointer) lookup_widget(app->prefs_dialog, "button_term"),
|
2006-11-24 11:47:29 +00:00
|
|
|
"clicked", G_CALLBACK(on_prefs_tools_button_clicked), lookup_widget(app->prefs_dialog, "entry_com_term"));
|
2006-07-11 14:15:56 +00:00
|
|
|
g_signal_connect((gpointer) lookup_widget(app->prefs_dialog, "button_browser"),
|
2006-11-24 11:47:29 +00:00
|
|
|
"clicked", G_CALLBACK(on_prefs_tools_button_clicked), lookup_widget(app->prefs_dialog, "entry_browser"));
|
2006-07-11 14:15:56 +00:00
|
|
|
g_signal_connect((gpointer) lookup_widget(app->prefs_dialog, "button_print"),
|
2006-11-24 11:47:29 +00:00
|
|
|
"clicked", G_CALLBACK(on_prefs_tools_button_clicked), lookup_widget(app->prefs_dialog, "entry_print"));
|
2006-07-13 14:30:44 +00:00
|
|
|
g_signal_connect((gpointer) lookup_widget(app->prefs_dialog, "button_grep"),
|
2006-11-24 11:47:29 +00:00
|
|
|
"clicked", G_CALLBACK(on_prefs_tools_button_clicked), lookup_widget(app->prefs_dialog, "entry_grep"));
|
2006-07-11 14:15:56 +00:00
|
|
|
|
|
|
|
g_signal_connect((gpointer) lookup_widget(app->prefs_dialog, "check_toolbar_show"),
|
|
|
|
"toggled", G_CALLBACK(on_pref_toolbar_show_toggled), NULL);
|
2006-10-29 01:28:58 +00:00
|
|
|
g_signal_connect((gpointer) lookup_widget(app->prefs_dialog, "check_show_notebook_tabs"),
|
|
|
|
"toggled", G_CALLBACK(on_pref_show_notebook_tabs_toggled), NULL);
|
2006-07-11 14:15:56 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
prefs_init_dialog();
|
|
|
|
gtk_widget_show(app->prefs_dialog);
|
|
|
|
}
|
2006-11-24 11:47:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
on_prefs_tools_button_clicked (GtkButton *button,
|
|
|
|
gpointer item)
|
|
|
|
{
|
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
win32_show_pref_file_dialog(item);
|
|
|
|
#else
|
|
|
|
GtkWidget *dialog;
|
|
|
|
gchar *filename, *tmp, **field;
|
|
|
|
|
|
|
|
// initialize the dialog
|
|
|
|
dialog = gtk_file_chooser_dialog_new(_("Open File"), GTK_WINDOW(app->prefs_dialog),
|
|
|
|
GTK_FILE_CHOOSER_ACTION_OPEN,
|
|
|
|
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
|
|
|
GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT, NULL);
|
|
|
|
// cut the options from the command line
|
|
|
|
field = g_strsplit(gtk_entry_get_text(GTK_ENTRY(item)), " ", 2);
|
|
|
|
if (field[0])
|
|
|
|
{
|
|
|
|
filename = g_find_program_in_path(field[0]);
|
|
|
|
if (filename)
|
|
|
|
{
|
|
|
|
gtk_file_chooser_select_filename(GTK_FILE_CHOOSER(dialog), filename);
|
|
|
|
g_free(filename);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// run it
|
|
|
|
if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT)
|
|
|
|
{
|
|
|
|
tmp = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(dialog));
|
|
|
|
if (g_strv_length(field) > 1)
|
|
|
|
filename = g_strconcat(tmp, " ", field[1], NULL);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
filename = tmp;
|
|
|
|
tmp = NULL;
|
|
|
|
}
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(item), filename);
|
|
|
|
g_free(filename);
|
|
|
|
g_free(tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_strfreev(field);
|
|
|
|
gtk_widget_destroy(dialog);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|