diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/main.c | 20 | ||||
-rw-r--r-- | calendar/main.c | 20 |
3 files changed, 37 insertions, 8 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 760966a38e..d86a3a2958 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +1999-10-21 Russell Steinthal <rms39@columbia.edu> + + * main.c (open_ok): Show an error box if the user tries to open a + non-existent file; fixes bug #1818 + 1999-10-19 Russell Steinthal <rms39@columbia.edu> * gnome-cal.c (calendar_notify): Fix typos which were causing diff --git a/calendar/gui/main.c b/calendar/gui/main.c index 6689ca80cb..50f8941489 100644 --- a/calendar/gui/main.c +++ b/calendar/gui/main.c @@ -340,10 +340,22 @@ new_calendar_cmd (GtkWidget *widget, void *data) static void open_ok (GtkWidget *widget, GtkFileSelection *fs) { - /* FIXME: find out who owns this calendar and use that name */ - new_calendar ("Somebody", gtk_file_selection_get_filename (fs), NULL, NULL, FALSE); - - gtk_widget_destroy (GTK_WIDGET (fs)); + GtkWidget *error_dialog; + int ret; + if(!g_file_exists (gtk_file_selection_get_filename (fs))) { + error_dialog = gnome_message_box_new ( + _("File not found"), + GNOME_MESSAGE_BOX_ERROR, + GNOME_STOCK_BUTTON_OK, + NULL); + + gnome_dialog_set_parent (GNOME_DIALOG (error_dialog), GTK_WINDOW (fs)); + ret = gnome_dialog_run (GNOME_DIALOG (error_dialog)); + } else { + /* FIXME: find out who owns this calendar and use that name */ + new_calendar ("Somebody", gtk_file_selection_get_filename (fs), NULL, NULL, FALSE); + gtk_widget_destroy (GTK_WIDGET (fs)); + } } static void diff --git a/calendar/main.c b/calendar/main.c index 6689ca80cb..50f8941489 100644 --- a/calendar/main.c +++ b/calendar/main.c @@ -340,10 +340,22 @@ new_calendar_cmd (GtkWidget *widget, void *data) static void open_ok (GtkWidget *widget, GtkFileSelection *fs) { - /* FIXME: find out who owns this calendar and use that name */ - new_calendar ("Somebody", gtk_file_selection_get_filename (fs), NULL, NULL, FALSE); - - gtk_widget_destroy (GTK_WIDGET (fs)); + GtkWidget *error_dialog; + int ret; + if(!g_file_exists (gtk_file_selection_get_filename (fs))) { + error_dialog = gnome_message_box_new ( + _("File not found"), + GNOME_MESSAGE_BOX_ERROR, + GNOME_STOCK_BUTTON_OK, + NULL); + + gnome_dialog_set_parent (GNOME_DIALOG (error_dialog), GTK_WINDOW (fs)); + ret = gnome_dialog_run (GNOME_DIALOG (error_dialog)); + } else { + /* FIXME: find out who owns this calendar and use that name */ + new_calendar ("Somebody", gtk_file_selection_get_filename (fs), NULL, NULL, FALSE); + gtk_widget_destroy (GTK_WIDGET (fs)); + } } static void |