aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-weekday-chooser.c
blob: ef459e574d7ff598529420cae045b6edf99fc4e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
/*
 * e-weekday-chooser.c
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with the program; if not, see <http://www.gnu.org/licenses/>
 *
 */

#include "e-weekday-chooser.h"

#include <config.h>
#include <string.h>

#include <gtk/gtk.h>
#include <glib/gi18n-lib.h>
#include <gdk/gdkkeysyms.h>

#include <libgnomecanvas/libgnomecanvas.h>
#include <e-util/e-util.h>

#define PADDING 2

#define E_WEEKDAY_CHOOSER_GET_PRIVATE(obj) \
    (G_TYPE_INSTANCE_GET_PRIVATE \
    ((obj), E_TYPE_WEEKDAY_CHOOSER, EWeekdayChooserPrivate))

/* Private part of the EWeekdayChooser structure */
struct _EWeekdayChooserPrivate {
    gboolean blocked_weekdays[8];   /* indexed by GDateWeekday */
    gboolean selected_weekdays[8];  /* indexed by GDateWeekday */

    /* Day that defines the start of the week. */
    GDateWeekday week_start_day;

    /* Current keyboard focus day */
    GDateWeekday focus_day;

    /* Metrics */
    gint font_ascent, font_descent;
    gint max_letter_width;

    /* Components */
    GnomeCanvasItem *boxes[7];
    GnomeCanvasItem *labels[7];
};

enum {
    PROP_0,
    PROP_WEEK_START_DAY
};

enum {
    CHANGED,
    LAST_SIGNAL
};

static guint chooser_signals[LAST_SIGNAL];

G_DEFINE_TYPE_WITH_CODE (
    EWeekdayChooser,
    e_weekday_chooser,
    GNOME_TYPE_CANVAS,
    G_IMPLEMENT_INTERFACE (
        E_TYPE_EXTENSIBLE, NULL))

static void
colorize_items (EWeekdayChooser *chooser)
{
    GdkColor *outline, *focus_outline;
    GdkColor *fill, *sel_fill;
    GdkColor *text_fill, *sel_text_fill;
    GtkStateType state;
    GtkStyle *style;
    GDateWeekday weekday;
    gint ii;

    state = gtk_widget_get_state (GTK_WIDGET (chooser));
    style = gtk_widget_get_style (GTK_WIDGET (chooser));

    outline = &style->fg[state];
    focus_outline = &style->bg[state];

    fill = &style->base[state];
    text_fill = &style->fg[state];

    sel_fill = &style->bg[GTK_STATE_SELECTED];
    sel_text_fill = &style->fg[GTK_STATE_SELECTED];

    weekday = e_weekday_chooser_get_week_start_day (chooser);

    for (ii = 0; ii < 7; ii++) {
        GdkColor *f, *t, *o;

        if (chooser->priv->selected_weekdays[weekday]) {
            f = sel_fill;
            t = sel_text_fill;
        } else {
            f = fill;
            t = text_fill;
        }

        if (weekday == chooser->priv->focus_day)
            o = focus_outline;
        else
            o = outline;

        gnome_canvas_item_set (
            chooser->priv->boxes[ii],
            "fill_color_gdk", f,
            "outline_color_gdk", o,
            NULL);

        gnome_canvas_item_set (
            chooser->priv->labels[ii],
            "fill_color_gdk", t,
            NULL);

        weekday = e_weekday_get_next (weekday);
    }
}

