diff options
Diffstat (limited to 'calendar/gncal-full-day.c')
-rw-r--r-- | calendar/gncal-full-day.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/calendar/gncal-full-day.c b/calendar/gncal-full-day.c index 8c3bf31db2..a9c157c172 100644 --- a/calendar/gncal-full-day.c +++ b/calendar/gncal-full-day.c @@ -1212,6 +1212,16 @@ get_row_from_y (GncalFullDay *fullday, int y, int round) return y; } +static void +button_1 (GncalFullDay *fullday, GdkEventButton *event) +{ +} + +static void +button_3 (GncalFullDay *fullday, GdkEventButton *event) +{ +} + static gint gncal_full_day_button_press (GtkWidget *widget, GdkEventButton *event) { @@ -1230,6 +1240,19 @@ gncal_full_day_button_press (GtkWidget *widget, GdkEventButton *event) fullday = GNCAL_FULL_DAY (widget); + switch (event->button) { + case 1: + button_1 (fullday, event); + break; + + case 3: + button_3 (fullday, event); + break; + + default: + break; + } + if (event->window == widget->window) { /* Clicked on main window */ |