2001-04-28 23:11:29 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995, 1996, 1997 Spencer Kimball and Peter Mattis
|
|
|
|
* Copyright (C) 1997 Josh MacDonald
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2001-10-17 19:33:43 +08:00
|
|
|
#include "gui-types.h"
|
2001-05-26 00:04:54 +08:00
|
|
|
|
2004-05-02 16:56:07 +08:00
|
|
|
#include "widgets/gimpactiongroup.h"
|
2001-04-28 23:11:29 +08:00
|
|
|
|
2001-12-01 08:14:14 +08:00
|
|
|
#include "file-dialog-utils.h"
|
2001-04-28 23:11:29 +08:00
|
|
|
|
2002-04-18 09:18:24 +08:00
|
|
|
|
2001-04-28 23:11:29 +08:00
|
|
|
void
|
2004-02-27 22:51:51 +08:00
|
|
|
file_dialog_show (GtkWidget *dialog,
|
2003-11-10 06:05:37 +08:00
|
|
|
GtkWidget *parent)
|
2001-04-28 23:11:29 +08:00
|
|
|
{
|
2004-05-02 16:56:07 +08:00
|
|
|
GList *list;
|
|
|
|
|
|
|
|
for (list = gimp_action_groups_from_name ("file");
|
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
GimpActionGroup *group = list->data;
|
|
|
|
|
|
|
|
gimp_action_group_set_action_sensitive (group, "file-save", FALSE);
|
|
|
|
gimp_action_group_set_action_sensitive (group, "file-save-as", FALSE);
|
|
|
|
gimp_action_group_set_action_sensitive (group, "file-save-a-copy", FALSE);
|
|
|
|
}
|
2001-04-28 23:11:29 +08:00
|
|
|
|
2004-02-28 06:25:37 +08:00
|
|
|
gtk_window_set_screen (GTK_WINDOW (dialog), gtk_widget_get_screen (parent));
|
2004-02-27 22:51:51 +08:00
|
|
|
gtk_window_present (GTK_WINDOW (dialog));
|
2001-04-28 23:11:29 +08:00
|
|
|
}
|
|
|
|
|
2004-02-27 04:40:20 +08:00
|
|
|
void
|
2004-02-27 22:51:51 +08:00
|
|
|
file_dialog_hide (GtkWidget *dialog)
|
2001-04-28 23:11:29 +08:00
|
|
|
{
|
2004-05-02 16:56:07 +08:00
|
|
|
GList *list;
|
|
|
|
|
2004-02-27 22:51:51 +08:00
|
|
|
gtk_widget_hide (dialog);
|
2003-11-10 06:05:37 +08:00
|
|
|
|
2004-05-02 16:56:07 +08:00
|
|
|
for (list = gimp_action_groups_from_name ("file");
|
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
GimpActionGroup *group = list->data;
|
|
|
|
|
|
|
|
gimp_action_group_set_action_sensitive (group, "file-save", TRUE);
|
|
|
|
gimp_action_group_set_action_sensitive (group, "file-save-as", TRUE);
|
|
|
|
gimp_action_group_set_action_sensitive (group, "file-save-a-copy", TRUE);
|
|
|
|
}
|
2001-04-28 23:11:29 +08:00
|
|
|
}
|