diff options
author | Damon Chaplin <damon@ximian.com> | 2001-09-04 08:36:49 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2001-09-04 08:36:49 +0800 |
commit | b5660966bdf769a48a01efb003a9958d62b23140 (patch) | |
tree | 5c719303c3bffca8175259ca90ef361e9af85726 /calendar/gui/e-week-view.c | |
parent | 154129242bc071ca620311184fa94b62e2e6684d (diff) | |
download | gsoc2013-evolution-b5660966bdf769a48a01efb003a9958d62b23140.tar.gz gsoc2013-evolution-b5660966bdf769a48a01efb003a9958d62b23140.tar.zst gsoc2013-evolution-b5660966bdf769a48a01efb003a9958d62b23140.zip |
don't call calendar_config_check_timezone_set() now, since the startup
2001-09-03 Damon Chaplin <damon@ximian.com>
* gui/calendar-commands.c (calendar_control_activate):
* gui/tasks-control.c (tasks_control_activate): don't call
calendar_config_check_timezone_set() now, since the startup wizard
handles that.
* gui/e-tasks.c (e_tasks_class_init): changed selection_changed signal
to GTK_RUN_LAST. It has no reason to be GTK_RUN_FIRST.
* gui/gnome-cal.c:
* gui/e-week-view.c:
* gui/e-day-view.c: added "selection_changed" signal,
XX_delete_event() and XX_get_num_events_selected().
* gui/e-day-view-top-item.c (e_day_view_top_item_draw): fix the shadow
around the dates at the top - it was 1 pixel off.
* gui/calendar-commands.c: added sensitize_commands(), similar to in
tasks-control.c, so we only make Cut/Copy/Delete sensitive when an
event is selected. Also added delete_event_cmd().
* gui/dialogs/task-page.c (task_page_set_summary):
* gui/dialogs/event-page.c (event_page_set_summary): do nothing,
since the summary only gets changed on the main event/task page now.
Fixes bug #6939.
* gui/e-day-view.c (e_day_view_on_main_canvas_drag_data_received):
(e_day_view_on_top_canvas_drag_data_received): check that we are
dragging an event from the same EDayView. We currently don't support
DnD from other widgets.
(e_day_view_update_top_canvas_drag): only get the summary if we
actually have an event. Fixes bug #5162.
* gui/e-day-view.c (e_day_view_on_editing_stopped): if the text hasn't
changed we need to call e_day_view_update_event_label() to show the
times again if necessary. Fixes bug #1813.
* gui/dialogs/comp-editor.c (comp_editor_destroy): destroy the
CompEditorPage objects here rather than in close_dialog(), after the
widgets have been destroyed. We do this because the widgets have lots
of signal handlers connected with the CompEditorPage objects as the
signal data, so we want to ensure that the data pointer is always
valid. (Alternatively we could disconnect all the handlers when the
CompEditorPage objects are destroyed, or use connect_while_alive()).
Fixes bug #7543.
Note: there is still a small bug in that if you type in a time and
then hit 'Save and Close', the time won't be saved. I'm not sure
where this should be fixed - should the actions which close the
dialog grab the focus to the toplevel, so any widgets currently
being edited finish the edit and emit 'changed'?
* gui/dialogs/recurrence-page.c (append_exception): use
gtk_clist_set_row_data_full() so freeing is handled automatically by
the GtkClist. This helps avoid problems at destroy-time.
(exception_delete_cb): just call gtk_clist_remove() now. No need to
free the row data as GtkCList now handles it.
(recurrence_page_destroy): no need to free the data in the clist.
* gui/dialogs/alarm-page.c: ditto.
* gui/dialogs/meeting-page.c: ditto.
(etable_destroy_cb): save the ETable state in this new handler cb
rather than in the destroy method, since the widget will already be
destroyed by then.
svn path=/trunk/; revision=12575
Diffstat (limited to 'calendar/gui/e-week-view.c')
-rw-r--r-- | calendar/gui/e-week-view.c | 102 |
1 files changed, 80 insertions, 22 deletions
diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c index dfb03802b8..b9bc5199d1 100644 --- a/calendar/gui/e-week-view.c +++ b/calendar/gui/e-week-view.c @@ -80,6 +80,14 @@ #define E_WEEK_VIEW_LAYOUT_TIMEOUT 100 +/* Signal IDs */ +enum { + SELECTION_CHANGED, + LAST_SIGNAL +}; +static guint e_week_view_signals[LAST_SIGNAL] = { 0 }; + + static void e_week_view_class_init (EWeekViewClass *class); static void e_week_view_init (EWeekView *week_view); static void e_week_view_destroy (GtkObject *object); @@ -242,6 +250,16 @@ e_week_view_class_init (EWeekViewClass *class) object_class = (GtkObjectClass *) class; widget_class = (GtkWidgetClass *) class; + e_week_view_signals[SELECTION_CHANGED] = + gtk_signal_new ("selection_changed", + GTK_RUN_LAST, + object_class->type, + GTK_SIGNAL_OFFSET (EWeekViewClass, selection_changed), + gtk_marshal_NONE__NONE, + GTK_TYPE_NONE, 0); + + gtk_object_class_add_signals (object_class, e_week_view_signals, LAST_SIGNAL); + /* Method override */ object_class->destroy = e_week_view_destroy; @@ -255,6 +273,8 @@ e_week_view_class_init (EWeekViewClass *class) widget_class->expose_event = e_week_view_expose_event; widget_class->draw = e_week_view_draw; + class->selection_changed = NULL; + /* clipboard atom */ if (!clipboard_atom) clipboard_atom = gdk_atom_intern ("CLIPBOARD", FALSE); @@ -2982,6 +3002,9 @@ e_week_view_on_editing_started (EWeekView *week_view, e_week_view_reshape_event_span (week_view, event_num, span_num); } + + gtk_signal_emit (GTK_OBJECT (week_view), + e_week_view_signals[SELECTION_CHANGED]); } @@ -3021,23 +3044,27 @@ e_week_view_on_editing_stopped (EWeekView *week_view, gtk_object_get (GTK_OBJECT (span->text_item), "text", &text, NULL); + g_assert (text != NULL); /* Only update the summary if necessary. */ cal_component_get_summary (event->comp, &summary); - if (text && summary.value && !strcmp (text, summary.value)) { - g_free (text); + if (summary.value && !strcmp (text, summary.value)) { if (!e_week_view_is_one_day_event (week_view, event_num)) e_week_view_reshape_event_span (week_view, event_num, span_num); - return; + } else { + summary.value = text; + summary.altrep = NULL; + cal_component_set_summary (event->comp, &summary); + + if (!cal_client_update_object (week_view->client, event->comp)) + g_message ("e_week_view_on_editing_stopped(): Could not update the object!"); } - summary.value = text; - cal_component_set_summary (event->comp, &summary); g_free (text); - if (!cal_client_update_object (week_view->client, event->comp)) - g_message ("e_week_view_on_editing_stopped(): Could not update the object!"); + gtk_signal_emit (GTK_OBJECT (week_view), + e_week_view_signals[SELECTION_CHANGED]); } @@ -3191,11 +3218,8 @@ e_week_view_key_press (GtkWidget *widget, GdkEventKey *event) cal_component_set_categories (comp, week_view->default_category); - /* We add the event locally and start editing it. We don't send the - new event to the server until the edit is finished. - FIXME: If we get an obj-updated or obj-removed signal while editing - the event, and we have to do a re-layout, we may lose this new - event. */ + /* We add the event locally and start editing it. We don't send it + to the server until the user finishes editing it. */ e_week_view_add_event (comp, dtstart, dtend, week_view); e_week_view_check_layout (week_view); gtk_widget_queue_draw (week_view->main_canvas); @@ -3428,23 +3452,18 @@ e_week_view_on_delete_occurrence (GtkWidget *widget, gpointer data) static void -e_week_view_on_delete_appointment (GtkWidget *widget, gpointer data) +e_week_view_delete_event_internal (EWeekView *week_view, gint event_num) { - EWeekView *week_view; - EWeekViewEvent *event; CalComponentVType vtype; - - week_view = E_WEEK_VIEW (data); - - if (week_view->popup_event_num == -1) - return; + EWeekViewEvent *event; event = &g_array_index (week_view->events, EWeekViewEvent, - week_view->popup_event_num); + event_num); vtype = cal_component_get_vtype (event->comp); - if (delete_component_dialog (event->comp, 1, vtype, widget)) { + if (delete_component_dialog (event->comp, 1, vtype, + GTK_WIDGET (week_view))) { const char *uid; cal_component_get_uid (event->comp, &uid); @@ -3456,6 +3475,35 @@ e_week_view_on_delete_appointment (GtkWidget *widget, gpointer data) } } + +static void +e_week_view_on_delete_appointment (GtkWidget *widget, gpointer data) +{ + EWeekView *week_view; + + week_view = E_WEEK_VIEW (data); + + if (week_view->popup_event_num == -1) + return; + + e_week_view_delete_event_internal (week_view, + week_view->popup_event_num); +} + + +void +e_week_view_delete_event (EWeekView *week_view) +{ + g_return_if_fail (E_IS_WEEK_VIEW (week_view)); + + if (week_view->editing_event_num == -1) + return; + + e_week_view_delete_event_internal (week_view, + week_view->editing_event_num); +} + + static void e_week_view_on_cut (GtkWidget *widget, gpointer data) { @@ -3839,3 +3887,13 @@ e_week_view_layout_timeout_cb (gpointer data) week_view->layout_timeout_id = 0; return FALSE; } + + +/* Returns the number of selected events (0 or 1 at present). */ +gint +e_week_view_get_num_events_selected (EWeekView *week_view) +{ + g_return_val_if_fail (E_IS_WEEK_VIEW (week_view), 0); + + return (week_view->editing_event_num != -1) ? 1 : 0; +} |