+ GtkCalExViewMonthPrivate *priv = GTK_CALEX_VIEW_MONTH_GET_PRIVATE (gtk_calex_view_month);
+
+ priv->date = date;
+
+ gtk_calex_view_month_draw (gtk_calex_view_month);
+
+ return GTK_WIDGET (gtk_calex_view_month);
+}
+
+static GDate
+*gtk_calex_view_month_get_date (GtkCalExViewMonth *view_month)
+{
+ g_return_val_if_fail (GTK_CALEX_IS_VIEW_MONTH (view_month), NULL);
+
+ GtkCalExViewMonthPrivate *priv = GTK_CALEX_VIEW_MONTH_GET_PRIVATE (view_month);
+
+ return g_memdup (priv->date, sizeof (GDate));
+}
+
+static void
+gtk_calex_view_month_set_date (GtkCalExViewMonth *view_month, GDate *date)
+{
+ g_return_if_fail (GTK_CALEX_IS_VIEW_MONTH (view_month));
+
+ GtkCalExViewMonthPrivate *priv = GTK_CALEX_VIEW_MONTH_GET_PRIVATE (view_month);
+
+ priv->date = g_memdup (date, sizeof (GDate));
+
+ gtk_calex_view_month_draw (view_month);
+}
+
+static void
+gtk_calex_view_month_draw (GtkCalExViewMonth *gtk_calex_view_month)
+{
+ GtkAllocation allocation;
+
+ GDateWeekday wday;
+ GDate *day;
+ GDate *ending_day;
+
+ guint i;
+ guint days;
+ guint8 days_month;
+
+ gchar *str_day;
+
+ gdouble width;
+ gdouble height;
+ gdouble x;
+ gdouble y;
+
+ g_return_if_fail (GTK_CALEX_IS_VIEW_MONTH (gtk_calex_view_month));
+
+ GtkCalExViewMonthPrivate *priv = GTK_CALEX_VIEW_MONTH_GET_PRIVATE (gtk_calex_view_month);
+
+ gtk_calex_view_month_clean_canvas (gtk_calex_view_month);
+
+ gtk_widget_get_allocation (priv->goo_canvas, &allocation);
+
+ width = allocation.width / 6;
+
+ /* starting day */
+ day = g_date_new_dmy (1,
+ (GDateMonth)priv->date->month,
+ (GDateYear)priv->date->year);
+ wday = g_date_get_weekday (day);
+ g_date_subtract_days (day, wday);
+
+ /* ending day */
+ days_month = g_date_get_days_in_month ((GDateMonth)priv->date->month,
+ (GDateYear)priv->date->year);
+ ending_day = g_date_new_dmy ((GDateDay)days_month,
+ (GDateMonth)priv->date->month,
+ (GDateYear)priv->date->year);
+ wday = g_date_get_weekday (ending_day);
+ g_date_add_days (ending_day, G_DATE_SUNDAY - wday);
+
+ days = g_date_days_between (day, ending_day);
+
+ height = allocation.height / (days / 7);
+
+ y = -height;
+ for (i = 0; i < days; i++)
+ {
+ g_date_add_days (day, 1);
+ wday = g_date_get_weekday (day);
+
+ if (wday == G_DATE_MONDAY)
+ {
+ x = 0;
+ if (i == 0)
+ {
+ y += height;
+ }
+ else
+ {
+ y += (height / 2);
+ }
+ }
+
+ if (wday == G_DATE_SATURDAY)
+ {
+ height /= 2;
+ }
+
+ goo_canvas_rect_new (priv->goo_canvas_root,
+ x, y, width, height,
+ "line-width", 1.0,
+ "stroke-color", "black",
+ "fill-color", "yellow",
+ NULL);
+ goo_canvas_text_new (priv->goo_canvas_root, g_strdup_printf ("%02d", g_date_get_day (day)),
+ x, y, width,
+ GTK_ANCHOR_NORTH_WEST,
+ "font", "Sans 12",
+ NULL);
+
+ if (wday != G_DATE_SATURDAY)
+ {
+ x += width;
+ }
+ else
+ {
+ y += height;
+ }
+ if (wday == G_DATE_SUNDAY)
+ {
+ height *= 2;
+ }
+ }
+
+ goo_canvas_set_bounds (GOO_CANVAS (priv->goo_canvas), 0, 0, allocation.width, allocation.height);
+}
+
+static void
+gtk_calex_view_month_size_request (GtkWidget *widget,
+ GtkRequisition *requisition)
+{
+ GtkCalExViewMonth *gtkcalexvd;
+ GtkBin *bin;
+ GtkRequisition child_requisition;
+
+ guint border_width;
+
+ g_return_if_fail (GTK_CALEX_IS_VIEW_MONTH (widget));
+ g_return_if_fail (requisition != NULL);
+
+ gtkcalexvd = GTK_CALEX_VIEW_MONTH (widget);
+ bin = GTK_BIN (gtkcalexvd);
+
+ requisition->width = 0;
+ requisition->height = 0;
+
+ if (bin->child && GTK_WIDGET_VISIBLE (bin->child))
+ {
+ gtk_widget_size_request (bin->child, &child_requisition);
+ requisition->width += child_requisition.width;
+ requisition->height += child_requisition.height;
+ }
+
+ border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
+ requisition->width += border_width * 2;
+ requisition->height += border_width * 2;
+}
+
+static void
+gtk_calex_view_month_size_allocate (GtkWidget *widget,
+ GtkAllocation *allocation)
+{
+ GtkCalExViewMonth *gtkcalexvd;
+ GtkCalExViewMonthPrivate *priv;
+ GtkBin *bin;
+ GtkAllocation relative_allocation;
+ GtkAllocation child_allocation;
+
+ guint border_width;
+
+ g_return_if_fail (GTK_CALEX_IS_VIEW_MONTH (widget));
+ g_return_if_fail (allocation != NULL);
+
+ gtkcalexvd = GTK_CALEX_VIEW_MONTH (widget);
+ bin = GTK_BIN (gtkcalexvd);
+
+ priv = GTK_CALEX_VIEW_MONTH_GET_PRIVATE (gtkcalexvd);
+
+ gtk_widget_set_allocation (widget, allocation);
+
+ border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
+ relative_allocation.x = border_width;
+ relative_allocation.y = border_width;
+ relative_allocation.width = MAX (1, (gint)widget->allocation.width - relative_allocation.x * 2);
+ relative_allocation.height = MAX (1, (gint)widget->allocation.height - relative_allocation.y * 2);
+
+ if (bin->child && GTK_WIDGET_VISIBLE (bin->child))
+ {
+ child_allocation.x = relative_allocation.x + allocation->x;
+ child_allocation.y = relative_allocation.y + allocation->y;
+ child_allocation.width = relative_allocation.width;
+ child_allocation.height = relative_allocation.height;
+ gtk_widget_size_allocate (bin->child, &child_allocation);
+ }
+
+ gtk_calex_view_month_draw (gtkcalexvd);
+}
+
+static void
+gtk_calex_view_month_clean_canvas (GtkCalExViewMonth *view_month)
+{
+ gint children;
+ gint i;
+
+ g_return_if_fail (GTK_CALEX_IS_VIEW_MONTH (view_month));
+
+ GtkCalExViewMonthPrivate *priv = GTK_CALEX_VIEW_MONTH_GET_PRIVATE (view_month);
+
+ children = goo_canvas_item_get_n_children (priv->goo_canvas_root);
+ for (i = children - 1; i >= 0; i--)
+ {
+ goo_canvas_item_remove (goo_canvas_item_get_child (priv->goo_canvas_root, i));
+ }