static void
configure_items (EWeekdayChooser *chooser)
{
    GtkAllocation allocation;
    gint width, height;
    gint box_width;
    GDateWeekday weekday;
    gint ii;

    gtk_widget_get_allocation (GTK_WIDGET (chooser), &allocation);

    width = allocation.width;
    height = allocation.height;

    box_width = (width - 1) / 7;

    weekday = e_weekday_chooser_get_week_start_day (chooser);

    for (ii = 0; ii < 7; ii++) {
        gnome_canvas_item_set (
            chooser->priv->boxes[ii],
            "x1", (gdouble) (ii * box_width),
            "y1", (gdouble) 0,
            "x2", (gdouble) ((ii + 1) * box_width),
            "y2", (gdouble) (height - 1),
            "line_width", 0.0,
            NULL);

        gnome_canvas_item_set (
            chooser->priv->labels[ii],
            "text", e_get_weekday_name (weekday, TRUE),
            "x", (gdouble) (ii * box_width) + PADDING,
            "y", (gdouble) (1 + PADDING),
            NULL);

        weekday = e_weekday_get_next (weekday);
    }

    colorize_items (chooser);
}

static void
weekday_chooser_set_property (GObject *object,
                              guint property_id,
                              const GValue *value,
                              GParamSpec *pspec)
{
    switch (property_id) {
        case PROP_WEEK_START_DAY:
            e_weekday_chooser_set_week_start_day (
                E_WEEKDAY_CHOOSER (object),
                g_value_get_enum (value));
            return;
    }

    G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}

static void
weekday_chooser_get_property (GObject *object,
                              guint property_id,
                              GValue *value,
                              GParamSpec *pspec)
{
    switch (property_id) {
        case PROP_WEEK_START_DAY:
            g_value_set_enum (
                value,
                e_weekday_chooser_get_week_start_day (
                E_WEEKDAY_CHOOSER (object)));
            return;
    }

    G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}

static void
weekday_chooser_constructed (GObject *object)
{
    /* Chain up to parent's constructed() method. */
    G_OBJECT_CLASS (e_weekday_chooser_parent_class)->constructed (object);

    e_extensible_load_extensions (E_EXTENSIBLE (object));
}

static void
weekday_chooser_realize (GtkWidget *widget)
{
    EWeekdayChooser *chooser;

    chooser = E_WEEKDAY_CHOOSER (widget);

    /* Chain up to parent's realize() method. */
    GTK_WIDGET_CLASS (e_weekday_chooser_parent_class)->realize (widget);

    configure_items (chooser);
}

static void
weekday_chooser_size_allocate (GtkWidget *widget,
                               GtkAllocation *allocation)
{
    GtkWidgetClass *widget_class;
    EWeekdayChooser *chooser;

    chooser = E_WEEKDAY_CHOOSER (widget);

    /* Chain up to parent's size_allocate() method. */
    widget_class = GTK_WIDGET_CLASS (e_weekday_chooser_parent_class);
    widget_class->size_allocate (widget, allocation);

    gnome_canvas_set_scroll_region (
        GNOME_CANVAS (chooser), 0, 0,
        allocation->width, allocation->height);

    configure_items (chooser);
}

static void
weekday_chooser_style_set (GtkWidget *widget,
                           GtkStyle *previous_style)
{
    GtkWidgetClass *widget_class;
    EWeekdayChooser *chooser;
    EWeekdayChooserPrivate *priv;
    gint max_width;
    PangoFontDescription *font_desc;
    PangoContext *pango_context;
    PangoFontMetrics *font_metrics;
    PangoLayout *layout;
    GDateWeekday weekday;

    chooser = E_WEEKDAY_CHOOSER (widget);
    priv = chooser->priv;

    /* Set up Pango prerequisites */
    font_desc = gtk_widget_get_style (widget)->font_desc;
    pango_context = gtk_widget_get_pango_context (widget);
    font_metrics = pango_context_get_metrics (
        pango_context, font_desc,
        pango_context_get_language (pango_context));
    layout = pango_layout_new (pango_context);

    priv->font_ascent =
        PANGO_PIXELS (pango_font_metrics_get_ascent (font_metrics));
    priv->font_descent =
        PANGO_PIXELS (pango_font_metrics_get_descent (font_metrics));

    max_width = 0;

    for (weekday = G_DATE_MONDAY; weekday <= G_DATE_SUNDAY; weekday++) {
        const gchar *name;
        gint w;

        name = e_get_weekday_name (weekday, TRUE);
        pango_layout_set_text (layout, name, strlen (name));
        pango_layout_get_pixel_size (layout, &w, NULL);

        if (w > max_width)
            max_width = w;
    }

    priv->max_letter_width = max_width;

    configure_items (chooser);
    g_object_unref (layout);
    pango_font_metrics_unref (font_metrics);

    /* Chain up to parent's style_set() method. */
    widget_class = GTK_WIDGET_CLASS (e_weekday_chooser_parent_class);
    widget_class->style_set (widget, previous_style);
}

