xed/xedit/xedit-file-chooser-dialog.c

587 lines
16 KiB
C
Raw Normal View History

2011-11-07 13:46:58 -06:00
/*
2016-01-25 08:13:49 -06:00
* xedit-file-chooser-dialog.c
* This file is part of xedit
2011-11-07 13:46:58 -06:00
*
* Copyright (C) 2005-2007 - Paolo Maggi
*
* 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
2012-11-18 19:54:49 -06:00
* Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
2011-11-07 13:46:58 -06:00
*/
/*
2016-01-25 08:13:49 -06:00
* Modified by the xedit Team, 2005-2007. See the AUTHORS file for a
* list of people on the xedit Team.
2011-11-07 13:46:58 -06:00
* See the ChangeLog files for a list of changes.
*
* $Id$
*/
/* TODO: Override set_extra_widget */
/* TODO: add encoding property */
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <string.h>
#include <glib/gi18n.h>
#include <gtk/gtk.h>
2013-10-30 11:06:27 -05:00
#if GTK_CHECK_VERSION (3, 0, 0)
2013-10-29 18:56:56 -05:00
#include <gtksourceview/gtksource.h>
2013-10-30 11:06:27 -05:00
#endif
2011-11-07 13:46:58 -06:00
2016-01-25 08:13:49 -06:00
#include "xedit-file-chooser-dialog.h"
#include "xedit-encodings-combo-box.h"
#include "xedit-language-manager.h"
#include "xedit-prefs-manager-app.h"
#include "xedit-debug.h"
#include "xedit-enum-types.h"
2011-11-07 13:46:58 -06:00
2016-01-25 08:13:49 -06:00
#define XEDIT_FILE_CHOOSER_DIALOG_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE ((object), XEDIT_TYPE_FILE_CHOOSER_DIALOG, XeditFileChooserDialogPrivate))
2011-11-07 13:46:58 -06:00
#define ALL_FILES _("All Files")
#define ALL_TEXT_FILES _("All Text Files")
#if GTK_CHECK_VERSION (3, 0, 0)
#define gtk_hbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_HORIZONTAL,Y)
#endif
2016-01-25 08:13:49 -06:00
struct _XeditFileChooserDialogPrivate
2011-11-07 13:46:58 -06:00
{
GtkWidget *option_menu;
GtkWidget *extra_widget;
GtkWidget *newline_label;
GtkWidget *newline_combo;
GtkListStore *newline_store;
};
2016-01-25 08:13:49 -06:00
G_DEFINE_TYPE(XeditFileChooserDialog, xedit_file_chooser_dialog, GTK_TYPE_FILE_CHOOSER_DIALOG)
2011-11-07 13:46:58 -06:00
static void
2016-01-25 08:13:49 -06:00
xedit_file_chooser_dialog_class_init (XeditFileChooserDialogClass *klass)
2011-11-07 13:46:58 -06:00
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
2016-01-25 08:13:49 -06:00
g_type_class_add_private (object_class, sizeof(XeditFileChooserDialogPrivate));
2011-11-07 13:46:58 -06:00
}
static void
2016-01-25 08:13:49 -06:00
create_option_menu (XeditFileChooserDialog *dialog)
2011-11-07 13:46:58 -06:00
{
GtkWidget *label;
GtkWidget *menu;
label = gtk_label_new_with_mnemonic (_("C_haracter Encoding:"));
#if GTK_CHECK_VERSION (3, 16, 0)
gtk_label_set_xalign (GTK_LABEL (label), 0.0);
#else
2011-11-07 13:46:58 -06:00
gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
#endif
2011-11-07 13:46:58 -06:00
2016-01-25 08:13:49 -06:00
menu = xedit_encodings_combo_box_new (
2011-11-07 13:46:58 -06:00
gtk_file_chooser_get_action (GTK_FILE_CHOOSER (dialog)) == GTK_FILE_CHOOSER_ACTION_SAVE);
gtk_label_set_mnemonic_widget (GTK_LABEL (label), menu);
gtk_box_pack_start (GTK_BOX (dialog->priv->extra_widget),
label,
FALSE,
TRUE,
0);
gtk_box_pack_start (GTK_BOX (dialog->priv->extra_widget),
menu,
TRUE,
TRUE,
0);
gtk_widget_show (label);
gtk_widget_show (menu);
dialog->priv->option_menu = menu;
}
static void
2016-01-25 08:13:49 -06:00
update_newline_visibility (XeditFileChooserDialog *dialog)
2011-11-07 13:46:58 -06:00
{
if (gtk_file_chooser_get_action (GTK_FILE_CHOOSER (dialog)) == GTK_FILE_CHOOSER_ACTION_SAVE)
{
gtk_widget_show (dialog->priv->newline_label);
gtk_widget_show (dialog->priv->newline_combo);
}
else
{
gtk_widget_hide (dialog->priv->newline_label);
gtk_widget_hide (dialog->priv->newline_combo);
}
}
static void
newline_combo_append (GtkComboBox *combo,
GtkListStore *store,
GtkTreeIter *iter,
const gchar *label,
2016-01-25 08:13:49 -06:00
XeditDocumentNewlineType newline_type)
2011-11-07 13:46:58 -06:00
{
gtk_list_store_append (store, iter);
gtk_list_store_set (store, iter, 0, label, 1, newline_type, -1);
2016-01-25 08:13:49 -06:00
if (newline_type == XEDIT_DOCUMENT_NEWLINE_TYPE_DEFAULT)
2011-11-07 13:46:58 -06:00
{
gtk_combo_box_set_active_iter (combo, iter);
}
}
static void
2016-01-25 08:13:49 -06:00
create_newline_combo (XeditFileChooserDialog *dialog)
2011-11-07 13:46:58 -06:00
{
GtkWidget *label, *combo;
GtkListStore *store;
GtkCellRenderer *renderer;
GtkTreeIter iter;
label = gtk_label_new_with_mnemonic (_("L_ine Ending:"));
#if GTK_CHECK_VERSION (3, 16, 0)
gtk_label_set_xalign (GTK_LABEL (label), 0.0);
#else
2011-11-07 13:46:58 -06:00
gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
#endif
2011-11-07 13:46:58 -06:00
2016-01-25 08:13:49 -06:00
store = gtk_list_store_new (2, G_TYPE_STRING, XEDIT_TYPE_DOCUMENT_NEWLINE_TYPE);
2011-11-07 13:46:58 -06:00
combo = gtk_combo_box_new_with_model (GTK_TREE_MODEL (store));
renderer = gtk_cell_renderer_text_new ();
gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo),
renderer,
TRUE);
gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (combo),
renderer,
"text",
0);
newline_combo_append (GTK_COMBO_BOX (combo),
store,
&iter,
_("Unix/Linux"),
2016-01-25 08:13:49 -06:00
XEDIT_DOCUMENT_NEWLINE_TYPE_LF);
2011-11-07 13:46:58 -06:00
newline_combo_append (GTK_COMBO_BOX (combo),
store,
&iter,
_("Mac OS Classic"),
2016-01-25 08:13:49 -06:00
XEDIT_DOCUMENT_NEWLINE_TYPE_CR);
2011-11-07 13:46:58 -06:00
newline_combo_append (GTK_COMBO_BOX (combo),
store,
&iter,
_("Windows"),
2016-01-25 08:13:49 -06:00
XEDIT_DOCUMENT_NEWLINE_TYPE_CR_LF);
2011-11-07 13:46:58 -06:00
gtk_label_set_mnemonic_widget (GTK_LABEL (label), combo);
gtk_box_pack_start (GTK_BOX (dialog->priv->extra_widget),
label,
FALSE,
TRUE,
0);
gtk_box_pack_start (GTK_BOX (dialog->priv->extra_widget),
combo,
TRUE,
TRUE,
0);
dialog->priv->newline_combo = combo;
dialog->priv->newline_label = label;
dialog->priv->newline_store = store;
update_newline_visibility (dialog);
}
static void
2016-01-25 08:13:49 -06:00
create_extra_widget (XeditFileChooserDialog *dialog)
2011-11-07 13:46:58 -06:00
{
dialog->priv->extra_widget = gtk_hbox_new (FALSE, 6);
gtk_widget_show (dialog->priv->extra_widget);
create_option_menu (dialog);
create_newline_combo (dialog);
gtk_file_chooser_set_extra_widget (GTK_FILE_CHOOSER (dialog),
dialog->priv->extra_widget);
}
static void
2016-01-25 08:13:49 -06:00
action_changed (XeditFileChooserDialog *dialog,
2011-11-07 13:46:58 -06:00
GParamSpec *pspec,
gpointer data)
{
GtkFileChooserAction action;
action = gtk_file_chooser_get_action (GTK_FILE_CHOOSER (dialog));
switch (action)
{
case GTK_FILE_CHOOSER_ACTION_OPEN:
g_object_set (dialog->priv->option_menu,
"save_mode", FALSE,
NULL);
gtk_widget_show (dialog->priv->option_menu);
break;
case GTK_FILE_CHOOSER_ACTION_SAVE:
g_object_set (dialog->priv->option_menu,
"save_mode", TRUE,
NULL);
gtk_widget_show (dialog->priv->option_menu);
break;
default:
gtk_widget_hide (dialog->priv->option_menu);
}
update_newline_visibility (dialog);
}
static void
2016-01-25 08:13:49 -06:00
filter_changed (XeditFileChooserDialog *dialog,
2011-11-07 13:46:58 -06:00
GParamSpec *pspec,
gpointer data)
{
GtkFileFilter *filter;
2016-01-25 08:13:49 -06:00
if (!xedit_prefs_manager_active_file_filter_can_set ())
2011-11-07 13:46:58 -06:00
return;
filter = gtk_file_chooser_get_filter (GTK_FILE_CHOOSER (dialog));
if (filter != NULL)
{
const gchar *name;
gint id = 0;
name = gtk_file_filter_get_name (filter);
g_return_if_fail (name != NULL);
if (strcmp (name, ALL_TEXT_FILES) == 0)
id = 1;
2016-01-25 08:13:49 -06:00
xedit_debug_message (DEBUG_COMMANDS, "Active filter: %s (%d)", name, id);
2011-11-07 13:46:58 -06:00
2016-01-25 08:13:49 -06:00
xedit_prefs_manager_set_active_file_filter (id);
2011-11-07 13:46:58 -06:00
}
}
/* FIXME: use globs too - Paolo (Aug. 27, 2007) */
static gboolean
all_text_files_filter (const GtkFileFilterInfo *filter_info,
gpointer data)
{
static GSList *known_mime_types = NULL;
GSList *mime_types;
if (known_mime_types == NULL)
{
GtkSourceLanguageManager *lm;
const gchar * const *languages;
2016-01-25 08:13:49 -06:00
lm = xedit_get_language_manager ();
2011-11-07 13:46:58 -06:00
languages = gtk_source_language_manager_get_language_ids (lm);
while ((languages != NULL) && (*languages != NULL))
{
gchar **mime_types;
gint i;
GtkSourceLanguage *lang;
lang = gtk_source_language_manager_get_language (lm, *languages);
2013-10-29 18:56:56 -05:00
#if GTK_CHECK_VERSION (3, 0, 0)
g_return_val_if_fail (GTK_SOURCE_IS_LANGUAGE (lang), FALSE);
#else
2011-11-07 13:46:58 -06:00
g_return_val_if_fail (GTK_IS_SOURCE_LANGUAGE (lang), FALSE);
2013-10-29 18:56:56 -05:00
#endif
2011-11-07 13:46:58 -06:00
++languages;
mime_types = gtk_source_language_get_mime_types (lang);
if (mime_types == NULL)
continue;
for (i = 0; mime_types[i] != NULL; i++)
{
if (!g_content_type_is_a (mime_types[i], "text/plain"))
{
2016-01-25 08:13:49 -06:00
xedit_debug_message (DEBUG_COMMANDS,
2011-11-07 13:46:58 -06:00
"Mime-type %s is not related to text/plain",
mime_types[i]);
known_mime_types = g_slist_prepend (known_mime_types,
g_strdup (mime_types[i]));
}
}
g_strfreev (mime_types);
}
/* known_mime_types always has "text/plain" as first item" */
known_mime_types = g_slist_prepend (known_mime_types, g_strdup ("text/plain"));
}
/* known mime_types contains "text/plain" and then the list of mime-types unrelated to "text/plain"
2016-01-25 08:13:49 -06:00
* that xedit recognizes */
2011-11-07 13:46:58 -06:00
if (filter_info->mime_type == NULL)
return FALSE;
/*
* The filter is matching:
* - the mime-types beginning with "text/"
* - the mime-types inheriting from a known mime-type (note the text/plain is
* the first known mime-type)
*/
if (strncmp (filter_info->mime_type, "text/", 5) == 0)
return TRUE;
mime_types = known_mime_types;
while (mime_types != NULL)
{
if (g_content_type_is_a (filter_info->mime_type, (const gchar*)mime_types->data))
return TRUE;
mime_types = g_slist_next (mime_types);
}
return FALSE;
}
static void
2016-01-25 08:13:49 -06:00
xedit_file_chooser_dialog_init (XeditFileChooserDialog *dialog)
2011-11-07 13:46:58 -06:00
{
2016-01-25 08:13:49 -06:00
dialog->priv = XEDIT_FILE_CHOOSER_DIALOG_GET_PRIVATE (dialog);
2011-11-07 13:46:58 -06:00
}
static GtkWidget *
2016-01-25 08:13:49 -06:00
xedit_file_chooser_dialog_new_valist (const gchar *title,
2011-11-07 13:46:58 -06:00
GtkWindow *parent,
GtkFileChooserAction action,
2016-01-25 08:13:49 -06:00
const XeditEncoding *encoding,
2011-11-07 13:46:58 -06:00
const gchar *first_button_text,
va_list varargs)
{
GtkWidget *result;
const char *button_text = first_button_text;
gint response_id;
GtkFileFilter *filter;
gint active_filter;
g_return_val_if_fail (parent != NULL, NULL);
2016-01-25 08:13:49 -06:00
result = g_object_new (XEDIT_TYPE_FILE_CHOOSER_DIALOG,
2011-11-07 13:46:58 -06:00
"title", title,
#if !GTK_CHECK_VERSION (3, 0, 0)
2011-11-07 13:46:58 -06:00
"file-system-backend", NULL,
#endif
2011-11-07 13:46:58 -06:00
"local-only", FALSE,
"action", action,
"select-multiple", action == GTK_FILE_CHOOSER_ACTION_OPEN,
NULL);
2016-01-25 08:13:49 -06:00
create_extra_widget (XEDIT_FILE_CHOOSER_DIALOG (result));
2011-11-07 13:46:58 -06:00
g_signal_connect (result,
"notify::action",
G_CALLBACK (action_changed),
NULL);
if (encoding != NULL)
2016-01-25 08:13:49 -06:00
xedit_encodings_combo_box_set_selected_encoding (
XEDIT_ENCODINGS_COMBO_BOX (XEDIT_FILE_CHOOSER_DIALOG (result)->priv->option_menu),
2011-11-07 13:46:58 -06:00
encoding);
2016-01-25 08:13:49 -06:00
active_filter = xedit_prefs_manager_get_active_file_filter ();
xedit_debug_message (DEBUG_COMMANDS, "Active filter: %d", active_filter);
2011-11-07 13:46:58 -06:00
/* Filters */
filter = gtk_file_filter_new ();
gtk_file_filter_set_name (filter, ALL_FILES);
gtk_file_filter_add_pattern (filter, "*");
gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (result), filter);
#if GTK_CHECK_VERSION (3, 0, 0)
gtk_file_chooser_set_action (GTK_FILE_CHOOSER (result), action);
#endif
2011-11-07 13:46:58 -06:00
if (active_filter != 1)
{
/* Make this filter the default */
gtk_file_chooser_set_filter (GTK_FILE_CHOOSER (result), filter);
}
filter = gtk_file_filter_new ();
gtk_file_filter_set_name (filter, ALL_TEXT_FILES);
gtk_file_filter_add_custom (filter,
GTK_FILE_FILTER_MIME_TYPE,
all_text_files_filter,
NULL,
NULL);
gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (result), filter);
if (active_filter == 1)
{
/* Make this filter the default */
gtk_file_chooser_set_filter (GTK_FILE_CHOOSER (result), filter);
}
g_signal_connect (result,
"notify::filter",
G_CALLBACK (filter_changed),
NULL);
gtk_window_set_transient_for (GTK_WINDOW (result), parent);
gtk_window_set_destroy_with_parent (GTK_WINDOW (result), TRUE);
while (button_text)
{
response_id = va_arg (varargs, gint);
gtk_dialog_add_button (GTK_DIALOG (result), button_text, response_id);
if ((response_id == GTK_RESPONSE_OK) ||
(response_id == GTK_RESPONSE_ACCEPT) ||
(response_id == GTK_RESPONSE_YES) ||
(response_id == GTK_RESPONSE_APPLY))
gtk_dialog_set_default_response (GTK_DIALOG (result), response_id);
button_text = va_arg (varargs, const gchar *);
}
return result;
}
/**
2016-01-25 08:13:49 -06:00
* xedit_file_chooser_dialog_new:
* @title: (allow-none): Title of the dialog, or %NULL
* @parent: (allow-none): Transient parent of the dialog, or %NULL
2011-11-07 13:46:58 -06:00
* @action: Open or save mode for the dialog
* @first_button_text: (allow-none): stock ID or text to go in
* the first button, or %NULL
* @Varargs: (allow-none): response ID for the first button, then
* additional (button, id) pairs, ending with %NULL
2011-11-07 13:46:58 -06:00
*
2016-01-25 08:13:49 -06:00
* Creates a new #XeditFileChooserDialog. This function is analogous to
2011-11-07 13:46:58 -06:00
* gtk_dialog_new_with_buttons().
*
2016-01-25 08:13:49 -06:00
* Return value: a new #XeditFileChooserDialog
2011-11-07 13:46:58 -06:00
*
**/
GtkWidget *
2016-01-25 08:13:49 -06:00
xedit_file_chooser_dialog_new (const gchar *title,
2011-11-07 13:46:58 -06:00
GtkWindow *parent,
GtkFileChooserAction action,
2016-01-25 08:13:49 -06:00
const XeditEncoding *encoding,
2011-11-07 13:46:58 -06:00
const gchar *first_button_text,
...)
{
GtkWidget *result;
va_list varargs;
va_start (varargs, first_button_text);
2016-01-25 08:13:49 -06:00
result = xedit_file_chooser_dialog_new_valist (title, parent, action,
2011-11-07 13:46:58 -06:00
encoding, first_button_text,
varargs);
va_end (varargs);
return result;
}
void
2016-01-25 08:13:49 -06:00
xedit_file_chooser_dialog_set_encoding (XeditFileChooserDialog *dialog,
const XeditEncoding *encoding)
2011-11-07 13:46:58 -06:00
{
2016-01-25 08:13:49 -06:00
g_return_if_fail (XEDIT_IS_FILE_CHOOSER_DIALOG (dialog));
g_return_if_fail (XEDIT_IS_ENCODINGS_COMBO_BOX (dialog->priv->option_menu));
2011-11-07 13:46:58 -06:00
2016-01-25 08:13:49 -06:00
xedit_encodings_combo_box_set_selected_encoding (
XEDIT_ENCODINGS_COMBO_BOX (dialog->priv->option_menu),
2011-11-07 13:46:58 -06:00
encoding);
}
2016-01-25 08:13:49 -06:00
const XeditEncoding *
xedit_file_chooser_dialog_get_encoding (XeditFileChooserDialog *dialog)
2011-11-07 13:46:58 -06:00
{
2016-01-25 08:13:49 -06:00
g_return_val_if_fail (XEDIT_IS_FILE_CHOOSER_DIALOG (dialog), NULL);
g_return_val_if_fail (XEDIT_IS_ENCODINGS_COMBO_BOX (dialog->priv->option_menu), NULL);
2011-11-07 13:46:58 -06:00
g_return_val_if_fail ((gtk_file_chooser_get_action (GTK_FILE_CHOOSER (dialog)) == GTK_FILE_CHOOSER_ACTION_OPEN ||
gtk_file_chooser_get_action (GTK_FILE_CHOOSER (dialog)) == GTK_FILE_CHOOSER_ACTION_SAVE), NULL);
2016-01-25 08:13:49 -06:00
return xedit_encodings_combo_box_get_selected_encoding (
XEDIT_ENCODINGS_COMBO_BOX (dialog->priv->option_menu));
2011-11-07 13:46:58 -06:00
}
void
2016-01-25 08:13:49 -06:00
xedit_file_chooser_dialog_set_newline_type (XeditFileChooserDialog *dialog,
XeditDocumentNewlineType newline_type)
2011-11-07 13:46:58 -06:00
{
GtkTreeIter iter;
GtkTreeModel *model;
2016-01-25 08:13:49 -06:00
g_return_if_fail (XEDIT_IS_FILE_CHOOSER_DIALOG (dialog));
2011-11-07 13:46:58 -06:00
g_return_if_fail (gtk_file_chooser_get_action (GTK_FILE_CHOOSER (dialog)) == GTK_FILE_CHOOSER_ACTION_SAVE);
model = GTK_TREE_MODEL (dialog->priv->newline_store);
if (!gtk_tree_model_get_iter_first (model, &iter))
{
return;
}
do
{
2016-01-25 08:13:49 -06:00
XeditDocumentNewlineType nt;
2011-11-07 13:46:58 -06:00
gtk_tree_model_get (model, &iter, 1, &nt, -1);
if (newline_type == nt)
{
gtk_combo_box_set_active_iter (GTK_COMBO_BOX (dialog->priv->newline_combo),
&iter);
break;
}
} while (gtk_tree_model_iter_next (model, &iter));
}
2016-01-25 08:13:49 -06:00
XeditDocumentNewlineType
xedit_file_chooser_dialog_get_newline_type (XeditFileChooserDialog *dialog)
2011-11-07 13:46:58 -06:00
{
GtkTreeIter iter;
2016-01-25 08:13:49 -06:00
XeditDocumentNewlineType newline_type;
2011-11-07 13:46:58 -06:00
2016-01-25 08:13:49 -06:00
g_return_val_if_fail (XEDIT_IS_FILE_CHOOSER_DIALOG (dialog), XEDIT_DOCUMENT_NEWLINE_TYPE_DEFAULT);
2011-11-07 13:46:58 -06:00
g_return_val_if_fail (gtk_file_chooser_get_action (GTK_FILE_CHOOSER (dialog)) == GTK_FILE_CHOOSER_ACTION_SAVE,
2016-01-25 08:13:49 -06:00
XEDIT_DOCUMENT_NEWLINE_TYPE_DEFAULT);
2011-11-07 13:46:58 -06:00
gtk_combo_box_get_active_iter (GTK_COMBO_BOX (dialog->priv->newline_combo),
&iter);
gtk_tree_model_get (GTK_TREE_MODEL (dialog->priv->newline_store),
&iter,
1,
&newline_type,
-1);
return newline_type;
}