aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/gnome-cal.c
diff options
context:
space:
mode:
authorHans Petter Jansson <hpj@ximian.com>2003-10-10 13:29:36 +0800
committerHans Petter <hansp@src.gnome.org>2003-10-10 13:29:36 +0800
commit907f7999167285dcb8bb680d93da09eab94d794c (patch)
tree2ba2d97798520128ffb1f264e6a28351de9a867f /calendar/gui/gnome-cal.c
parent6cccb0c60fca242f9c34f161abede3515986e23e (diff)
downloadgsoc2013-evolution-907f7999167285dcb8bb680d93da09eab94d794c.tar
gsoc2013-evolution-907f7999167285dcb8bb680d93da09eab94d794c.tar.gz
gsoc2013-evolution-907f7999167285dcb8bb680d93da09eab94d794c.tar.bz2
gsoc2013-evolution-907f7999167285dcb8bb680d93da09eab94d794c.tar.lz
gsoc2013-evolution-907f7999167285dcb8bb680d93da09eab94d794c.tar.xz
gsoc2013-evolution-907f7999167285dcb8bb680d93da09eab94d794c.tar.zst
gsoc2013-evolution-907f7999167285dcb8bb680d93da09eab94d794c.zip
Add e-cal-list-view.etspec. (libevolution_calendar_la_SOURCES): Add
2003-10-10 Hans Petter Jansson <hpj@ximian.com> * calendar/gui/Makefile.am (etspec_DATA): Add e-cal-list-view.etspec. (libevolution_calendar_la_SOURCES): Add e-cal-list-view.[ch]. * calendar/gui/calendar-commands.c (show_list_view_clicked): Implement. (calendar_get_text_for_folder_bar_label): Add case for list view. Use month case and tweak it so it doesn't show "%d - %d" if the time span contains only one day. (verbs): Add list view. (pixmaps): Add list view. * calendar/gui/calendar-view-factory.c (calendar_view_factory_get_title): Add list view case. (calendar_view_factory_get_type_code): Add list view case. * calendar/gui/control-factory.c (get_prop): Add list view case. * calendar/gui/e-cal-model.c (get_classification): Fix to conform to updated libical. (ecm_set_value_at): Add missing break statements. (ecm_get_color_for_component): Add braces for clarity. * calendar/gui/gnome-cal.c (gnome_calendar_get_current_view_widget): Add list view case. (get_focus_location): Add list view case. (connect_list_view_focus): Implement. (setup_widgets): Set up list view. (gnome_calendar_direction): Add list view case. (set_view): Add list view case. (gnome_calendar_setup_view_menus): Add list view factory. (gnome_calendar_construct): Account for list view. (gnome_calendar_update_config_settings): Account for list view. (get_days_shown): Implement list view case. * calendar/gui/gnome-cal.h (GnomeCalendarViewType): Add list view. * calendar/gui/e-cal-list-view.[ch]: Implement ECalListView, subclassing ECalView. * ui/evolution-calendar.xml: Add calendar list view task button. * art/listview.xpm: Add calendar list view icon. svn path=/trunk/; revision=22850
Diffstat (limited to 'calendar/gui/gnome-cal.c')
-rw-r--r--calendar/gui/gnome-cal.c65
1 files changed, 62 insertions, 3 deletions
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c
index 3ae8f4bde8..c2a0c2c61e 100644
--- a/calendar/gui/gnome-cal.c
+++ b/calendar/gui/gnome-cal.c
@@ -48,6 +48,7 @@
#include "e-day-view.h"
#include "e-day-view-time-item.h"
#include "e-week-view.h"
+#include "e-cal-list-view.h"
#include "evolution-calendar.h"
#include "gnome-cal.h"
#include "calendar-component.h"
@@ -108,6 +109,7 @@ struct _GnomeCalendarPrivate {
GtkWidget *work_week_view;
GtkWidget *week_view;
GtkWidget *month_view;
+ GtkWidget *list_view;
/* Calendar query for the date navigator */
GList *dn_queries; /* list of CalQueries */
@@ -452,7 +454,7 @@ dn_query_eval_error_cb (CalQuery *query, const char *error_str, gpointer data)
fprintf (stderr, "eval error: %s\n", error_str);
}
-/* Returns the current view widget, a EDayView or EWeekView. */
+/* Returns the current view widget, an EDayView, EWeekView or ECalListView. */
GtkWidget*
gnome_calendar_get_current_view_widget (GnomeCalendar *gcal)
{
@@ -474,6 +476,9 @@ gnome_calendar_get_current_view_widget (GnomeCalendar *gcal)
case GNOME_CAL_MONTH_VIEW:
retval = priv->month_view;
break;
+ case GNOME_CAL_LIST_VIEW:
+ retval = priv->list_view;
+ break;
default:
g_assert_not_reached ();
}
@@ -500,6 +505,7 @@ get_focus_location (GnomeCalendar *gcal)
GtkWidget *widget;
EDayView *dv;
EWeekView *wv;
+ ECalListView *lv;
widget = gnome_calendar_get_current_view_widget (gcal);
@@ -523,6 +529,14 @@ get_focus_location (GnomeCalendar *gcal)
else
return FOCUS_OTHER;
+ case GNOME_CAL_LIST_VIEW:
+ lv = E_CAL_LIST_VIEW (widget);
+
+ if (GTK_WIDGET_HAS_FOCUS (e_table_scrolled_get_table (lv->table_scrolled)))
+ return FOCUS_CALENDAR;
+ else
+ return FOCUS_OTHER;
+
default:
g_assert_not_reached ();
return FOCUS_OTHER;
@@ -808,6 +822,15 @@ connect_week_view_focus (GnomeCalendar *gcal, EWeekView *wv)
G_CALLBACK (calendar_focus_change_cb), gcal);
}
+static void
+connect_list_view_focus (GnomeCalendar *gcal, ECalListView *lv)
+{
+ g_signal_connect (lv, "focus_in_event",
+ G_CALLBACK (calendar_focus_change_cb), gcal);
+ g_signal_connect (lv, "focus_out_event",
+ G_CALLBACK (calendar_focus_change_cb), gcal);
+}
+
/* Callback used when the selection in the taskpad table changes. We just proxy
* the signal with our own one.
*/
@@ -953,14 +976,26 @@ setup_widgets (GnomeCalendar *gcal)
connect_week_view_focus (gcal, E_WEEK_VIEW (priv->month_view));
+ /* The List View. */
+ filename = g_strdup_printf ("%s/config/CalListView", evolution_dir);
+ priv->list_view = e_cal_list_view_new (filename);
+ g_free (filename);
+
+ e_cal_view_set_calendar (E_CAL_VIEW (priv->list_view), gcal);
+ gtk_widget_show (priv->list_view);
+ gtk_notebook_append_page (GTK_NOTEBOOK (priv->notebook),
+ priv->list_view, gtk_label_new (""));
+
+ connect_list_view_focus (gcal, E_CAL_LIST_VIEW (priv->list_view));
+
model = (ECalModel *) e_cal_model_calendar_new ();
e_cal_view_set_model (E_CAL_VIEW (priv->day_view), model);
e_cal_view_set_model (E_CAL_VIEW (priv->work_week_view), model);
e_cal_view_set_model (E_CAL_VIEW (priv->week_view), model);
e_cal_view_set_model (E_CAL_VIEW (priv->month_view), model);
+ e_cal_view_set_model (E_CAL_VIEW (priv->list_view), model);
g_object_unref (model);
-
gnome_calendar_update_config_settings (gcal, TRUE);
}
@@ -1265,6 +1300,8 @@ gnome_calendar_direction (GnomeCalendar *gcal, int direction)
priv->zone);
break;
+ case GNOME_CAL_LIST_VIEW:
+ g_warning ("Using month view time interval for list view.");
case GNOME_CAL_MONTH_VIEW:
start_time = time_add_month_with_zone (start_time, direction,
priv->zone);
@@ -1415,6 +1452,11 @@ set_view (GnomeCalendar *gcal, GnomeCalendarViewType view_type,
round_selection = TRUE;
break;
+ case GNOME_CAL_LIST_VIEW:
+ view_id = "List_View";
+ focus_widget = priv->list_view;
+ break;
+
default:
g_warning ("A penguin is loose!");
g_assert_not_reached ();
@@ -1550,6 +1592,10 @@ gnome_calendar_setup_view_menus (GnomeCalendar *gcal, BonoboUIComponent *uic)
gal_view_collection_add_factory (collection, GAL_VIEW_FACTORY (factory));
g_object_unref (factory);
+ factory = calendar_view_factory_new (GNOME_CAL_LIST_VIEW);
+ gal_view_collection_add_factory (collection, GAL_VIEW_FACTORY (factory));
+ g_object_unref (factory);
+
/* Load the collection and create the menus */
gal_view_collection_load (collection);
@@ -1965,7 +2011,7 @@ gnome_calendar_construct (GnomeCalendar *gcal)
/* Get the default view to show. */
view_type = calendar_config_get_default_view ();
- if (view_type < GNOME_CAL_DAY_VIEW || view_type > GNOME_CAL_MONTH_VIEW)
+ if (view_type < GNOME_CAL_DAY_VIEW || view_type > GNOME_CAL_LIST_VIEW)
view_type = GNOME_CAL_DAY_VIEW;
gnome_calendar_set_view (gcal, view_type, FALSE, FALSE);
@@ -2278,6 +2324,7 @@ gnome_calendar_update_config_settings (GnomeCalendar *gcal,
e_cal_view_set_timezone (E_CAL_VIEW (priv->work_week_view), priv->zone);
e_cal_view_set_timezone (E_CAL_VIEW (priv->week_view), priv->zone);
e_cal_view_set_timezone (E_CAL_VIEW (priv->month_view), priv->zone);
+ e_cal_view_set_timezone (E_CAL_VIEW (priv->list_view), priv->zone);
if (initializing) {
priv->hpane_pos = calendar_config_get_hpane_pos ();
@@ -2594,6 +2641,18 @@ get_days_shown (GnomeCalendar *gcal, GDate *start_date, gint *days_shown)
break;
+ case GNOME_CAL_LIST_VIEW:
+ if (!e_cal_list_view_get_range_shown (E_CAL_LIST_VIEW (priv->list_view),
+ start_date, days_shown)) {
+ /* No valid items in list */
+ time_to_gdate_with_zone (start_date, time (NULL), priv->zone);
+ *days_shown = 1;
+ }
+ else if (*days_shown < 1) {
+ *days_shown = 1;
+ }
+ break;
+
default:
g_assert_not_reached ();
}