static void
weekday_chooser_get_preferred_height (GtkWidget *widget,
                                      gint *minimum_height,
                                      gint *natural_height)
{
    EWeekdayChooser *chooser;
    EWeekdayChooserPrivate *priv;

    chooser = E_WEEKDAY_CHOOSER (widget);
    priv = chooser->priv;

    *minimum_height = *natural_height =
        (priv->font_ascent + priv->font_descent + 2 * PADDING + 2);
}

static void
weekday_chooser_get_preferred_width (GtkWidget *widget,
                                     gint *minimum_width,
                                     gint *natural_width)
{
    EWeekdayChooser *chooser;
    EWeekdayChooserPrivate *priv;

    chooser = E_WEEKDAY_CHOOSER (widget);
    priv = chooser->priv;

    *minimum_width = *natural_width =
        (priv->max_letter_width + 2 * PADDING + 1) * 7 + 1;
}

static gboolean
weekday_chooser_focus (GtkWidget *widget,
                       GtkDirectionType direction)
{
    EWeekdayChooser *chooser;

    chooser = E_WEEKDAY_CHOOSER (widget);

    if (!gtk_widget_get_can_focus (widget))
        return FALSE;

    if (gtk_widget_has_focus (widget)) {
        chooser->priv->focus_day = G_DATE_BAD_WEEKDAY;
        colorize_items (chooser);
        return FALSE;
    }

    chooser->priv->focus_day = chooser->priv->week_start_day;
    gnome_canvas_item_grab_focus (chooser->priv->boxes[0]);

    colorize_items (chooser);

    return TRUE;
}

static void
e_weekday_chooser_class_init (EWeekdayChooserClass *class)
{
    GObjectClass *object_class;
    GtkWidgetClass *widget_class;

    g_type_class_add_private (class, sizeof (EWeekdayChooserPrivate));

    object_class = G_OBJECT_CLASS (class);
    object_class->set_property = weekday_chooser_set_property;
    object_class->get_property = weekday_chooser_get_property;
    object_class->constructed = weekday_chooser_constructed;

    widget_class = GTK_WIDGET_CLASS (class);
    widget_class->realize = weekday_chooser_realize;
    widget_class->size_allocate = weekday_chooser_size_allocate;
    widget_class->style_set = weekday_chooser_style_set;
    widget_class->get_preferred_height = weekday_chooser_get_preferred_height;
    widget_class->get_preferred_width = weekday_chooser_get_preferred_width;
    widget_class->focus = weekday_chooser_focus;

    g_object_class_install_property (
        object_class,
        PROP_WEEK_START_DAY,
        g_param_spec_enum (
            "week-start-day",
            "Week Start Day",
            NULL,
            E_TYPE_DATE_WEEKDAY,
            G_DATE_MONDAY,
            G_PARAM_READWRITE |
            G_PARAM_STATIC_STRINGS));

    chooser_signals[CHANGED] = g_signal_new (
        "changed",
        G_TYPE_FROM_CLASS (class),
        G_SIGNAL_RUN_FIRST,
        G_STRUCT_OFFSET (EWeekdayChooserClass, changed),
        NULL, NULL,
        g_cclosure_marshal_VOID__VOID,
        G_TYPE_NONE, 0);
}

