diff options
author | Federico Mena Quintero <federico@nuclecu.unam.mx> | 1998-09-29 08:54:21 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-09-29 08:54:21 +0800 |
commit | 550314f75b3a94e468e5f1117b9425d6d3784161 (patch) | |
tree | c80a72f998e8eaa090f3f0a3cd423fa8344f43f5 /calendar/quick-view.h | |
parent | a73b55050bd1c94567161aed1b3123eeb76c75d0 (diff) | |
download | gsoc2013-evolution-550314f75b3a94e468e5f1117b9425d6d3784161.tar gsoc2013-evolution-550314f75b3a94e468e5f1117b9425d6d3784161.tar.gz gsoc2013-evolution-550314f75b3a94e468e5f1117b9425d6d3784161.tar.bz2 gsoc2013-evolution-550314f75b3a94e468e5f1117b9425d6d3784161.tar.lz gsoc2013-evolution-550314f75b3a94e468e5f1117b9425d6d3784161.tar.xz gsoc2013-evolution-550314f75b3a94e468e5f1117b9425d6d3784161.tar.zst gsoc2013-evolution-550314f75b3a94e468e5f1117b9425d6d3784161.zip |
New file that presents a quick view of the events in a particular day when
1998-09-28 Federico Mena Quintero <federico@nuclecu.unam.mx>
* quick-view.[ch]: New file that presents a quick view of the
events in a particular day when the mouse is clicked on the year
view. Work in progress.
* year-view.c (do_quick_view_popup): New function that creates a
quick view for the events in a day.
* Makefile.am (gnomecal_SOURCES): Added quick-view.[ch] to the
list of sources.
svn path=/trunk/; revision=413
Diffstat (limited to 'calendar/quick-view.h')
-rw-r--r-- | calendar/quick-view.h | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/calendar/quick-view.h b/calendar/quick-view.h new file mode 100644 index 0000000000..c6b2cf8814 --- /dev/null +++ b/calendar/quick-view.h @@ -0,0 +1,59 @@ +/* Quick view widget for Gnomecal + * + * Copyright (C) 1998 The Free Software Foundation + * + * Author: Federico Mena <federico@nuclecu.unam.mx + */ + +#ifndef QUICK_VIEW_H +#define QUICK_VIEW_H + +#include <libgnome/gnome-defs.h> +#include "gnome-cal.h" + + +BEGIN_GNOME_DECLS + + +#define TYPE_QUICK_VIEW (quick_view_get_type ()) +#define QUICK_VIEW(obj) (GTK_CHECK_CAST ((obj), TYPE_QUICK_VIEW, QuickView)) +#define QUICK_VIEW_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), TYPE_QUICK_VIEW, QuickViewClass)) +#define IS_QUICK_VIEW(obj) (GTK_CHECK_TYPE ((obj), TYPE_QUICK_VIEW)) +#define IS_QUICK_VIEW_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), TYPE_QUICK_VIEW)) + + +typedef struct _QuickView QuickView; +typedef struct _QuickViewClass QuickViewClass; + +struct _QuickView { + GtkWindow window; + + GnomeCalendar *calendar; /* The calendar we are associated to */ + + GtkWidget *canvas; /* The canvas that displays the contents of the quick view */ + + int button; /* The button that was pressed to pop up the quick view */ +}; + +struct _QuickViewClass { + GtkWindowClass parent_class; +}; + + +/* Standard Gtk function */ +GtkType quick_view_get_type (void); + +/* Creates a new quick view with the specified title and the specified event list. It is associated + * to the specified calendar. The event list must be a list of CalendarObject structures. + */ +GtkWidget *quick_view_new (GnomeCalendar *calendar, char *title, GList *event_list); + +/* Pops up the quick view widget modally and loops until the uses closes it by releasing the mouse + * button. You can destroy the quick view when this function returns. + */ +void quick_view_do_popup (QuickView *qv, GdkEventButton *event); + + +END_GNOME_DECLS + +#endif |