diff options
author | nobody <nobody@localhost> | 1999-04-17 09:22:18 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 1999-04-17 09:22:18 +0800 |
commit | a398f191046237ad8b65d46fad0094b60d05aca8 (patch) | |
tree | 136c6488c85ed1361c40a50a802af3491084950c /calendar/gui/quick-view.h | |
parent | ceb6a5d36a3031895654f904b458145228e5ea1c (diff) | |
download | gsoc2013-evolution-FOR_GNUMERIC.tar gsoc2013-evolution-FOR_GNUMERIC.tar.gz gsoc2013-evolution-FOR_GNUMERIC.tar.bz2 gsoc2013-evolution-FOR_GNUMERIC.tar.lz gsoc2013-evolution-FOR_GNUMERIC.tar.xz gsoc2013-evolution-FOR_GNUMERIC.tar.zst gsoc2013-evolution-FOR_GNUMERIC.zip |
This commit was manufactured by cvs2svn to create tag 'FOR_GNUMERIC'.FOR_GNUMERIC
svn path=/tags/FOR_GNUMERIC/; revision=819
Diffstat (limited to 'calendar/gui/quick-view.h')
-rw-r--r-- | calendar/gui/quick-view.h | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/calendar/gui/quick-view.h b/calendar/gui/quick-view.h deleted file mode 100644 index c6b2cf8814..0000000000 --- a/calendar/gui/quick-view.h +++ /dev/null @@ -1,59 +0,0 @@ -/* 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 |