static void
day_clicked (EWeekdayChooser *chooser,
             GDateWeekday weekday)
{
    gboolean selected;

    if (chooser->priv->blocked_weekdays[weekday])
        return;

    selected = e_weekday_chooser_get_selected (chooser, weekday);
    e_weekday_chooser_set_selected (chooser, weekday, !selected);
}

static gint
handle_key_press_event (EWeekdayChooser *chooser,
                        GdkEvent *event)
{
    EWeekdayChooserPrivate *priv = chooser->priv;
    guint keyval = event->key.keyval;
    guint index;

    if (chooser->priv->focus_day == G_DATE_BAD_WEEKDAY)
        chooser->priv->focus_day = chooser->priv->week_start_day;

    switch (keyval) {
        case GDK_KEY_Up:
        case GDK_KEY_Right:
            chooser->priv->focus_day =
                e_weekday_get_next (chooser->priv->focus_day);
            break;
        case GDK_KEY_Down:
        case GDK_KEY_Left:
            chooser->priv->focus_day =
                e_weekday_get_prev (chooser->priv->focus_day);
            break;
        case GDK_KEY_space:
        case GDK_KEY_Return:
            day_clicked (chooser, priv->focus_day);
            return TRUE;
        default:
            return FALSE;
    }

    colorize_items (chooser);

    index = e_weekday_get_days_between (
        chooser->priv->week_start_day,
        chooser->priv->focus_day);

    gnome_canvas_item_grab_focus (chooser->priv->boxes[index]);

    return TRUE;
}

/* Event handler for the day items */
static gboolean
day_event_cb (GnomeCanvasItem *item,
              GdkEvent *event,
              gpointer data)
{
    EWeekdayChooser *chooser;
    gint ii;

    chooser = E_WEEKDAY_CHOOSER (data);

    if (event->type == GDK_KEY_PRESS)
        return handle_key_press_event (chooser, event);

    if (!(event->type == GDK_BUTTON_PRESS && event->button.button == 1))
        return FALSE;

    /* Find which box was clicked */

    for (ii = 0; ii < 7; ii++) {
        if (chooser->priv->boxes[ii] == item)
            break;
        if (chooser->priv->labels[ii] == item)
            break;
    }

    g_return_val_if_fail (ii < 7, FALSE);

    chooser->priv->focus_day = e_weekday_add_days (
        chooser->priv->week_start_day, ii);

    gnome_canvas_item_grab_focus (chooser->priv->boxes[ii]);

    day_clicked (chooser, chooser->priv->focus_day);

    return TRUE;
}

/* Creates the canvas items for the weekday chooser.
 * The items are empty until they are configured elsewhere. */
static void
create_items (EWeekdayChooser *chooser)
{
    GnomeCanvasGroup *parent;
    gint ii;

    parent = gnome_canvas_root (GNOME_CANVAS (chooser));

    for (ii = 0; ii < 7; ii++) {
        chooser->priv->boxes[ii] = gnome_canvas_item_new (
            parent,
            GNOME_TYPE_CANVAS_RECT,
            NULL);
        g_signal_connect (
            chooser->priv->boxes[ii], "event",
            G_CALLBACK (day_event_cb), chooser);

        chooser->priv->labels[ii] = gnome_canvas_item_new (
            parent,
            GNOME_TYPE_CANVAS_TEXT,
            NULL);
        g_signal_connect (
            chooser->priv->labels[ii], "event",
            G_CALLBACK (day_event_cb), chooser);
    }
}

static void
e_weekday_chooser_init (EWeekdayChooser *chooser)
{
    chooser->priv = E_WEEKDAY_CHOOSER_GET_PRIVATE (chooser);

    create_items (chooser);
    chooser->priv->focus_day = -1;
}

/**
 * e_weekday_chooser_new:
 *
 * Creates a new #EWeekdayChooser.
 *
 * Returns: an #EWeekdayChooser
 **/
GtkWidget *
e_weekday_chooser_new (void)
{
    return g_object_new (E_TYPE_WEEKDAY_CHOOSER, NULL);
}

