blob: 0f35817d786006a986cca1decd28ae7e4b7a29ef (
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
|
/* Month view display for gncal
*
* Copyright (C) 1998 Red Hat Software, Inc.
*
* Author: Federico Mena <federico@nuclecu.unam.mx>
*/
#ifndef MONTH_VIEW_H
#define MONTH_VIEW_H
#include <libgnome/gnome-defs.h>
#include "gnome-cal.h"
#include "gnome-month-item.h"
BEGIN_GNOME_DECLS
#define TYPE_MONTH_VIEW (month_view_get_type ())
#define MONTH_VIEW(obj) (GTK_CHECK_CAST ((obj), TYPE_MONTH_VIEW, MonthView))
#define MONTH_VIEW_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), TYPE_MONTH_VIEW, MonthViewClass))
#define IS_MONTH_VIEW(obj) (GTK_CHECK_TYPE ((obj), TYPE_MONTH_VIEW))
#define IS_MONTH_VIEW_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), TYPE_MONTH_VIEW))
typedef struct _MonthView MonthView;
typedef struct _MonthViewClass MonthViewClass;
struct _MonthView {
GnomeCanvas canvas;
GnomeCalendar *calendar; /* The calendar we are associated to */
GnomeCanvasItem *mitem; /* The canvas month item used by this month view */
};
struct _MonthViewClass {
GnomeCanvasClass parent_class;
};
/* Standard Gtk function */
GtkType month_view_get_type (void);
/* Creates a new month view widget associated to the specified calendar */
GtkWidget *month_view_new (GnomeCalendar *calendar);
END_GNOME_DECLS
#endif
|