summaryrefslogtreecommitdiff
path: root/docs/reference/gtk/tmpl/gtkcalendar.sgml
blob: 234ca1d0de8f668f66191ef98684be110d3bdaae (plain)
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
<!-- ##### SECTION Title ##### -->
GtkCalendar

<!-- ##### SECTION Short_Description ##### -->
Displays a calendar and allows the user to select a date

<!-- ##### SECTION Long_Description ##### -->
<para>
#GtkCalendar is a widget that displays a calendar, one month at a time. 
It can be created with gtk_calendar_new().
</para>
<para>
The month and year currently displayed can be altered with 
gtk_calendar_select_month(). The exact day can be selected from the displayed 
month using gtk_calendar_select_day().
</para>
<para>
To place a visual marker on a particular day, use gtk_calendar_mark_day() 
and to remove the marker, gtk_calendar_unmark_day().
Alternative, all marks can be cleared with gtk_calendar_clear_marks().
</para>
<para>
The way in which the calendar itself is displayed can be altered using
gtk_calendar_set_display_options().
</para>
<para>
The selected date can be retrieved from a #GtkCalendar using
gtk_calendar_get_date().
</para>

<!-- ##### SECTION See_Also ##### -->
<para>

</para>

<!-- ##### SECTION Stability_Level ##### -->


<!-- ##### SECTION Image ##### -->


<!-- ##### STRUCT GtkCalendar ##### -->
<para>
<structfield>num_marked_dates</structfield> is an integer containing the
number of days that have a mark over them.
</para>
<para>
<structfield>marked_date</structfield> is an array containing the day numbers
that currently have a mark over them.
</para>
<para>
<structfield>month</structfield>, <structfield>year</structfield>, and 
<structfield>selected_day</structfield> contain the currently visible month,
year, and selected day respectively.
</para>
<para>
All of these fields should be considered read only, and everything in this
struct should only be modified using the functions provided below.
</para>
<note>
<para>
Note that <structfield>month</structfield> is zero-based (i.e it allowed values
are 0-11) while <structfield>selected_day</structfield> is one-based
(i.e. allowed values are 1-31). 
</para>
</note>


<!-- ##### SIGNAL GtkCalendar::day-selected ##### -->
<para>
Emitted when the user selects a day.
</para>

@calendar: the object which received the signal.

<!-- ##### SIGNAL GtkCalendar::day-selected-double-click ##### -->
<para>

</para>

@calendar: the object which received the signal.

<!-- ##### SIGNAL GtkCalendar::month-changed ##### -->
<para>
Emitted when the user clicks a button to change the selected month on a
calendar.
</para>

@calendar: the object which received the signal.

<!-- ##### SIGNAL GtkCalendar::next-month ##### -->
<para>

</para>

@calendar: the object which received the signal.

<!-- ##### SIGNAL GtkCalendar::next-year ##### -->
<para>

</para>

@calendar: the object which received the signal.

<!-- ##### SIGNAL GtkCalendar::prev-month ##### -->
<para>

</para>

@calendar: the object which received the signal.

<!-- ##### SIGNAL GtkCalendar::prev-year ##### -->
<para>

</para>

@calendar: the object which received the signal.

<!-- ##### ARG GtkCalendar:day ##### -->
<para>

</para>

<!-- ##### ARG GtkCalendar:detail-height-rows ##### -->
<para>

</para>

<!-- ##### ARG GtkCalendar:detail-width-chars ##### -->
<para>

</para>

<!-- ##### ARG GtkCalendar:month ##### -->
<para>

</para>

<!-- ##### ARG GtkCalendar:no-month-change ##### -->
<para>

</para>

<!-- ##### ARG GtkCalendar:show-day-names ##### -->
<para>

</para>

<!-- ##### ARG GtkCalendar:show-details ##### -->
<para>

</para>

<!-- ##### ARG GtkCalendar:show-heading ##### -->
<para>

</para>

<!-- ##### ARG GtkCalendar:show-week-numbers ##### -->
<para>

</para>

<!-- ##### ARG GtkCalendar:year ##### -->
<para>

</para>

<!-- ##### USER_FUNCTION GtkCalendarDetailFunc ##### -->
<para>

</para>

@calendar: 
@year: 
@month: 
@day: 
@user_data: 
@Returns: 


<!-- ##### ENUM GtkCalendarDisplayOptions ##### -->
<para>
</para>

@GTK_CALENDAR_SHOW_HEADING: 
@GTK_CALENDAR_SHOW_DAY_NAMES: 
@GTK_CALENDAR_NO_MONTH_CHANGE: 
@GTK_CALENDAR_SHOW_WEEK_NUMBERS: 
@GTK_CALENDAR_WEEK_START_MONDAY: 
@GTK_CALENDAR_SHOW_DETAILS: 

<!-- ##### FUNCTION gtk_calendar_new ##### -->
<para>
</para>

@void: 
@Returns: 


<!-- ##### FUNCTION gtk_calendar_select_month ##### -->
<para>
</para>

@calendar: 
@month: 
@year: 
@Returns: 


<!-- ##### FUNCTION gtk_calendar_select_day ##### -->
<para>
</para>

@calendar: 
@day: 


<!-- ##### FUNCTION gtk_calendar_mark_day ##### -->
<para>
</para>

@calendar: 
@day: 
@Returns: 


<!-- ##### FUNCTION gtk_calendar_unmark_day ##### -->
<para>
</para>

@calendar: 
@day: 
@Returns: 


<!-- ##### FUNCTION gtk_calendar_clear_marks ##### -->
<para>
</para>

@calendar: 


<!-- ##### FUNCTION gtk_calendar_get_display_options ##### -->
<para>

</para>

@calendar: 
@Returns: 


<!-- ##### FUNCTION gtk_calendar_set_display_options ##### -->
<para>

</para>

@calendar: 
@flags: 


<!-- ##### FUNCTION gtk_calendar_get_date ##### -->
<para>
</para>

@calendar: 
@year: 
@month: 
@day: 


<!-- ##### FUNCTION gtk_calendar_set_detail_func ##### -->
<para>

</para>

@calendar: 
@func: 
@data: 
@destroy: 


<!-- ##### FUNCTION gtk_calendar_get_detail_width_chars ##### -->
<para>

</para>

@calendar: 
@Returns: 


<!-- ##### FUNCTION gtk_calendar_set_detail_width_chars ##### -->
<para>

</para>

@calendar: 
@chars: 


<!-- ##### FUNCTION gtk_calendar_get_detail_height_rows ##### -->
<para>

</para>

@calendar: 
@Returns: 


<!-- ##### FUNCTION gtk_calendar_set_detail_height_rows ##### -->
<para>

</para>

@calendar: 
@rows: 


<!-- ##### FUNCTION gtk_calendar_display_options ##### -->
<para>
</para>

@calendar: 
@flags: 


<!-- ##### FUNCTION gtk_calendar_freeze ##### -->
<para>
</para>

@calendar: 


<!-- ##### FUNCTION gtk_calendar_thaw ##### -->
<para>
</para>

@calendar: