blob: 8b62013ca7ba1684167f50a2c112f6ea6aa61762 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
/* Day view notebook panel for gncal
*
* Copyright (C) 1998 The Free Software Foundation
*
* Author: Federico Mena <quartic@gimp.org>
*/
#ifndef GNCAL_DAY_PANEL_H
#define GNCAL_DAY_PANEL_H
#include <gtk/gtklabel.h>
#include <gtk/gtkscrolledwindow.h>
#include <gtk/gtktable.h>
#include <libgnome/gnome-defs.h>
#include <libgnomeui/gtkcalendar.h>
#include "gnome-cal.h"
#include "gncal-full-day.h"
#include "gncal-todo.h"
BEGIN_GNOME_DECLS
#define GNCAL_DAY_PANEL(obj) GTK_CHECK_CAST (obj, gncal_day_panel_get_type (), GncalDayPanel)
#define GNCAL_DAY_PANEL_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gncal_day_panel_get_type (), GncalDayPanelClass)
#define GNCAL_IS_DAY_PANEL(obj) GTK_CHECK_TYPE (obj, gncal_day_panel_get_type ())
typedef struct _GncalDayPanel GncalDayPanel;
typedef struct _GncalDayPanelClass GncalDayPanelClass;
struct _GncalDayPanel {
GtkTable table;
GnomeCalendar *calendar; /* the calendar we are associated to */
time_t start_of_day;
GtkLabel *date_label;
GncalFullDay *fullday;
GtkScrolledWindow *fullday_sw;
GtkCalendar *gtk_calendar;
GncalTodo *todo;
guint day_selected_id;
};
struct _GncalDayPanelClass {
GtkTableClass parent_class;
};
guint gncal_day_panel_get_type (void);
GtkWidget *gncal_day_panel_new (GnomeCalendar *calendar, time_t start_of_day);
void gncal_day_panel_update (GncalDayPanel *dpanel, iCalObject *ico, int flags);
void gncal_day_panel_set (GncalDayPanel *dpanel, time_t start_of_day);
END_GNOME_DECLS
#endif
|