149 lines
3.8 KiB
C
149 lines
3.8 KiB
C
/* -*- 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 version 2 of the GNU General Public
|
|
* License as published by the Free Software Foundation.
|
|
*
|
|
* 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-ui-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
|
|
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_program_init (
|
|
"test-calendar", "0.0", LIBGNOMEUI_MODULE,
|
|
argc, argv, GNOME_PARAM_NONE);
|
|
|
|
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);
|
|
|
|
g_signal_connect((app), "delete_event",
|
|
G_CALLBACK (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);
|
|
|
|
g_signal_connect((calitem), "date_range_changed",
|
|
G_CALLBACK (on_date_range_changed), NULL);
|
|
g_signal_connect((calitem), "selection_changed",
|
|
G_CALLBACK (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_get_day (&start_date),
|
|
g_date_get_month (&start_date),
|
|
g_date_get_year (&start_date),
|
|
g_date_get_day (&end_date),
|
|
g_date_get_month (&end_date),
|
|
g_date_get_year (&end_date));
|
|
}
|