always populate the details fields so a user can see what they selected.

2002-04-26  Jody Goldberg <jody@gnome.org>

	* service-edit-dialog.c (populate_app_list) : always populate the
	  details fields so a user can see what they selected.
	(program_changed_cb) : ditto.

	* service-info.c (fill_service_apps) : fix to not use freed memory.
This commit is contained in:
Jody Goldberg 2002-04-26 15:13:57 +00:00 committed by Jody Goldberg
parent 6bfc1ea23d
commit 8d5b6e6284
3 changed files with 41 additions and 25 deletions

View file

@ -1,3 +1,11 @@
2002-04-26 Jody Goldberg <jody@gnome.org>
* service-edit-dialog.c (populate_app_list) : always populate the
details fields so a user can see what they selected.
(program_changed_cb) : ditto.
* service-info.c (fill_service_apps) : fix to not use freed memory.
2002-04-23 Jody Goldberg <jody@gnome.org>
* model-entry.c (model_entry_save) : wrap in vfs freeze/unfreeze.

View file

@ -372,7 +372,7 @@ setup_add_dialog (ServiceEditDialog *dialog)
static void
populate_app_list (ServiceEditDialog *dialog)
{
GtkOptionMenu *option_menu;
GtkOptionMenu *program_select;
GtkMenu *menu;
GtkWidget *item;
gint found_idx = -1, i = 0;
@ -380,12 +380,12 @@ populate_app_list (ServiceEditDialog *dialog)
const GList *service_apps;
GnomeVFSMimeApplication *app;
option_menu = GTK_OPTION_MENU (WID ("program_select"));
program_select = GTK_OPTION_MENU (WID ("program_select"));
menu = GTK_MENU (gtk_menu_new ());
service_apps = get_apps_for_service_type (dialog->p->info->protocol);
if (service_apps == NULL)
gtk_widget_set_sensitive (WID ("program_select"), FALSE);
gtk_widget_set_sensitive (GTK_WIDGET (program_select), FALSE);
while (service_apps != NULL) {
app = service_apps->data;
@ -407,19 +407,13 @@ populate_app_list (ServiceEditDialog *dialog)
item = gtk_menu_item_new_with_label (_("Custom"));
gtk_widget_show (item);
gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
if (found_idx < 0)
found_idx = i;
if (found_idx < 0) {
if (dialog->p->info->app != NULL) {
if (dialog->p->info->app->command != NULL)
gnome_file_entry_set_filename (GNOME_FILE_ENTRY (WID ("custom_program_entry")),
dialog->p->info->app->command);
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (WID ("needs_terminal_toggle")),
dialog->p->info->app->requires_terminal);
}
}
gtk_option_menu_set_menu (option_menu, GTK_WIDGET (menu));
gtk_option_menu_set_menu (program_select, GTK_WIDGET (menu));
gtk_option_menu_set_history (program_select, found_idx);
/* fire it again just in case we had selected the 1st element */
program_changed_cb (dialog, program_select);
}
static void
@ -557,6 +551,8 @@ program_changed_cb (ServiceEditDialog *dialog, GtkOptionMenu *option_menu)
{
int id;
GtkMenuShell *menu;
GnomeVFSMimeApplication *app;
GList *child;
menu = GTK_MENU_SHELL (gtk_option_menu_get_menu (option_menu));
id = gtk_option_menu_get_history (option_menu);
@ -568,6 +564,19 @@ program_changed_cb (ServiceEditDialog *dialog, GtkOptionMenu *option_menu)
gtk_widget_set_sensitive (WID ("program_entry_box"), FALSE);
gtk_widget_set_sensitive (WID ("needs_terminal_toggle"), FALSE);
}
child = g_list_nth (menu->children, id);
g_return_if_fail (child != NULL);
app = g_object_get_data (G_OBJECT (child->data), "app");
if (app == NULL)
app = dialog->p->info->app;
if (app->command != NULL)
gnome_file_entry_set_filename (GNOME_FILE_ENTRY (WID ("custom_program_entry")),
app->command);
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (WID ("needs_terminal_toggle")),
app->requires_terminal);
}
static void

View file

@ -292,17 +292,17 @@ get_key_name (const ServiceInfo *info, const gchar *end)
static void
fill_service_apps (void)
{
GList *apps, *tmp, *tmp1;
GList *app_list, *app, *tmp1;
const gchar *uri_schemes_str;
gchar **uri_schemes;
int i;
if (service_apps == NULL)
service_apps = g_hash_table_new (g_str_hash, g_str_equal);
service_apps = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
apps = gnome_vfs_application_registry_get_applications (NULL);
for (tmp = apps; tmp != NULL; tmp = tmp->next) {
uri_schemes_str = gnome_vfs_application_registry_peek_value (tmp->data, "supported_uri_schemes");
app_list = gnome_vfs_application_registry_get_applications (NULL);
for (app = app_list; app != NULL; app = app->next) {
uri_schemes_str = gnome_vfs_application_registry_peek_value (app->data, "supported_uri_schemes");
if (uri_schemes_str == NULL)
continue;
@ -312,16 +312,15 @@ fill_service_apps (void)
for (i = 0; uri_schemes[i] != NULL; i++) {
tmp1 = g_hash_table_lookup (service_apps, uri_schemes[i]);
tmp1 = g_list_prepend (tmp1, gnome_vfs_application_registry_get_mime_application (tmp->data));
g_hash_table_remove (service_apps, uri_schemes[i]);
g_hash_table_insert (service_apps, uri_schemes[i], tmp1);
tmp1 = g_list_prepend (tmp1, gnome_vfs_application_registry_get_mime_application (app->data));
g_hash_table_replace (service_apps, g_strdup (uri_schemes[i]), tmp1);
}
g_strfreev (uri_schemes);
}
g_list_foreach (apps, (GFunc) g_free, NULL);
g_list_free (apps);
g_list_foreach (app_list, (GFunc) g_free, NULL);
g_list_free (app_list);
}
static void