2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
1998-09-27 18:32:00 +00:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* GTK Calendar Widget
|
|
|
|
* Copyright (C) 1998 Cesar Miquel and Shawn T. Amundson
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1998-09-27 18:32:00 +00:00
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
1998-10-01 13:24:42 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1998-09-27 18:32:00 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
1998-09-27 18:32:00 +00:00
|
|
|
*/
|
1999-02-24 07:37:18 +00:00
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
2008-05-28 15:35:43 +00:00
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
1999-02-24 07:37:18 +00:00
|
|
|
*/
|
|
|
|
|
1998-09-27 18:32:00 +00:00
|
|
|
#ifndef __GTK_CALENDAR_H__
|
|
|
|
#define __GTK_CALENDAR_H__
|
|
|
|
|
2008-10-30 15:58:06 +00:00
|
|
|
|
2012-12-28 14:57:34 +00:00
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
1998-09-27 18:32:00 +00:00
|
|
|
#include <gtk/gtkwidget.h>
|
1998-10-01 13:24:42 +00:00
|
|
|
|
1998-09-27 18:32:00 +00:00
|
|
|
|
2005-03-20 07:01:23 +00:00
|
|
|
G_BEGIN_DECLS
|
1998-09-27 18:32:00 +00:00
|
|
|
|
2000-02-13 08:16:48 +00:00
|
|
|
#define GTK_TYPE_CALENDAR (gtk_calendar_get_type ())
|
2002-10-09 22:11:08 +00:00
|
|
|
#define GTK_CALENDAR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CALENDAR, GtkCalendar))
|
|
|
|
#define GTK_IS_CALENDAR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CALENDAR))
|
1998-10-01 13:24:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GtkCalendar GtkCalendar;
|
2005-05-11 19:16:19 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2002-10-09 22:11:08 +00:00
|
|
|
GType gtk_calendar_get_type (void) G_GNUC_CONST;
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
1998-10-01 13:24:42 +00:00
|
|
|
GtkWidget* gtk_calendar_new (void);
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-02-04 14:20:39 +00:00
|
|
|
void gtk_calendar_select_day (GtkCalendar *self,
|
|
|
|
GDateTime *date);
|
1998-10-01 13:24:42 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-06-15 04:00:40 +00:00
|
|
|
void gtk_calendar_mark_day (GtkCalendar *calendar,
|
1998-10-01 13:24:42 +00:00
|
|
|
guint day);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-06-15 04:00:40 +00:00
|
|
|
void gtk_calendar_unmark_day (GtkCalendar *calendar,
|
1998-10-01 13:24:42 +00:00
|
|
|
guint day);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
1998-10-01 13:24:42 +00:00
|
|
|
void gtk_calendar_clear_marks (GtkCalendar *calendar);
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-02-04 14:20:39 +00:00
|
|
|
void gtk_calendar_set_show_week_numbers (GtkCalendar *self,
|
|
|
|
gboolean value);
|
2020-02-04 11:19:08 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-02-04 14:20:39 +00:00
|
|
|
gboolean gtk_calendar_get_show_week_numbers (GtkCalendar *self);
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-02-04 14:20:39 +00:00
|
|
|
void gtk_calendar_set_show_heading (GtkCalendar *self,
|
|
|
|
gboolean value);
|
2020-02-04 11:19:08 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-02-04 14:20:39 +00:00
|
|
|
gboolean gtk_calendar_get_show_heading (GtkCalendar *self);
|
2020-02-04 11:19:08 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-02-04 14:20:39 +00:00
|
|
|
void gtk_calendar_set_show_day_names (GtkCalendar *self,
|
|
|
|
gboolean value);
|
2020-02-04 11:19:08 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-02-04 14:20:39 +00:00
|
|
|
gboolean gtk_calendar_get_show_day_names (GtkCalendar *self);
|
2020-02-04 11:19:08 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2020-02-04 14:20:39 +00:00
|
|
|
GDateTime * gtk_calendar_get_date (GtkCalendar *self);
|
2007-12-27 20:41:08 +00:00
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-08-29 17:14:24 +00:00
|
|
|
gboolean gtk_calendar_get_day_is_marked (GtkCalendar *calendar,
|
|
|
|
guint day);
|
|
|
|
|
2005-03-20 07:01:23 +00:00
|
|
|
G_END_DECLS
|
1998-09-27 18:32:00 +00:00
|
|
|
|
|
|
|
#endif /* __GTK_CALENDAR_H__ */
|