aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2001-01-23 09:54:42 +0800
committerJP Rosevear <jpr@src.gnome.org>2001-01-23 09:54:42 +0800
commitbbda4d56c31cd0b21edd5c198ac6da6bea2988ad (patch)
tree0a021aec83f04a90b2e00f65adbfc10cd4ce952e
parent7befb4dc1e76aea9bd54126d4e7fc0d47bf4a51c (diff)
downloadgsoc2013-evolution-bbda4d56c31cd0b21edd5c198ac6da6bea2988ad.tar
gsoc2013-evolution-bbda4d56c31cd0b21edd5c198ac6da6bea2988ad.tar.gz
gsoc2013-evolution-bbda4d56c31cd0b21edd5c198ac6da6bea2988ad.tar.bz2
gsoc2013-evolution-bbda4d56c31cd0b21edd5c198ac6da6bea2988ad.tar.lz
gsoc2013-evolution-bbda4d56c31cd0b21edd5c198ac6da6bea2988ad.tar.xz
gsoc2013-evolution-bbda4d56c31cd0b21edd5c198ac6da6bea2988ad.tar.zst
gsoc2013-evolution-bbda4d56c31cd0b21edd5c198ac6da6bea2988ad.zip
compile new stuff
2001-01-22 JP Rosevear <jpr@ximian.com> * gui/dialogs/Makefile.am: compile new stuff * gui/dialogs/task-editor.c (prompt_to_save_changes): use new standard dialog * gui/event-editor.c (prompt_to_save_changes): ditto * gui/dialogs/save-comp.h: new header * gui/dialogs/save-comp.c (save_component_dialog): shows the save dialog svn path=/trunk/; revision=7733
-rw-r--r--calendar/ChangeLog14
-rw-r--r--calendar/gui/dialogs/Makefile.am2
-rw-r--r--calendar/gui/dialogs/save-comp.c57
-rw-r--r--calendar/gui/dialogs/save-comp.h28
-rw-r--r--calendar/gui/dialogs/task-editor.c13
-rw-r--r--calendar/gui/event-editor.c13
-rw-r--r--po/POTFILES.in1
7 files changed, 106 insertions, 22 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 2aa9d54505..76f1f01b9c 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,19 @@
2001-01-22 JP Rosevear <jpr@ximian.com>
+ * gui/dialogs/Makefile.am: compile new stuff
+
+ * gui/dialogs/task-editor.c (prompt_to_save_changes): use new
+ standard dialog
+
+ * gui/event-editor.c (prompt_to_save_changes): ditto
+
+ * gui/dialogs/save-comp.h: new header
+
+ * gui/dialogs/save-comp.c (save_component_dialog): shows the save
+ dialog
+
+2001-01-22 JP Rosevear <jpr@ximian.com>
+
* conduits/todo/todo-conduit.c (for_each_modified): remove duplicate
message
diff --git a/calendar/gui/dialogs/Makefile.am b/calendar/gui/dialogs/Makefile.am
index 91720b596b..39ae32d758 100644
--- a/calendar/gui/dialogs/Makefile.am
+++ b/calendar/gui/dialogs/Makefile.am
@@ -21,6 +21,8 @@ libcal_dialogs_a_SOURCES = \
cal-prefs-dialog.h \
delete-comp.c \
delete-comp.h \
+ save-comp.c \
+ save-comp.h \
task-editor.c \
task-editor.h
diff --git a/calendar/gui/dialogs/save-comp.c b/calendar/gui/dialogs/save-comp.c
new file mode 100644
index 0000000000..b904e13ccf
--- /dev/null
+++ b/calendar/gui/dialogs/save-comp.c
@@ -0,0 +1,57 @@
+/* Evolution calendar - Delete calendar component dialog
+ *
+ * Copyright (C) 2000 Helix Code, Inc.
+ * Copyright (C) 2000 Ximian, Inc.
+ *
+ * Author: Federico Mena-Quintero <federico@ximian.com>
+ *
+ * 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.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <gnome.h>
+#include <gal/widgets/e-unicode.h>
+#include "save-comp.h"
+
+
+
+/**
+ * save_component_dialog:
+ * @widget:
+ *
+ *
+ *
+ * Return value:
+ **/
+gint
+save_component_dialog (GtkWindow *parent)
+{
+ GtkWidget *dialog;
+
+ dialog = gnome_message_box_new (_("Do you want to save changes?"),
+ GNOME_MESSAGE_BOX_QUESTION,
+ GNOME_STOCK_BUTTON_YES,
+ GNOME_STOCK_BUTTON_NO,
+ GNOME_STOCK_BUTTON_CANCEL,
+ NULL);
+
+ gnome_dialog_set_default (GNOME_DIALOG (dialog), 0);
+ gnome_dialog_set_parent (GNOME_DIALOG (dialog), parent);
+
+ return gnome_dialog_run_and_close (GNOME_DIALOG (dialog));
+}
diff --git a/calendar/gui/dialogs/save-comp.h b/calendar/gui/dialogs/save-comp.h
new file mode 100644
index 0000000000..2fb8e2c2a8
--- /dev/null
+++ b/calendar/gui/dialogs/save-comp.h
@@ -0,0 +1,28 @@
+/* Evolution calendar - Delete calendar component dialog
+ *
+ * Copyright (C) 2000 Helix Code, Inc.
+ * Copyright (C) 2000 Ximian, Inc.
+ *
+ * Author: Federico Mena-Quintero <federico@ximian.com>
+ *
+ * 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.
+ */
+
+#ifndef SAVE_COMP_H
+#define SAVE_COMP_H
+
+gint save_component_dialog (GtkWindow *parent);
+
+#endif
diff --git a/calendar/gui/dialogs/task-editor.c b/calendar/gui/dialogs/task-editor.c
index 74849a66d4..f58a9fbdb6 100644
--- a/calendar/gui/dialogs/task-editor.c
+++ b/calendar/gui/dialogs/task-editor.c
@@ -38,6 +38,7 @@
#include <widgets/misc/e-dateedit.h>
#include <cal-util/timeutil.h>
#include "delete-comp.h"
+#include "save-comp.h"
#include "task-editor.h"
#include "../calendar-config.h"
#include "../widget-util.h"
@@ -1294,17 +1295,7 @@ prompt_to_save_changes (TaskEditor *tedit)
if (!priv->changed)
return TRUE;
- dialog = gnome_message_box_new (_("Do you want to save changes?"),
- GNOME_MESSAGE_BOX_QUESTION,
- GNOME_STOCK_BUTTON_YES,
- GNOME_STOCK_BUTTON_NO,
- GNOME_STOCK_BUTTON_CANCEL,
- NULL);
-
- gnome_dialog_set_parent (GNOME_DIALOG (dialog),
- GTK_WINDOW (priv->app));
-
- switch (gnome_dialog_run_and_close (GNOME_DIALOG (dialog))) {
+ switch (save_component_dialog (GTK_WINDOW (priv->app))) {
case 0: /* Save */
/* FIXME: If an error occurs here, we should popup a dialog
and then return FALSE. */
diff --git a/calendar/gui/event-editor.c b/calendar/gui/event-editor.c
index 8b7e04c1c7..46ed3d0051 100644
--- a/calendar/gui/event-editor.c
+++ b/calendar/gui/event-editor.c
@@ -33,6 +33,7 @@
#include <gal/widgets/e-categories.h>
#include <cal-util/timeutil.h>
#include "dialogs/delete-comp.h"
+#include "dialogs/save-comp.h"
#include "calendar-config.h"
#include "event-editor.h"
#include "e-meeting-edit.h"
@@ -3265,17 +3266,7 @@ prompt_to_save_changes (EventEditor *ee)
if (!priv->changed)
return TRUE;
- dialog = gnome_message_box_new (_("Do you want to save changes?"),
- GNOME_MESSAGE_BOX_QUESTION,
- GNOME_STOCK_BUTTON_YES,
- GNOME_STOCK_BUTTON_NO,
- GNOME_STOCK_BUTTON_CANCEL,
- NULL);
-
- gnome_dialog_set_parent (GNOME_DIALOG (dialog),
- GTK_WINDOW (priv->app));
-
- switch (gnome_dialog_run_and_close (GNOME_DIALOG (dialog))) {
+ switch (save_component_dialog (GTK_WINDOW (priv->app))) {
case 0: /* Save */
/* FIXME: If an error occurs here, we should popup a dialog
and then return FALSE. */
diff --git a/po/POTFILES.in b/po/POTFILES.in
index f0e74597ae..da83f5c80d 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -48,6 +48,7 @@ calendar/gui/dialogs/alarm-notify-dialog.c
calendar/gui/dialogs/alarm-notify.glade
calendar/gui/dialogs/cal-prefs-dialog.glade
calendar/gui/dialogs/delete-comp.c
+calendar/gui/dialogs/save-comp.c
calendar/gui/dialogs/task-editor-dialog.glade
calendar/gui/dialogs/task-editor.c
calendar/gui/e-calendar-table.c