/**
 * e_weekday_chooser_get_days:
 * @chooser: an #EWeekdayChooser
 * @weekday: a #GDateWeekday
 *
 * Returns whether @weekday is selected.
 *
 * Returns: whether @weekday is selected
 **/
gboolean
e_weekday_chooser_get_selected (EWeekdayChooser *chooser,
                                GDateWeekday weekday)
{
    g_return_val_if_fail (E_IS_WEEKDAY_CHOOSER (chooser), FALSE);
    g_return_val_if_fail (g_date_valid_weekday (weekday), FALSE);

    return chooser->priv->selected_weekdays[weekday];
}

/**
 * e_weekday_chooser_set_selected:
 * @chooser: an #EWeekdayChooser
 * @weekday: a #GDateWeekday
 * @selected: selected flag
 *
 * Selects or deselects @weekday.
 **/
void
e_weekday_chooser_set_selected (EWeekdayChooser *chooser,
                                GDateWeekday weekday,
                                gboolean selected)
{
    g_return_if_fail (E_IS_WEEKDAY_CHOOSER (chooser));
    g_return_if_fail (g_date_valid_weekday (weekday));

    chooser->priv->selected_weekdays[weekday] = selected;

    colorize_items (chooser);

    g_signal_emit (chooser, chooser_signals[CHANGED], 0);
}

/**
 * e_weekday_chooser_get_blocked:
 * @chooser: an #EWeekdayChooser
 * @weekday: a #GDateWeekday
 *
 * Returns whether @weekday is blocked from being modified by the user.
 *
 * Returns: whether @weekday is blocked
 **/
gboolean
e_weekday_chooser_get_blocked (EWeekdayChooser *chooser,
                               GDateWeekday weekday)
{
    g_return_val_if_fail (E_IS_WEEKDAY_CHOOSER (chooser), FALSE);
    g_return_val_if_fail (g_date_valid_weekday (weekday), FALSE);

    return chooser->priv->blocked_weekdays[weekday];
}

/**
 * e_weekday_chooser_set_blocked:
 * @chooser: an #EWeekdayChooser
 * @weekday: a #GDateWeekday
 * @blocked: blocked flag
 *
 * Sets whether @weekday is blocked from being modified by the user.
 **/
void
e_weekday_chooser_set_blocked (EWeekdayChooser *chooser,
                               GDateWeekday weekday,
                               gboolean blocked)
{
    g_return_if_fail (E_IS_WEEKDAY_CHOOSER (chooser));
    g_return_if_fail (g_date_valid_weekday (weekday));

    chooser->priv->blocked_weekdays[weekday] = blocked;
}

/**
 * e_weekday_chooser_get_week_start_day:
 * @chooser: an #EWeekdayChooser
 *
 * Queries the day that defines the start of the week in @chooser.
 *
 * Returns: a #GDateWeekday
 **/
GDateWeekday
e_weekday_chooser_get_week_start_day (EWeekdayChooser *chooser)
{
    g_return_val_if_fail (E_IS_WEEKDAY_CHOOSER (chooser), -1);

    return chooser->priv->week_start_day;
}

/**
 * e_weekday_chooser_set_week_start_day:
 * @chooser: an #EWeekdayChooser
 * @week_start_day: a #GDateWeekday
 *
 * Sets the day that defines the start of the week for @chooser.
 **/
void
e_weekday_chooser_set_week_start_day (EWeekdayChooser *chooser,
                                      GDateWeekday week_start_day)
{
    g_return_if_fail (E_IS_WEEKDAY_CHOOSER (chooser));
    g_return_if_fail (g_date_valid_weekday (week_start_day));

    if (week_start_day == chooser->priv->week_start_day)
        return;

    chooser->priv->week_start_day = week_start_day;

    configure_items (chooser);

    g_object_notify (G_OBJECT (chooser), "week-start-day");
}