----------------------------------------------------------------------- -- GtkAda - Ada95 binding for Gtk+/Gnome -- -- -- -- Copyright (C) 1998-2000 E. Briot, J. Brobecker and A. Charlet -- -- Copyright (C) 2000-2009, AdaCore -- -- -- -- This library 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 library 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 library; if not, write to the -- -- Free Software Foundation, Inc., 59 Temple Place - Suite 330, -- -- Boston, MA 02111-1307, USA. -- -- -- ----------------------------------------------------------------------- -- <description> -- Gtk_Calendar is a widget that displays a calendar, one month at a time. -- It can be created with Gtk_New. -- -- The month and year currently displayed can be altered with Select_Month. -- The exact day can be selected from the displayed month using Select_Day. -- -- The way in which the calendar itself is displayed can be altered using -- Display_Options. -- -- The selected date can be retrieved from a Gtk_Calendar using Get_Date. -- -- If performing many 'mark' operations, the calendar can be frozen to prevent -- flicker, using Freeze, and 'thawed' again using Thaw. -- </description> -- <c_version>2.14</c_version> -- <group>Selectors</group> -- <testgtk>create_calendar.adb</testgtk> -- <screenshot>gtk-calendar</screenshot> with Glib.Properties;
with Gtk.Widget;
package Gtk.Calendar is
type Gtk_Calendar_Display_Options is mod 2 ** 8;
Show_Heading : constant Gtk_Calendar_Display_Options;
-- Specify that the month and year should be displayed. Show_Day_Names : constant Gtk_Calendar_Display_Options;
-- Specify that three letter day descriptions should be present. No_Month_Change : constant Gtk_Calendar_Display_Options;
-- Prevent the user from switching months with the calendar. Show_Week_Numbers : constant Gtk_Calendar_Display_Options;
-- Display each week numbers of the current year, down the left side of -- the calendar. Week_Start_Monday : constant Gtk_Calendar_Display_Options;
-- Start the calendar week on Monday, instead of the default Sunday. type Gtk_Calendar_Record is new Gtk.Widget.Gtk_Widget_Record with private;
type Gtk_Calendar is access all Gtk_Calendar_Record'Class;
procedure Gtk_New (Widget : out Gtk_Calendar);
-- Create a new Calendar that points to the current date. procedure Initialize (Widget : access Gtk_Calendar_Record'Class);
-- Internal initialization function. -- See the section "Creating your own widgets" in the documentation. function Get_Type return Gtk.Gtk_Type;
-- Return the internal value associated with a Gtk_Calendar. function Select_Month
(Calendar : access Gtk_Calendar_Record;
Month : Guint;
Year : Guint) return Boolean;
-- Shift the calendar to a different month/year. -- Return True if sucessful. procedure Select_Day
(Calendar : access Gtk_Calendar_Record;
Day : Guint);
-- Select a day from the current month. -- Only one day can be selected at a time. function Mark_Day
(Calendar : access Gtk_Calendar_Record;
Day : Guint) return Boolean;
-- Set a specified Day as marked in the Calendar. -- This is shown visually as a painted box around the Day. -- Note that several days can be marked. -- Return True if successful. function Unmark_Day
(Calendar : access Gtk_Calendar_Record;
Day : Guint) return Boolean;
-- Undo the marking of Day. -- Return True if sucessful. procedure Clear_Marks (Calendar : access Gtk_Calendar_Record);
-- Clear all the marks set by Mark_Day. procedure Get_Date
(Calendar : access Gtk_Calendar_Record;
Year : out Guint;
Month : out Guint;
Day : out Guint);
-- Return the date currently selected. procedure Set_Display_Options
(Calendar : access Gtk_Calendar_Record;
Flags : Gtk_Calendar_Display_Options);
function Get_Display_Options
(Calendar : access Gtk_Calendar_Record)
return Gtk_Calendar_Display_Options;
-- Sets display options (whether to display the heading and the month -- headings). function Get_Detail_Height_Rows
(Calendar : access Gtk_Calendar_Record)
return Gint;
procedure Set_Detail_Height_Rows
(Calendar : access Gtk_Calendar_Record;
Rows : Gint);
-- Queries the height of detail cells, in rows. -- Since: 2.14 function Get_Detail_Width_Chars
(Calendar : access Gtk_Calendar_Record)
return Gint;
procedure Set_Detail_Width_Chars
(Calendar : access Gtk_Calendar_Record;
Chars : Gint);
-- Queries the width of detail cells, in characters. -- Since: 2.14 ------------- -- Details -- ------------- type Gtk_Calendar_Detail_Func is access function
(Calendar : access Gtk_Calendar_Record'Class;
Year : Guint; Month : Guint; Day : Guint; User_Data : System.Address) return String; -- Return the details for the given day, or the empty string when there -- are no details. procedure Set_Detail_Func
(Calendar : access Gtk_Calendar_Record;
Func : Gtk_Calendar_Detail_Func;
Data : System.Address;
Destroy : G_Destroy_Notify_Address);
-- Installs a function which provides Pango markup with detail information -- for each day. Examples for such details are holidays or appointments. -- That information is shown below each day when the property -- "show-details" is set. -- A tooltip containing with full detail information is provided, if the -- entire text should not fit into the details area, or if show-details -- is not set. -- -- The size of the details area can be restricted by setting the -- "detail-width-chars" and "detail-height-rows" properties. -- -- Since: 2.14 ----------------- -- Obsolescent -- ----------------- -- All subprograms below are now obsolescent in gtk+. They might be removed -- from future versions of gtk+ (and therefore GtkAda). -- To find out whether your code uses any of these, we recommend compiling -- with the -gnatwj switch -- <doc_ignore> procedure Display_Options
(Calendar : access Gtk_Calendar_Record;
Flags : Gtk_Calendar_Display_Options);
pragma Obsolescent; -- Display_Options
-- Change the display options. -- See individual Display_Option flags for more details. procedure Freeze (Calendar : access Gtk_Calendar_Record);
pragma Obsolescent; -- Freeze
-- Lock the display of the calendar until it is thawed. procedure Thaw (Calendar : access Gtk_Calendar_Record);
pragma Obsolescent; -- Thaw
-- Defrost a calendar. -- All the changes made since the last Freeze are displayed. -- </doc_ignore> ---------------- -- Properties -- ---------------- -- <properties> -- The following properties are defined for this widget. See -- Glib.Properties for more information on properties. -- -- Name: Day_Property -- Type: Int -- Descr: The selected day (as a number between 1 and 31, or 0 to unselect -- the currently selected day) -- -- Name: Detail_Height_Rows_Property -- Type: Int -- Descr: Details height in rows -- -- Name: Detail_Width_Chars_Property -- Type: Int -- Descr: Details width in characters -- -- Name: Month_Property -- Type: Int -- Descr: The selected month (as a number between 0 and 11) -- -- Name: No_Month_Change_Property -- Type: Boolean -- Descr: If TRUE, the selected month cannot be changed -- -- Name: Show_Day_Names_Property -- Type: Boolean -- Descr: If TRUE, day names are displayed -- -- Name: Show_Details_Property -- Type: Boolean -- Descr: If TRUE, details are shown -- -- Name: Show_Heading_Property -- Type: Boolean -- Descr: If TRUE, a heading is displayed -- -- Name: Show_Week_Numbers_Property -- Type: Boolean -- Descr: If TRUE, week numbers are displayed -- -- Name: Year_Property -- Type: Int -- Descr: The selected year -- -- </properties> Day_Property : constant Glib.Properties.Property_Int;
Detail_Height_Rows_Property : constant Glib.Properties.Property_Int;
Detail_Width_Chars_Property : constant Glib.Properties.Property_Int;
Month_Property : constant Glib.Properties.Property_Int;
No_Month_Change_Property : constant Glib.Properties.Property_Boolean;
Show_Day_Names_Property : constant Glib.Properties.Property_Boolean;
Show_Details_Property : constant Glib.Properties.Property_Boolean;
Show_Heading_Property : constant Glib.Properties.Property_Boolean;
Show_Week_Numbers_Property : constant Glib.Properties.Property_Boolean;
Year_Property : constant Glib.Properties.Property_Int;
------------- -- Signals -- ------------- -- <signals> -- The following new signals are defined for this widget: -- - "month_changed" -- procedure Handler (Calendar : access Gtk_Calendar_Record'Class); -- Emitted when the user clicks a button to change the selected month on -- calendar. -- -- - "day_selected" -- procedure Handler (Calendar : access Gtk_Calendar_Record'Class); -- Emitted when the user selects a day on a calendar. -- -- - "day_selected_double_click" -- procedure Handler (Calendar : access Gtk_Calendar_Record'Class); -- Emitted when the user double clicks a day on a calendar. -- -- - "prev_month" -- procedure Handler (Calendar : access Gtk_Calendar_Record'Class); -- Emitted when the user selects the previous month on a calendar. -- -- - "next_month" -- procedure Handler (Calendar : access Gtk_Calendar_Record'Class); -- Emitted when the user selects the next month on a calendar. -- -- - "prev_year" -- procedure Handler (Calendar : access Gtk_Calendar_Record'Class); -- Emitted when the user selects the previous year on a calendar. -- -- - "next_year" -- procedure Handler (Calendar : access Gtk_Calendar_Record'Class); -- Emitted when the user selects the next year on a calendar. -- -- </signals> Signal_Day_Selected : constant Glib.Signal_Name :=
"day_selected"; Signal_Day_Selected_Double_Click : constant Glib.Signal_Name :=
"day_selected_double_click"; Signal_Month_Changed : constant Glib.Signal_Name :=
"month_changed"; Signal_Next_Month : constant Glib.Signal_Name :=
"next_month"; Signal_Next_Year : constant Glib.Signal_Name :=
"next_year"; Signal_Prev_Month : constant Glib.Signal_Name :=
"prev_month"; Signal_Prev_Year : constant Glib.Signal_Name :=
"prev_year"; private type Gtk_Calendar_Record is new Gtk.Widget.Gtk_Widget_Record
with null record;
Day_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("day");
Detail_Height_Rows_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("detail-height-rows");
Detail_Width_Chars_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("detail-width-chars");
Month_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("month");
No_Month_Change_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("no-month-change");
Show_Day_Names_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("show-day-names");
Show_Details_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("show-details");
Show_Heading_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("show-heading");
Show_Week_Numbers_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("show-week-numbers");
Year_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("year");
pragma Import (C, Get_Type, "gtk_calendar_get_type");
Show_Heading : constant Gtk_Calendar_Display_Options := 2 ** 0;
Show_Day_Names : constant Gtk_Calendar_Display_Options := 2 ** 1;
No_Month_Change : constant Gtk_Calendar_Display_Options := 2 ** 2;
Show_Week_Numbers : constant Gtk_Calendar_Display_Options := 2 ** 3;
Week_Start_Monday : constant Gtk_Calendar_Display_Options := 2 ** 4;
end Gtk.Calendar;