51 lines
1.2 KiB
C
51 lines
1.2 KiB
C
/*
|
|
* EventEditor widget
|
|
* Copyright (C) 1998 the Free Software Foundation
|
|
*
|
|
* Author: Miguel de Icaza (miguel@kernel.org)
|
|
*/
|
|
|
|
#ifndef EVENT_EDITOR_H
|
|
#define EVENT_EDITOR_H
|
|
|
|
#include "gnome-cal.h"
|
|
|
|
BEGIN_GNOME_DECLS
|
|
|
|
#define EVENT_EDITOR(obj) GTK_CHECK_CAST(obj, event_editor_get_type(), EventEditor)
|
|
#define EVENT_EDITOR_CLASS(class) GTK_CHECK_CAST_CLASS(class, event_editor_get_type(), EventEditorClass)
|
|
#define IS_EVENT_EDITOR(obj) GTK_CHECK_TYPE(obj, event_editor_get_type())
|
|
|
|
typedef struct {
|
|
GtkWindow gtk_window;
|
|
GtkWidget *notebook;
|
|
GtkWidget *hbox;
|
|
GtkWidget *vbox;
|
|
|
|
GtkWidget *general;
|
|
GtkTable *general_table;
|
|
GtkWidget *general_time_table;
|
|
GtkWidget *general_allday;
|
|
GtkWidget *general_recur;
|
|
GtkWidget *general_owner;
|
|
GtkWidget *general_summary;
|
|
GtkWidget *start_time, *end_time;
|
|
GtkWidget *general_radios;
|
|
|
|
/* The associated ical object */
|
|
iCalObject *ical;
|
|
int new_ical;
|
|
|
|
/* The calendar owner of this event */
|
|
GnomeCalendar *gnome_cal;
|
|
} EventEditor;
|
|
|
|
typedef struct {
|
|
GnomePropertyBoxClass parent_class;
|
|
} EventEditorClass;
|
|
|
|
GtkWidget *event_editor_new (GnomeCalendar *owner, iCalObject *);
|
|
|
|
END_GNOME_DECLS
|
|
#endif
|