aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/test-calendar.c
blob: ac18889617f77c5d869bfe69430bfe1210e73dd5 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */

/*
 * Author :
 *  Damon Chaplin <damon@ximian.com>
 *
 * Copyright 2000, Ximian, Inc.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 */

/*
 * test-calendar - tests the ECalendar widget.
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <gtk/gtkdnd.h>
#include <gtk/gtkmain.h>
#include <gtk/gtkvbox.h>
#include <libgnomeui/gnome-app.h>
#include <libgnomeui/gnome-init.h>
#include "e-calendar.h"

/* Drag and Drop stuff. */
enum {
    TARGET_SHORTCUT
};
static GtkTargetEntry target_table[] = {
    { "E-SHORTCUT",     0, TARGET_SHORTCUT }
};
static guint n_targets = sizeof(target_table) / sizeof(target_table[0]);


static void on_date_range_changed   (ECalendarItem *calitem);
static void on_selection_changed    (ECalendarItem *calitem);
static void get_day_style       (ECalendarItem  *calitem,
                     gint        year,
                     gint        month,
                     gint        day,
                     gint        day_style,
                     gboolean    today,
                     gboolean    prev_or_next_month,
                     gboolean    selected,
                     gboolean    has_focus,
                     gboolean    drop_target,
                     GdkColor      **bg_color,
                     GdkColor      **fg_color,
                     GdkColor      **box_color,
                     gboolean   *bold,
                     gpointer    data);

static void
delete_event_cb (GtkWidget *widget,
         GdkEventAny *event,
         gpointer data)
{
    gtk_main_quit ();
}

int
main (int argc, char **argv)
{
    GtkWidget *app;
    GtkWidget *cal;
    GtkWidget *vbox;
    ECalendarItem *calitem;

    gnome_init ("test-calendar", "0.0", argc, argv);

    app = gnome_app_new ("Test", "Test");
    gtk_window_set_default_size (GTK_WINDOW (app), 400, 400);
    gtk_window_set_policy (GTK_WINDOW (app), FALSE, TRUE, FALSE);
    gtk_container_set_border_width (GTK_CONTAINER (app), 8);

    gtk_signal_connect (GTK_OBJECT (app), "delete_event",
                GTK_SIGNAL_FUNC (delete_event_cb), NULL);

    cal = e_calendar_new ();
    e_calendar_set_minimum_size (E_CALENDAR (cal), 1, 1);
    calitem = E_CALENDAR (cal)->calitem;
    gtk_widget_show (cal);
    e_calendar_item_set_style_callback (calitem, get_day_style,
                        NULL, NULL);

    gtk_signal_connect (GTK_OBJECT (calitem), "date_range_changed",
                GTK_SIGNAL_FUNC (on_date_range_changed), NULL);
    gtk_signal_connect (GTK_OBJECT (calitem), "selection_changed",
                GTK_SIGNAL_FUNC (on_selection_changed), NULL);


    gtk_drag_dest_set (cal,
               GTK_DEST_DEFAULT_ALL,
               target_table, n_targets,
               GDK_ACTION_COPY | GDK_ACTION_MOVE);


    vbox = gtk_vbox_new (FALSE, 0);
    gtk_box_pack_start (GTK_BOX (vbox), cal, TRUE, TRUE, 0);
    gtk_widget_show (vbox);

    gnome_app_set_contents (GNOME_APP (app), vbox);
    gtk_widget_show (app);

    gtk_main ();

    return 0;
}


static void
on_date_range_changed (ECalendarItem *calitem)
{
    gint start_year, start_month, start_day;
    gint end_year, end_month, end_day;

    e_calendar_item_get_date_range  (calitem,
                     &start_year, &start_month, &start_day,
                     &end_year, &end_month, &end_day);

    g_print ("Date range changed (D/M/Y): %i/%i/%i - %i/%i/%i\n",
         start_day, start_month + 1, start_year,
         end_day, end_month + 1, end_year);

    /* These days should appear bold. Remember month is 0 to 11. */
    e_calendar_item_mark_day (calitem, 2000, 7, 26, /* 26th Aug 2000. */
                  E_CALENDAR_ITEM_MARK_BOLD);
    e_calendar_item_mark_day (calitem, 2000, 8, 13, /* 13th Sep 2000. */
                  E_CALENDAR_ITEM_MARK_BOLD);
}


static void
on_selection_changed (ECalendarItem *calitem)
{
    GDate start_date, end_date;

    e_calendar_item_get_selection   (calitem, &start_date, &end_date);

    g_print ("Selection changed (D/M/Y): %i/%i/%i - %i/%i/%i\n",
         g_date_day (&start_date),
         g_date_month (&start_date),
         g_date_year (&start_date),
         g_date_day (&end_date),
         g_date_month (&end_date),
         g_date_year (&end_date));
}


static void
get_day_style       (ECalendarItem  *calitem,
             gint        year,
             gint        month,
             gint        day,
             gint        day_style,
             gboolean    today,
             gboolean    prev_or_next_month,
             gboolean    selected,
             gboolean    has_focus,
             gboolean    drop_target,
             GdkColor      **bg_color,
             GdkColor      **fg_color,
             GdkColor      **box_color,
             gboolean   *bold,
             gpointer    data)
{
    *bg_color = NULL;
    *fg_color = NULL;
    *box_color = NULL;
    *bold = FALSE;

#if 1

    if (day_style == 1)
        *bold = TRUE;

    if (today)
        *box_color = &calitem->colors[E_CALENDAR_ITEM_COLOR_TODAY_BOX];

    if (prev_or_next_month)
        *fg_color = &calitem->colors[E_CALENDAR_ITEM_COLOR_PREV_OR_NEXT_MONTH_FG];

    if (selected) {
        *fg_color = &calitem->colors[E_CALENDAR_ITEM_COLOR_SELECTION_FG];
        *bg_color = &calitem->colors[E_CALENDAR_ITEM_COLOR_SELECTION_BG];
    }

#else

    if (day_style == 1)
        *bold = TRUE;

    if (today)
        *box_color = &calitem->colors[E_CALENDAR_ITEM_COLOR_PREV_OR_NEXT_MONTH_FG];

    if (prev_or_next_month)
        *fg_color = &calitem->colors[E_CALENDAR_ITEM_COLOR_TODAY_BOX];

    if (selected) {
        *fg_color = &calitem->colors[E_CALENDAR_ITEM_COLOR_SELECTION_FG];
        *bg_color = &calitem->colors[E_CALENDAR_ITEM_COLOR_PREV_OR_NEXT_MONTH_FG];
    }

#endif
}