medit/moo/moofileview/moofileview-dialogs.c

493 lines
14 KiB
C
Raw Normal View History

/*
2005-08-25 02:29:01 -07:00
* moofileview-dialogs.c
*
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
2005-08-25 02:29:01 -07: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.
*
* See COPYING file that comes with this distribution.
*/
2006-08-13 02:00:15 -07:00
#define MOO_FILE_VIEW_COMPILATION
#include "moofileview/moofileview-dialogs.h"
#include "moofileview/moofilesystem.h"
#include "moofileview/moofileprops-glade.h"
#include "moofileview/moocreatefolder-glade.h"
#include "moofileview/moofileviewdrop-glade.h"
#include "mooutils/mooentry.h"
#include "mooutils/mooutils-gobject.h"
#include "mooutils/moodialogs.h"
2006-08-03 00:29:39 -07:00
#include "mooutils/mooi18n.h"
2005-08-25 02:29:01 -07:00
#include <time.h>
#include <string.h>
#include <gtk/gtk.h>
2005-08-25 02:29:01 -07:00
2005-11-15 11:57:34 -08:00
static void moo_file_props_dialog_destroy (GtkObject *object);
static void moo_file_props_dialog_show (GtkWidget *widget);
static void moo_file_props_dialog_response (GtkDialog *dialog,
int reponse);
static void moo_file_props_dialog_ok (MooFilePropsDialog *dialog);
2005-08-25 02:29:01 -07:00
G_DEFINE_TYPE(MooFilePropsDialog, _moo_file_props_dialog, GTK_TYPE_DIALOG)
2005-08-25 02:29:01 -07:00
2005-11-15 11:57:34 -08:00
static void
_moo_file_props_dialog_class_init (MooFilePropsDialogClass *klass)
2005-08-25 02:29:01 -07:00
{
2005-11-15 11:57:34 -08:00
GtkObjectClass *gtkobject_class = GTK_OBJECT_CLASS (klass);
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
GtkDialogClass *dialog_class = GTK_DIALOG_CLASS (klass);
2005-08-25 02:29:01 -07:00
2005-11-15 11:57:34 -08:00
gtkobject_class->destroy = moo_file_props_dialog_destroy;
widget_class->show = moo_file_props_dialog_show;
dialog_class->response = moo_file_props_dialog_response;
}
2005-08-25 02:29:01 -07:00
2005-11-15 11:57:34 -08:00
static void
_moo_file_props_dialog_init (MooFilePropsDialog *dialog)
2005-11-15 11:57:34 -08:00
{
2006-08-03 00:29:39 -07:00
dialog->xml = moo_glade_xml_new_empty (GETTEXT_PACKAGE);
2005-11-15 11:57:34 -08:00
moo_glade_xml_map_class (dialog->xml, "GtkEntry", MOO_TYPE_ENTRY);
2005-08-25 02:29:01 -07:00
if (!moo_glade_xml_parse_memory (dialog->xml, MOO_FILE_PROPS_GLADE_UI, -1, "notebook", NULL))
2005-11-15 11:57:34 -08:00
{
g_object_unref (dialog->xml);
2005-11-15 11:57:34 -08:00
dialog->xml = NULL;
g_return_if_reached ();
}
2005-11-15 11:57:34 -08:00
dialog->notebook = moo_glade_xml_get_widget (dialog->xml, "notebook");
dialog->icon = moo_glade_xml_get_widget (dialog->xml, "icon");
dialog->entry = moo_glade_xml_get_widget (dialog->xml, "entry");
dialog->table = moo_glade_xml_get_widget (dialog->xml, "table");
2005-11-15 11:57:34 -08:00
gtk_container_add (GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), dialog->notebook);
gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
gtk_dialog_add_buttons (GTK_DIALOG (dialog),
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
GTK_STOCK_OK, GTK_RESPONSE_OK,
NULL);
gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog), GTK_RESPONSE_OK,
GTK_STOCK_CANCEL, -1);
gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK);
2005-08-25 02:29:01 -07:00
}
2005-11-15 11:57:34 -08:00
static void
moo_file_props_dialog_response (GtkDialog *dialog,
gint response)
2005-08-25 02:29:01 -07:00
{
switch (response)
{
case GTK_RESPONSE_OK:
2005-11-15 11:57:34 -08:00
moo_file_props_dialog_ok (MOO_FILE_PROPS_DIALOG (dialog));
2005-08-25 02:29:01 -07:00
break;
case GTK_RESPONSE_DELETE_EVENT:
case GTK_RESPONSE_CANCEL:
break;
default:
g_warning ("%s: unknown response code", G_STRLOC);
}
_moo_file_props_dialog_set_file (MOO_FILE_PROPS_DIALOG (dialog), NULL, NULL);
2005-11-15 11:57:34 -08:00
gtk_widget_hide (GTK_WIDGET (dialog));
2005-08-25 02:29:01 -07:00
}
2005-11-15 11:57:34 -08:00
static void
moo_file_props_dialog_ok (MooFilePropsDialog *dialog)
2005-08-25 02:29:01 -07:00
{
const char *old_name, *new_name;
char *old_path, *new_path;
GError *error = NULL;
2005-11-15 11:57:34 -08:00
if (!dialog->file)
2005-08-25 02:29:01 -07:00
return;
old_name = _moo_file_display_name (dialog->file);
2005-11-15 11:57:34 -08:00
new_name = gtk_entry_get_text (GTK_ENTRY (dialog->entry));
2005-08-25 02:29:01 -07:00
if (!strcmp (old_name, new_name))
return;
old_path = _moo_file_system_make_path (_moo_folder_get_file_system (dialog->folder),
_moo_folder_get_path (dialog->folder),
old_name, NULL);
new_path = _moo_file_system_make_path (_moo_folder_get_file_system (dialog->folder),
_moo_folder_get_path (dialog->folder),
new_name, NULL);
2005-08-25 02:29:01 -07:00
if (!old_path || !new_path)
{
2005-11-15 11:57:34 -08:00
g_warning ("%s: oops", G_STRLOC);
2005-08-25 02:29:01 -07:00
goto out;
}
if (!_moo_file_system_move_file (_moo_folder_get_file_system (dialog->folder),
old_path, new_path, &error))
2005-08-25 02:29:01 -07:00
{
g_warning ("%s: could not rename '%s' to '%s'",
G_STRLOC, old_path, new_path);
2005-11-15 11:57:34 -08:00
2005-08-25 02:29:01 -07:00
if (error)
{
g_warning ("%s: %s", G_STRLOC, error->message);
g_error_free (error);
}
2005-11-15 11:57:34 -08:00
2005-08-25 02:29:01 -07:00
goto out;
}
out:
g_free (old_path);
g_free (new_path);
_moo_file_props_dialog_set_file (dialog, NULL, NULL);
2005-08-25 02:29:01 -07:00
}
2005-11-15 11:57:34 -08:00
static void
set_file (MooFilePropsDialog *dialog,
MooFile *file,
MooFolder *folder)
2005-08-25 02:29:01 -07:00
{
2005-11-15 11:57:34 -08:00
if (file == dialog->file)
return;
if (folder != dialog->folder)
{
if (dialog->folder)
g_object_unref (dialog->folder);
dialog->folder = folder;
if (folder)
g_object_ref (folder);
}
if (dialog->file)
_moo_file_unref (dialog->file);
2005-11-15 11:57:34 -08:00
dialog->file = file;
if (file)
_moo_file_ref (file);
2005-08-25 02:29:01 -07:00
if (file)
{
char *title;
const char *name;
name = _moo_file_display_name (file);
2005-11-15 11:57:34 -08:00
gtk_entry_set_text (GTK_ENTRY (dialog->entry), name);
2005-08-25 02:29:01 -07:00
title = g_strdup_printf ("%s Properties", name);
gtk_window_set_title (GTK_WINDOW (dialog), title);
g_free (title);
}
else
{
2005-11-15 11:57:34 -08:00
gtk_entry_set_text (GTK_ENTRY (dialog->entry), "");
2005-08-25 02:29:01 -07:00
gtk_window_set_title (GTK_WINDOW (dialog), "Properties");
}
}
2005-11-15 11:57:34 -08:00
void
_moo_file_props_dialog_set_file (MooFilePropsDialog *dialog,
MooFile *file,
MooFolder *folder)
2005-08-25 02:29:01 -07:00
{
char *text;
char **info, **p;
int i;
2005-08-25 02:29:01 -07:00
2005-11-15 11:57:34 -08:00
g_return_if_fail (MOO_IS_FILE_PROPS_DIALOG (dialog));
2005-08-25 02:29:01 -07:00
g_return_if_fail ((!file && !folder) || (file && MOO_IS_FOLDER (folder)));
if (!file)
{
2005-11-15 11:57:34 -08:00
gtk_widget_set_sensitive (dialog->notebook, FALSE);
gtk_container_foreach (GTK_CONTAINER (dialog->table),
(GtkCallback) gtk_widget_destroy, NULL);
2005-08-25 02:29:01 -07:00
set_file (dialog, NULL, NULL);
return;
}
else
{
2005-11-15 11:57:34 -08:00
gtk_widget_set_sensitive (dialog->notebook, TRUE);
2005-08-25 02:29:01 -07:00
}
info = _moo_folder_get_file_info (folder, file);
g_return_if_fail (info != NULL);
2005-08-25 02:29:01 -07:00
2005-11-15 11:57:34 -08:00
gtk_image_set_from_pixbuf (GTK_IMAGE (dialog->icon),
_moo_file_get_icon (file, GTK_WIDGET (dialog), GTK_ICON_SIZE_DIALOG));
2005-08-25 02:29:01 -07:00
set_file (dialog, file, folder);
for (p = info, i = 0; *p != NULL; ++i)
{
GtkWidget *label;
2005-08-25 02:29:01 -07:00
if (!p[1])
{
g_critical ("%s: oops", G_STRLOC);
break;
}
2005-08-25 02:29:01 -07:00
label = gtk_label_new (NULL);
text = g_markup_printf_escaped ("<b>%s</b>", *(p++));
gtk_label_set_markup (GTK_LABEL (label), text);
g_free (text);
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 0.5);
2005-11-15 11:57:34 -08:00
gtk_table_attach (GTK_TABLE (dialog->table), label, 0, 1, i, i+1,
GTK_EXPAND | GTK_FILL, 0, 0, 0);
label = gtk_label_new (*(p++));
gtk_label_set_selectable (GTK_LABEL (label), TRUE);
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
2005-11-15 11:57:34 -08:00
gtk_table_attach (GTK_TABLE (dialog->table), label, 1, 2, i, i+1,
GTK_EXPAND | GTK_FILL, 0, 0, 0);
2005-08-25 02:29:01 -07:00
}
2005-11-15 11:57:34 -08:00
gtk_widget_show_all (dialog->table);
2005-08-25 02:29:01 -07:00
g_strfreev (info);
2005-08-25 02:29:01 -07:00
}
2005-11-15 11:57:34 -08:00
static void
moo_file_props_dialog_destroy (GtkObject *object)
{
MooFilePropsDialog *dialog = MOO_FILE_PROPS_DIALOG (object);
2005-08-25 02:29:01 -07:00
2005-11-15 11:57:34 -08:00
if (dialog->xml)
{
g_object_unref (dialog->xml);
2005-11-15 11:57:34 -08:00
if (dialog->file)
_moo_file_unref (dialog->file);
2005-11-15 11:57:34 -08:00
if (dialog->folder)
g_object_unref (dialog->folder);
dialog->xml = NULL;
dialog->file = NULL;
dialog->folder = NULL;
dialog->notebook = NULL;
dialog->icon = NULL;
dialog->entry = NULL;
dialog->table = NULL;
}
GTK_OBJECT_CLASS(_moo_file_props_dialog_parent_class)->destroy (object);
2005-11-15 11:57:34 -08:00
}
static void
moo_file_props_dialog_show (GtkWidget *widget)
{
MooFilePropsDialog *dialog = MOO_FILE_PROPS_DIALOG (widget);
GTK_WIDGET_CLASS(_moo_file_props_dialog_parent_class)->show (widget);
2005-11-15 11:57:34 -08:00
gtk_widget_grab_focus (dialog->entry);
}
GtkWidget*
_moo_file_props_dialog_new (GtkWidget *parent)
2005-08-25 02:29:01 -07:00
{
2005-11-15 11:57:34 -08:00
GtkWidget *dialog;
dialog = g_object_new (MOO_TYPE_FILE_PROPS_DIALOG, NULL);
2006-06-27 14:20:46 -07:00
moo_window_set_parent (dialog, parent);
2005-11-15 11:57:34 -08:00
return dialog;
}
char*
_moo_file_view_create_folder_dialog (GtkWidget *parent,
MooFolder *folder)
2005-11-15 11:57:34 -08:00
{
MooGladeXML *xml;
GtkWidget *dialog, *entry, *label;
char *text, *path, *new_folder_name = NULL;
2005-08-25 02:29:01 -07:00
g_return_val_if_fail (MOO_IS_FOLDER (folder), NULL);
2006-08-03 00:29:39 -07:00
xml = moo_glade_xml_new_empty (GETTEXT_PACKAGE);
2005-11-15 11:57:34 -08:00
moo_glade_xml_map_class (xml, "GtkEntry", MOO_TYPE_ENTRY);
moo_glade_xml_parse_memory (xml, MOO_CREATE_FOLDER_GLADE_UI, -1, NULL, NULL);
2005-08-25 02:29:01 -07:00
2005-11-15 11:57:34 -08:00
dialog = moo_glade_xml_get_widget (xml, "dialog");
g_return_val_if_fail (dialog != NULL, NULL);
2005-08-25 02:29:01 -07:00
2006-06-27 14:20:46 -07:00
moo_window_set_parent (dialog, parent);
2005-08-25 02:29:01 -07:00
2005-11-15 11:57:34 -08:00
label = moo_glade_xml_get_widget (xml, "label");
path = g_filename_display_name (_moo_folder_get_path (folder));
text = g_strdup_printf ("Create new folder in %s", path);
gtk_label_set_text (GTK_LABEL (label), text);
2005-08-25 02:29:01 -07:00
g_free (path);
g_free (text);
2005-08-25 02:29:01 -07:00
2005-11-15 11:57:34 -08:00
entry = moo_glade_xml_get_widget (xml, "entry");
gtk_entry_set_text (GTK_ENTRY (entry), "New Folder");
2005-11-15 11:57:34 -08:00
moo_entry_clear_undo (MOO_ENTRY (entry));
gtk_widget_show_all (dialog);
gtk_widget_grab_focus (entry);
gtk_editable_select_region (GTK_EDITABLE (entry), 0, -1);
2005-08-25 02:29:01 -07:00
if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_OK)
new_folder_name = g_strdup (gtk_entry_get_text (GTK_ENTRY (entry)));
2005-11-15 11:57:34 -08:00
else
new_folder_name = NULL;
2005-08-25 02:29:01 -07:00
g_object_unref (xml);
2005-08-25 02:29:01 -07:00
gtk_widget_destroy (dialog);
return new_folder_name;
}
/****************************************************************************/
/* Save droppped contents
*/
#define CLIP_NAME_BASE "clip"
#define CLIP_NAME_SUFFIX ".txt"
static char *
find_available_clip_name (const char *dirname)
{
int i;
g_assert (dirname != NULL);
for (i = 0; i < 1000; ++i)
{
char *fullname;
char *basename;
if (i)
basename = g_strdup_printf (CLIP_NAME_BASE "%d" CLIP_NAME_SUFFIX, i);
else
basename = g_strdup (CLIP_NAME_BASE CLIP_NAME_SUFFIX);
fullname = g_build_filename (dirname, basename, NULL);
if (!g_file_test (fullname, G_FILE_TEST_EXISTS))
{
g_free (fullname);
return basename;
}
g_free (fullname);
g_free (basename);
}
for (i = 0; i < 1000; ++i)
{
char *fullname;
char *basename;
basename = g_strdup_printf (CLIP_NAME_BASE "%08x" CLIP_NAME_SUFFIX,
g_random_int ());
fullname = g_build_filename (dirname, basename, NULL);
if (!g_file_test (fullname, G_FILE_TEST_EXISTS))
{
g_free (fullname);
return basename;
}
g_free (fullname);
g_free (basename);
}
return g_strdup (CLIP_NAME_BASE CLIP_NAME_SUFFIX);
}
char *
_moo_file_view_save_drop_dialog (GtkWidget *parent,
const char *dirname)
{
MooGladeXML *xml;
GtkWidget *dialog, *button;
GtkEntry *entry;
char *start_name, *fullname = NULL;
g_return_val_if_fail (dirname != NULL, NULL);
2006-08-03 00:29:39 -07:00
xml = moo_glade_xml_new_empty (GETTEXT_PACKAGE);
moo_glade_xml_map_class (xml, "GtkEntry", MOO_TYPE_ENTRY);
moo_glade_xml_parse_memory (xml, MOO_FILE_VIEW_DROP_GLADE_UI, -1, NULL, NULL);
dialog = moo_glade_xml_get_widget (xml, "save_drop_dialog");
g_return_val_if_fail (dialog != NULL, NULL);
2006-06-27 14:20:46 -07:00
moo_position_window_at_pointer (dialog, parent);
entry = moo_glade_xml_get_widget (xml, "entry");
start_name = find_available_clip_name (dirname);
gtk_entry_set_text (entry, start_name);
moo_entry_clear_undo (MOO_ENTRY (entry));
gtk_widget_show_all (dialog);
gtk_widget_grab_focus (GTK_WIDGET (entry));
button = moo_glade_xml_get_widget (xml, "ok_button");
moo_bind_bool_property (button, "sensitive", entry, "empty", TRUE);
while (TRUE)
{
const char *text;
char *name, *err_text, *sec_text;
if (gtk_dialog_run (GTK_DIALOG (dialog)) != GTK_RESPONSE_OK)
goto out;
text = gtk_entry_get_text (entry);
if (!text[0])
{
g_critical ("%s: ooops", G_STRLOC);
goto out;
}
/* XXX error checking, you know */
name = g_filename_from_utf8 (text, -1, NULL, NULL, NULL);
if (!name)
{
err_text = g_strdup_printf ("Can not save file as '%s'", text);
sec_text = g_strdup_printf ("Could not convert '%s' to filename encoding.\n"
"Please consider simpler name, such as foo.blah "
"or blah.foo", text);
moo_error_dialog (dialog, err_text, sec_text);
g_free (err_text);
g_free (sec_text);
continue;
}
fullname = g_build_filename (dirname, name, NULL);
g_free (name);
if (!g_file_test (fullname, G_FILE_TEST_EXISTS))
goto out;
err_text = g_strdup_printf ("File '%s' already exists", text);
moo_error_dialog (dialog, err_text, NULL);
g_free (err_text);
g_free (fullname);
fullname = NULL;
}
out:
g_object_unref (xml);
gtk_widget_destroy (dialog);
g_free (start_name);
return fullname;
}