blob: bdd542abda35bf3764f74db264438071cc2e3ccb (
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
|
/* Week view composite widget for gncal
*
* Copyright (C) 1998 The Free Software Foundation
*
* Author: Arturo Espinosa <arturo@nuclecu.unam.mx>
*
* Heavily based on Federico Mena's week view.
*
*/
#ifndef YEAR_VIEW_H
#define YEAR_VIEW_H
#include <time.h>
#include <gtk/gtktable.h>
#include <libgnome/gnome-defs.h>
#include <libgnomeui/gtkcalendar.h>
#include "calendar.h"
#include "gnome-cal.h"
BEGIN_GNOME_DECLS
#define GNCAL_YEAR_VIEW(obj) GTK_CHECK_CAST (obj, gncal_year_view_get_type (), GncalYearView)
#define GNCAL_YEAR_VIEW_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gncal_year_view_get_type (), GncalYearViewClass)
#define GNCAL_IS_YEAR_VIEW(obj) GTK_CHECK_TYPE (obj, gncal_year_view_get_type ())
typedef struct _GncalYearView GncalYearView;
typedef struct _GncalYearViewClass GncalYearViewClass;
struct _GncalYearView {
GtkTable table;
GtkWidget *calendar[12]; /* one calendar per month */
guint handler[12]; /* for (un)blocking the calendars */
GtkWidget *year_label;
gint year;
};
struct _GncalYearViewClass {
GtkTableClass parent_class;
};
guint gncal_year_view_get_type (void);
GtkWidget *gncal_year_view_new (time_t date);
void gncal_year_view_set (GncalYearView *yview, time_t date);
END_GNOME_DECLS
#endif
|