aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/goto.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@nuclecu.unam.mx>1998-10-02 07:47:01 +0800
committerArturo Espinosa <unammx@src.gnome.org>1998-10-02 07:47:01 +0800
commite9a632c3c15bac86946af5f6d75a79517b4c6a07 (patch)
tree76b462c8b3b8304c727788a314b8c65c46b284c7 /calendar/goto.c
parente94162c0a48defcaa3869dc9b82638170a62bab2 (diff)
downloadgsoc2013-evolution-e9a632c3c15bac86946af5f6d75a79517b4c6a07.tar
gsoc2013-evolution-e9a632c3c15bac86946af5f6d75a79517b4c6a07.tar.gz
gsoc2013-evolution-e9a632c3c15bac86946af5f6d75a79517b4c6a07.tar.bz2
gsoc2013-evolution-e9a632c3c15bac86946af5f6d75a79517b4c6a07.tar.lz
gsoc2013-evolution-e9a632c3c15bac86946af5f6d75a79517b4c6a07.tar.xz
gsoc2013-evolution-e9a632c3c15bac86946af5f6d75a79517b4c6a07.tar.zst
gsoc2013-evolution-e9a632c3c15bac86946af5f6d75a79517b4c6a07.zip
Use the font #defines. (month_view_new): Set the colors of the month view
1998-10-01 Federico Mena Quintero <federico@nuclecu.unam.mx> * month-view.c (month_view_init): Use the font #defines. (month_view_new): Set the colors of the month view upon creation. (mark_current_day): New function to mark the current day in the month view. (month_view_set): Mark the current day. (month_view_colors_changed): Mark the current day and colorify the month item appropriately. * month-view.h: Added year and month fields to the MonthView structure. * main.c: Renamed the Appointments color property, since it will be used by the month view as well. * goto.c (update): Set the current day's font and color. * year-view.c (year_view_init): Set the fonts of the month items when creating them. * mark.h: Added new #defines for HEADING_FONT and TITLE_FONT. * year-view.c (year_view_init): Use the new font #defines. * prop.c (prop_apply_colors): Fixed to work with the I-am-paranoid-and-I-need-to-size-my-ints changes to GnomeColorPicker. (color_spec_from_picker): Likewise. svn path=/trunk/; revision=424
Diffstat (limited to 'calendar/goto.c')
-rw-r--r--calendar/goto.c63
1 files changed, 47 insertions, 16 deletions
diff --git a/calendar/goto.c b/calendar/goto.c
index bbc489ddee..b645f02b6b 100644
--- a/calendar/goto.c
+++ b/calendar/goto.c
@@ -15,24 +15,55 @@
static GtkWidget *goto_win; /* The goto dialog window */
-static GnomeCanvasItem *month_item; /* The month item in the dialog */
+static GnomeMonthItem *month_item; /* The month item in the dialog */
static GnomeCalendar *gnome_calendar; /* The gnome calendar the dialog refers to */
+static int current_index; /* The index of the day marked as current, or -1 if none */
/* Updates the specified month item by marking it appropriately from the calendar the dialog refers
- * to. */
+ * to. Also marks the current day if appropriate.
+ */
static void
update (void)
{
- unmark_month_item (GNOME_MONTH_ITEM (month_item));
- mark_month_item (GNOME_MONTH_ITEM (month_item), gnome_calendar->cal);
+ GnomeCanvasItem *item;
+ time_t t;
+ struct tm *tm;
+
+ unmark_month_item (month_item);
+ mark_month_item (month_item, gnome_calendar->cal);
+
+ if (current_index != -1) {
+ item = gnome_month_item_num2child (month_item,
+ GNOME_MONTH_ITEM_DAY_LABEL + current_index);
+ gnome_canvas_item_set (item,
+ "fill_color", color_spec_from_prop (COLOR_PROP_DAY_FG),
+ "font", NORMAL_DAY_FONT,
+ NULL);
+ current_index = -1;
+ }
+
+ t = time (NULL);
+ tm = localtime (&t);
+
+ if (((tm->tm_year + 1900) == month_item->year) && (tm->tm_mon == month_item->month)) {
+ current_index = gnome_month_item_day2index (month_item, tm->tm_mday);
+ g_assert (current_index != -1);
+
+ item = gnome_month_item_num2child (month_item,
+ GNOME_MONTH_ITEM_DAY_LABEL + current_index);
+ gnome_canvas_item_set (item,
+ "fill_color", color_spec_from_prop (COLOR_PROP_CURRENT_DAY_FG),
+ "font", CURRENT_DAY_FONT,
+ NULL);
+ }
}
/* Callback used when the year adjustment is changed */
static void
year_changed (GtkAdjustment *adj, gpointer data)
{
- gnome_canvas_item_set (month_item,
+ gnome_canvas_item_set (GNOME_CANVAS_ITEM (month_item),
"year", (int) adj->value,
NULL);
update ();
@@ -72,7 +103,7 @@ month_toggled (GtkToggleButton *toggle, gpointer data)
if (!toggle->active)
return;
- gnome_canvas_item_set (month_item,
+ gnome_canvas_item_set (GNOME_CANVAS_ITEM (month_item),
"month", GPOINTER_TO_INT (data),
NULL);
update ();
@@ -130,7 +161,7 @@ create_months (int month)
static void
set_scroll_region (GtkWidget *widget, GtkAllocation *allocation)
{
- gnome_canvas_item_set (month_item,
+ gnome_canvas_item_set (GNOME_CANVAS_ITEM (month_item),
"width", (double) (allocation->width - 1),
"height", (double) (allocation->height - 1),
NULL);
@@ -148,15 +179,14 @@ day_event (GnomeCanvasItem *item, GdkEvent *event, gpointer data)
{
int child_num, day;
- child_num = gnome_month_item_child2num (GNOME_MONTH_ITEM (month_item), item);
- day = gnome_month_item_num2day (GNOME_MONTH_ITEM (month_item), child_num);
+ child_num = gnome_month_item_child2num (month_item, item);
+ day = gnome_month_item_num2day (month_item, child_num);
switch (event->type) {
case GDK_BUTTON_PRESS:
if ((event->button.button == 1) && (day != 0)) {
gnome_calendar_goto (gnome_calendar,
- time_from_day (GNOME_MONTH_ITEM (month_item)->year,
- GNOME_MONTH_ITEM (month_item)->month, day));
+ time_from_day (month_item->year, month_item->month, day));
gtk_widget_destroy (goto_win);
}
break;
@@ -179,14 +209,14 @@ create_days (int day, int month, int year)
canvas = gnome_canvas_new ();
gnome_canvas_set_size (GNOME_CANVAS (canvas), 150, 120);
- month_item = gnome_month_item_new (gnome_canvas_root (GNOME_CANVAS (canvas)));
- gnome_canvas_item_set (month_item,
+ month_item = GNOME_MONTH_ITEM (gnome_month_item_new (gnome_canvas_root (GNOME_CANVAS (canvas))));
+ gnome_canvas_item_set (GNOME_CANVAS_ITEM (month_item),
"month", month,
"year", year,
"start_on_monday", week_starts_on_monday,
NULL);
- colorify_month_item (GNOME_MONTH_ITEM (month_item), default_color_func, NULL);
- month_item_prepare_prelight (GNOME_MONTH_ITEM (month_item), default_color_func, NULL);
+ colorify_month_item (month_item, default_color_func, NULL);
+ month_item_prepare_prelight (month_item, default_color_func, NULL);
update ();
/* Connect to size_allocate so that we can change the size of the month item and the
@@ -200,7 +230,7 @@ create_days (int day, int month, int year)
/* Bind the day groups to our event handler */
for (i = 0; i < 42; i++) {
- day_group = gnome_month_item_num2child (GNOME_MONTH_ITEM (month_item), i + GNOME_MONTH_ITEM_DAY_GROUP);
+ day_group = gnome_month_item_num2child (month_item, i + GNOME_MONTH_ITEM_DAY_GROUP);
gtk_signal_connect (GTK_OBJECT (day_group), "event",
(GtkSignalFunc) day_event,
NULL);
@@ -227,6 +257,7 @@ goto_dialog (GnomeCalendar *gcal)
struct tm *tm;
gnome_calendar = gcal;
+ current_index = -1;
tm = localtime (&gnome_calendar->current_display);