aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/gnome-cal.c
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>1998-04-12 08:17:12 +0800
committerArturo Espinosa <unammx@src.gnome.org>1998-04-12 08:17:12 +0800
commitfbc607b0edbdc39297d17c0ecc75b45e4bfbb0c8 (patch)
treefcb69b57676e25f102083069ffc71651dc182e8e /calendar/gui/gnome-cal.c
parentb265b27dfc1e68424d509a17b9c6466adbae3fc9 (diff)
downloadgsoc2013-evolution-fbc607b0edbdc39297d17c0ecc75b45e4bfbb0c8.tar
gsoc2013-evolution-fbc607b0edbdc39297d17c0ecc75b45e4bfbb0c8.tar.gz
gsoc2013-evolution-fbc607b0edbdc39297d17c0ecc75b45e4bfbb0c8.tar.bz2
gsoc2013-evolution-fbc607b0edbdc39297d17c0ecc75b45e4bfbb0c8.tar.lz
gsoc2013-evolution-fbc607b0edbdc39297d17c0ecc75b45e4bfbb0c8.tar.xz
gsoc2013-evolution-fbc607b0edbdc39297d17c0ecc75b45e4bfbb0c8.tar.zst
gsoc2013-evolution-fbc607b0edbdc39297d17c0ecc75b45e4bfbb0c8.zip
Begginning of the create-appointment-on-range-selection-and-enter code -miguel
svn path=/trunk/; revision=127
Diffstat (limited to 'calendar/gui/gnome-cal.c')
-rw-r--r--calendar/gui/gnome-cal.c59
1 files changed, 42 insertions, 17 deletions
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c
index 18409e3318..00344a79f0 100644
--- a/calendar/gui/gnome-cal.c
+++ b/calendar/gui/gnome-cal.c
@@ -6,12 +6,14 @@
*/
#include <gnome.h>
+#include <gdk/gdkkeysyms.h>
#include "calendar.h"
#include "gnome-cal.h"
#include "gncal-full-day.h"
#include "gncal-week-view.h"
#include "timeutil.h"
#include "views.h"
+#include "main.h"
static void gnome_calendar_init (GnomeCalendar *gcal);
@@ -38,6 +40,44 @@ gnome_calendar_get_type (void)
}
static void
+day_view_key_press (GncalFullDay *fday, GdkEventKey *kevent, GnomeCalendar *gcal)
+{
+ iCalObject *ical;
+ time_t start, end;
+
+ if (kevent->keyval != GDK_Return)
+ return;
+
+ /* Create a new event on the selected range */
+ ical = ical_new ("", user_name, "");
+ ical->new = 1;
+/* gncal_full_day_selection_range (gcal->day_view, &ical->dtstart, &ical->dtend); */
+ event_editor_new (gcal, ical);
+}
+
+static void
+setup_day_view (GnomeCalendar *gcal)
+{
+ time_t a, b, now;
+
+ now = time (NULL);
+ a = time_start_of_day (now);
+ b = time_end_of_day (now);
+
+ gcal->day_view = gncal_full_day_new (gcal, a, b);
+ gtk_widget_set_events (gcal->day_view,
+ gtk_widget_get_events (gcal->day_view) | GDK_KEY_PRESS_MASK);
+ gcal->day_view_container = gtk_scrolled_window_new (NULL, NULL);
+ gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (gcal->day_view_container),
+ GTK_POLICY_AUTOMATIC,
+ GTK_POLICY_AUTOMATIC);
+ gtk_container_add (GTK_CONTAINER (gcal->day_view_container), gcal->day_view);
+ gtk_widget_show (gcal->day_view);
+ gtk_signal_connect (GTK_OBJECT (gcal->day_view), "key_press_event",
+ GTK_SIGNAL_FUNC (day_view_key_press), gcal);
+}
+
+static void
setup_widgets (GnomeCalendar *gcal)
{
time_t now;
@@ -49,23 +89,8 @@ setup_widgets (GnomeCalendar *gcal)
gcal->year_view = year_view_create (gcal);
gcal->task_view = tasks_create (gcal);
- if (1)
- {
- time_t a, b;
-
- a = time_start_of_day (now);
- b = time_end_of_day (now);
-
- gcal->day_view = gncal_full_day_new (gcal, a, b);
-
- gcal->day_view_container = gtk_scrolled_window_new (NULL, NULL);
- gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (gcal->day_view_container),
- GTK_POLICY_AUTOMATIC,
- GTK_POLICY_AUTOMATIC);
- gtk_container_add (GTK_CONTAINER (gcal->day_view_container), gcal->day_view);
- gtk_widget_show (gcal->day_view);
- }
-
+ setup_day_view (gcal);
+
gtk_notebook_append_page (GTK_NOTEBOOK (gcal->notebook), gcal->day_view_container, gtk_label_new (_("Day View")));
gtk_notebook_append_page (GTK_NOTEBOOK (gcal->notebook), gcal->week_view, gtk_label_new (_("Week View")));
gtk_notebook_append_page (GTK_NOTEBOOK (gcal->notebook), gcal->year_view, gtk_label_new (_("Year View")));