summaryrefslogtreecommitdiff
path: root/docs/reference/pygtk-gtkcalendar.xml
blob: 68a1aa71113e1b30c8d30e95fa078257e6dde85d (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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
<?xml version="1.0" standalone="no"?>
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
    "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">

<refentry id="class-gtkcalendar">
  <refnamediv>
    <refname>gtk.Calendar</refname>
    <refpurpose>a widget that displays a calendar and allows the user to
select a date.</refpurpose>
  </refnamediv>

  <refsect1>
    <title>Synopsis</title>

    <classsynopsis language="python">
      <ooclass><classname>gtk.Calendar</classname></ooclass>
      <ooclass><classname><link
linkend="class-gtkwidget">gtk.Widget</link></classname></ooclass>
      <constructorsynopsis language="python">
	<methodname><link
linkend="constructor-gtkcalendar">gtk.Calendar</link></methodname>
	<methodparam></methodparam>  </constructorsynopsis>
      <methodsynopsis language="python">
	<methodname><link
linkend="method-gtkcalendar--select-month">select_month</link></methodname>
	<methodparam><parameter
		       role="keyword">month</parameter></methodparam>
	<methodparam><parameter
		       role="keyword">year</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link
linkend="method-gtkcalendar--select-day">select_day</link></methodname>
	<methodparam><parameter role="keyword">day</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link
linkend="method-gtkcalendar--mark-day">mark_day</link></methodname>
	<methodparam><parameter role="keyword">day</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link
linkend="method-gtkcalendar--unmark-day">unmark_day</link></methodname>
	<methodparam><parameter role="keyword">day</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link
linkend="method-gtkcalendar--clear-marks">clear_marks</link></methodname>
	<methodparam></methodparam>  </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link
linkend="method-gtkcalendar--get-display-options">get_display_options</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link
linkend="method-gtkcalendar--set-display-options">set_display_options</link></methodname>
	<methodparam><parameter
		       role="keyword">flags</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link
linkend="method-gtkcalendar--get-detail-height-rows">get_detail_height_rows</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link
linkend="method-gtkcalendar--set-detail-height-rows">set_detail_height_rows</link></methodname>
	<methodparam><parameter
		       role="keyword">rows</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link
linkend="method-gtkcalendar--get-detail-width-chars">get_detail_width_chars</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link
linkend="method-gtkcalendar--set-detail-width-chars">set_detail_width_chars</link></methodname>
	<methodparam><parameter
		       role="keyword">chars</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link
linkend="method-gtkcalendar--display-options">display_options</link></methodname>
	<methodparam><parameter
		       role="keyword">flags</parameter></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link
linkend="method-gtkcalendar--get-date">get_date</link></methodname>
	<methodparam></methodparam>
      </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link
linkend="method-gtkcalendar--freeze">freeze</link></methodname>
	<methodparam></methodparam>  </methodsynopsis>
      <methodsynopsis language="python">
	<methodname><link
linkend="method-gtkcalendar--thaw">thaw</link></methodname>
	<methodparam></methodparam>  </methodsynopsis>
    </classsynopsis>

  </refsect1>

  <refsect1>
    <title>Ancestry</title>

<synopsis>+-- <link linkend="class-gobject">gobject.GObject</link>
  +-- <link linkend="class-gtkobject">gtk.Object</link>
    +-- <link linkend="class-gtkwidget">gtk.Widget</link>
      +-- <link linkend="class-gtkcalendar">gtk.Calendar</link>
</synopsis>
  
  </refsect1>
  
  <refsect1>
		<title>Implemented Interfaces</title>
		<para>
			<link linkend="class-gtkcalendar"><classname>gtk.Calendar</classname></link>
			implements 
			<link linkend="class-gtkbuildable"><classname>gtk.Buildable</classname></link>
		</para>
	</refsect1>
  
  
  <refsect1 id="properties-gtkcalendar">
    <title>gtk.Calendar Properties</title>

    <para><link linkend="properties-gtkobject">gtk.Object Properties</link></para>
    <para><link linkend="properties-gtkwidget">gtk.Widget Properties</link></para>

    <note>
      <para>These properties are available in GTK+ 2.4 and above.</para>
    </note>

    <blockquote role="properties">
      <informaltable pgwide="1" frame="none">
	<tgroup cols="3">
	  <colspec column="1" colwidth="1in"/>
	  <colspec column="2" colwidth="1in"/>
	  <colspec column="3" colwidth="4in"/>
	  <tbody>

	    <row valign="top">
	      <entry>"day"</entry>
	      <entry>Read-Write</entry>
	      <entry>The selected day (as a number between 1 and 31, or 0 to
unselect the currently selected day).</entry>
	    </row>

	    <row valign="top">
	      <entry>"detail-height-rows"</entry>
	      <entry>Read-Write</entry>
	      <entry>Height of a detail cell, in rows. A value of 0 allows any width.
                 See gtk_calendar_set_detail_func(). Allowed values: [0,127].
                 Default value: 0 .This property is available in GTK+ 2.14 and above.</entry>
	    </row>
	    
	    <row valign="top">
	      <entry>"detail-width-chars"</entry>
	      <entry>Read-Write</entry>
	      <entry>Width of a detail cell, in characters. A value of 0 allows any width.
	      See gtk_calendar_set_detail_func(). Allowed values: [0,127] Default value: 0.
              This property is available in GTK+ 2.14 and above.</entry>
	    </row>

	    <row valign="top">
	      <entry>"month"</entry>
	      <entry>Read-Write</entry>
	      <entry>The selected month (as a number between 0 and 11).</entry>
	    </row>

	    <row valign="top">
	      <entry>"no-month-change"</entry>
	      <entry>Read-Write</entry>
	      <entry>If <literal>True</literal> the selected month cannot be
changed.</entry>
	    </row>

	    <row valign="top">
	      <entry>"show-day-names"</entry>
	      <entry>Read-Write</entry>
	      <entry>If <literal>True</literal>, day names are
displayed.</entry>
	    </row>

	    <row valign="top">
	      <entry>"show-details"</entry>
	      <entry>Read-Write</entry>
	      <entry>Determines whether details are shown directly in the widget,
              or if they are available only as tooltip. When this property is set days
              with details are marked. Default value: <literal>True</literal>.
              This property is available in GTK+ 2.14 and above.</entry>
	    </row>

	    <row valign="top">
	      <entry>"show-heading"</entry>
	      <entry>Read-Write</entry>
	      <entry>If <literal>True</literal>, a heading is
displayed.</entry>
	    </row>

	    <row valign="top">
	      <entry>"show-week-numbers"</entry>
	      <entry>Read-Write</entry>
	      <entry>If <literal>True</literal>, week numbers are
displayed.</entry>
	    </row>

	    <row valign="top">
	      <entry>"year"</entry>
	      <entry>Read-Write</entry>
	      <entry>The selected year.</entry>
	    </row>

	  </tbody>
	</tgroup>
      </informaltable>
    </blockquote>

  </refsect1>

  <refsect1 id="style-properties-gtkcalendar">
    <title>gtk.Calendar Style Properties</title>

    <para><link linkend="style-properties-gtkwidget">gtk.Widget Style Properties</link></para>

    <blockquote role="properties">
      <informaltable pgwide="1" frame="none">
	<tgroup cols="3">
	  <colspec column="1" colwidth="1in"/>
	  <colspec column="2" colwidth="1in"/>
	  <colspec column="3" colwidth="3.5in"/>
	  <tbody>

	    <row valign="top">
	      <entry>"horizontal-separation"</entry>
	      <entry>Read</entry>
	      <entry>Separation between week headers and main area. Allowed values: &#62;=0. Default value: 4.</entry>
	    </row>

	    <row valign="top">
	      <entry>"inner-border"</entry>
	      <entry>Read</entry>
	      <entry>The spacing around the day/week headers and main area. Allowed values: &#62;=0. Default value: 2.</entry>
	    </row>

	    <row valign="top">
	      <entry>"vertical-separation"</entry>
	      <entry>Read</entry>
	      <entry>Space between day headers and main area. Allowed values: &#62;=0. Default value: 2.</entry>
	    </row>

	</tbody>
      </tgroup>
      </informaltable>
    </blockquote>

  </refsect1>

  <refsect1 id="signal-prototypes-gtkcalendar">
    <title>gtk.Calendar Signal Prototypes</title>

    <para><link linkend="signal-prototypes-gobject">gobject.GObject Signal Prototypes</link></para>
    <para><link linkend="signal-prototypes-gtkobject">gtk.Object Signal Prototypes</link></para>
    <para><link linkend="signal-prototypes-gtkwidget">gtk.Widget Signal Prototypes</link></para>

    <variablelist>
      <varlistentry>
        <term>"<link
linkend="signal-gtkcalendar--day-selected">day-selected</link>"</term>
        <listitem>
          <methodsynopsis
	    language="python"><methodname>callback</methodname>
            <methodparam><parameter>calendar</parameter>
            </methodparam>
            <methodparam><parameter>user_param1</parameter>
            </methodparam>
            <methodparam><parameter>...</parameter>
            </methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link
linkend="signal-gtkcalendar--day-selected-double-click">day-selected-double-click</link>"</term>
        <listitem>
          <methodsynopsis
	    language="python"><methodname>callback</methodname>
            <methodparam><parameter>calendar</parameter>
            </methodparam>
            <methodparam><parameter>user_param1</parameter>
            </methodparam>
            <methodparam><parameter>...</parameter>
            </methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link
linkend="signal-gtkcalendar--month-changed">month-changed</link>"</term>
        <listitem>
          <methodsynopsis
	    language="python"><methodname>callback</methodname>
            <methodparam><parameter>calendar</parameter>
            </methodparam>
            <methodparam><parameter>user_param1</parameter>
            </methodparam>
            <methodparam><parameter>...</parameter>
            </methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link
linkend="signal-gtkcalendar--next-month">next-month</link>"</term>
        <listitem>
          <methodsynopsis
	    language="python"><methodname>callback</methodname>
            <methodparam><parameter>calendar</parameter>
            </methodparam>
            <methodparam><parameter>user_param1</parameter>
            </methodparam>
            <methodparam><parameter>...</parameter>
            </methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link
linkend="signal-gtkcalendar--next-year">next-year</link>"</term>
        <listitem>
          <methodsynopsis
	    language="python"><methodname>callback</methodname>
            <methodparam><parameter>calendar</parameter>
            </methodparam>
            <methodparam><parameter>user_param1</parameter>
            </methodparam>
            <methodparam><parameter>...</parameter>
            </methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link
linkend="signal-gtkcalendar--prev-month">prev-month</link>"</term>
        <listitem>
          <methodsynopsis
	    language="python"><methodname>callback</methodname>
            <methodparam><parameter>calendar</parameter>
            </methodparam>
            <methodparam><parameter>user_param1</parameter>
            </methodparam>
            <methodparam><parameter>...</parameter>
            </methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>"<link
linkend="signal-gtkcalendar--prev-year">prev-year</link>"</term>
        <listitem>
          <methodsynopsis
	    language="python"><methodname>callback</methodname>
            <methodparam><parameter>calendar</parameter>
            </methodparam>
            <methodparam><parameter>user_param1</parameter>
            </methodparam>
            <methodparam><parameter>...</parameter>
            </methodparam>
          </methodsynopsis>
        </listitem>
      </varlistentry>
    </variablelist>

  </refsect1>

  <refsect1>
    <title>Description</title>

    <para>The <link
linkend="class-gtkcalendar"><classname>gtk.Calendar</classname></link> is a
widget that displays a simple calendar, one month at a time. In addition,
the calendar can display the days of the week and navigation controls that
allow a user to change the month and year displayed by calling the <link
linkend="method-gtkcalendar--display-options"><methodname>display_options</methodname>()</link>
(<link
linkend="method-gtkcalendar--set-display-options"><methodname>set_display_options</methodname>()</link>
in PyGTK 2.4 and above) method. The possible display options are:</para>

    <variablelist>
      <varlistentry>
	<term><literal>gtk.CALENDAR_SHOW_HEADING</literal></term>
	<listitem>
	  <simpara>Specifies that the month and year should be
displayed.</simpara>
	</listitem>
      </varlistentry>
      <varlistentry>
	<term><literal>gtk.CALENDAR_SHOW_DAY_NAMES</literal></term>
	<listitem>
	  <simpara>Specifies that three letter day descriptions should be
present.</simpara>
	</listitem>
      </varlistentry>
      <varlistentry>
	<term><literal>gtk.CALENDAR_NO_MONTH_CHANGE</literal></term>
	<listitem>
	  <simpara>Prevents the user from switching months with the
calendar.</simpara>
	</listitem>
      </varlistentry>
      <varlistentry>
	<term><literal>gtk.CALENDAR_SHOW_WEEK_NUMBERS</literal></term>
	<listitem>
	  <simpara>Displays each week numbers of the current year, down the
left side of the calendar.</simpara>
	</listitem>
      </varlistentry>
      <varlistentry>
	<term><literal>gtk.CALENDAR_WEEK_START_MONDAY</literal></term>
	<listitem>
	  <simpara>Starts the calendar week on Monday, instead of the
default Sunday.</simpara>
	</listitem>
      </varlistentry>
    </variablelist>

    <para>The month and year currently displayed are programatically
changed by calling the <link
linkend="method-gtkcalendar--select-month"><methodname>select_month</methodname>()</link> 
method. The exact day is selected from the displayed month using the <link
linkend="method-gtkcalendar--select-day"><methodname>select_day</methodname>()</link> 
method.</para>

    <para>To place a visual marker on a particular day, use the <link
linkend="method-gtkcalendar--mark-day"><methodname>mark_day</methodname>()</link> 
method and to remove the marker, the <link
linkend="method-gtkcalendar--unmark-day"><methodname>unmark_day</methodname>()</link> 
method. All marks are cleared by calling the <link
linkend="method-gtkcalendar--clear-marks"><methodname>clear_marks</methodname>()</link> 
method.</para>

    <para>The selected date can be retrieved from a <link
linkend="class-gtkcalendar"><classname>gtk.Calendar</classname></link> using
the <link
linkend="method-gtkcalendar--get-date"><methodname>get_date</methodname>()</link> 
method. If performing many 'mark' operations, the calendar can be frozen to
prevent flicker, using the <link
linkend="method-gtkcalendar--freeze"><methodname>freeze</methodname>()</link> 
method, and 'thawed' again using the <link
linkend="method-gtkcalendar--freeze"><methodname>thaw</methodname>()</link>
method.</para>
    
    <note>
      <para>Note that month is zero-based (i.e it allowed values are 0-11) while selected_day 
      is one-based (i.e. allowed values are 1-31).</para>
    </note>
    
  </refsect1>

  <refsect1 id="constructor-gtkcalendar">
    <title>Constructor</title>

    <programlisting><constructorsynopsis language="python">
	<methodname>gtk.Calendar</methodname>
	<methodparam></methodparam>  </constructorsynopsis></programlisting>
    <variablelist>
      <varlistentry>
	<term><emphasis>Returns</emphasis>&nbsp;:</term>
	<listitem><simpara>a calendar object</simpara></listitem>
      </varlistentry>
    </variablelist>

    <para>Creates a calendar object that displays the current month and year
with the current day selected. The default calendar display style is:
gtk.CALENDAR_SHOW_HEADING | gtk.CALENDAR_SHOW_DAY_NAMES that shows the days
of the week and the month and year heading with navigation controls.</para>

  </refsect1>

  <refsect1>
    <title>Methods</title>

    <refsect2 id="method-gtkcalendar--select-month">
      <title>gtk.Calendar.select_month</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>select_month</methodname>
	  <methodparam
	    role="keyword"><parameter>month</parameter></methodparam>
	  <methodparam
	    role="keyword"><parameter>year</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">month</parameter>&nbsp;:</term>
	  <listitem><simpara>the new month number between 0 and
11</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter role="keyword">year</parameter>&nbsp;:</term>
	  <listitem><simpara>the new year number</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>True if the month is set</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>The <methodname>select_month</methodname>() method changes the
calendar display to the specified <parameter>month</parameter> and
<parameter>year</parameter>.</para>

    </refsect2>

    <refsect2 id="method-gtkcalendar--select-day">
      <title>gtk.Calendar.select_day</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>select_day</methodname>
	  <methodparam><parameter
			 role="keyword">day</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">day</parameter>&nbsp;:</term>
	  <listitem><simpara>the new day number between 1 and 31 - 0 removes
the current selection</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>The <methodname>select_day</methodname>() method selects the
specified <parameter>day</parameter> on the calendar when
<parameter>day</parameter> has a value between 1 and 31. If
<parameter>day</parameter> is 0 then the current day selection is
removed.</para>

    </refsect2>

    <refsect2 id="method-gtkcalendar--mark-day">
      <title>gtk.Calendar.mark_day</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>mark_day</methodname>
	  <methodparam><parameter
			 role="keyword">day</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">day</parameter>&nbsp;:</term>
	  <listitem><simpara>the number of the day to be
marked</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>True</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>The <methodname>mark_day</methodname>() method marks the
specified month <parameter>day</parameter> with a visual marker (typically
by making the number bold). If the calendar month and year are changed the
marked days remain marked.</para>

    </refsect2>

    <refsect2 id="method-gtkcalendar--unmark-day">
      <title>gtk.Calendar.unmark_day</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>unmark_day</methodname>
	  <methodparam><parameter
			 role="keyword">day</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">day</parameter>&nbsp;:</term>
	  <listitem><simpara>the number of the day to be
unmarked</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>True</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>The <methodname>unmark_day</methodname>() method unmarks the
specified month <parameter>day</parameter>.</para>

    </refsect2>

    <refsect2 id="method-gtkcalendar--clear-marks">
      <title>gtk.Calendar.clear_marks</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>clear_marks</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>

      <para>The <methodname>clear_marks</methodname>() method clears all
marked days.</para>

    </refsect2>

    <refsect2 id="method-gtkcalendar--get-display-options">
      <title>gtk.Calendar.get_display_options</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_display_options</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>the calendar display options</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>get_display_options</methodname>() method
returns the current calendar display options. See the <link
linkend="method-gtkcalendar--set-display-options"><methodname>set_display_options</methodname>()</link>
method for more information.</para>

    </refsect2>

    <refsect2 id="method-gtkcalendar--set-display-options">
      <title>gtk.Calendar.set_display_options</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_display_options</methodname>
	  <methodparam><parameter
			 role="keyword">flags</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">flags</parameter>&nbsp;:</term>
	  <listitem><simpara>the new calendar display
options</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.4 and above.</para>
      </note>

      <para>The <methodname>set_display_options</methodname>() method sets the
calendar display options to the value specified by
<parameter>flags</parameter>. The possible display options are a combination
of:</para>

      <variablelist>
	<varlistentry>
	  <term><literal>gtk.CALENDAR_SHOW_HEADING</literal></term>
	  <listitem>
	    <simpara>Specifies that the month and year should be
displayed.</simpara>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><literal>gtk.CALENDAR_SHOW_DAY_NAMES</literal></term>
	  <listitem>
	    <simpara>Specifies that three letter day descriptions should be
present.</simpara>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><literal>gtk.CALENDAR_NO_MONTH_CHANGE</literal></term>
	  <listitem>
	    <simpara>Prevents the user from switching months with the
calendar.</simpara>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><literal>gtk.CALENDAR_SHOW_WEEK_NUMBERS</literal></term>
	  <listitem>
	    <simpara>Displays each week numbers of the current year, down
the left side of the calendar.</simpara>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><literal>gtk.CALENDAR_WEEK_START_MONDAY</literal></term>
	  <listitem>
	    <simpara>Starts the calendar week on Monday, instead of the
default Sunday.</simpara>
	  </listitem>
	</varlistentry>
      </variablelist>

      <para>The display options can be removed by passing 0 as the value of
<parameter>flags</parameter>.</para>

    </refsect2>

    <refsect2 id="method-gtkcalendar--get-detail-height-rows">
      <title>gtk.Calendar.get_detail_height_rows</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_detail_height_rows</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>The height of detail cells, in rows.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.14 and above.</para>
      </note>

      <para>
        The <methodname>get_detail_height_rows</methodname>() method
        queries the height of detail cells, in rows. See the "detail-width-chars" property.
      </para>

    </refsect2>

    <refsect2 id="method-gtkcalendar--set-detail-height-rows">
      <title>gtk.Calendar.set_detail_height_rows</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_detail_height_rows</methodname>
	  <methodparam><parameter
			 role="keyword">rows</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">rows</parameter>&nbsp;:</term>
	  <listitem><simpara>detail height in rows.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.14 and above.</para>
      </note>

      <para>
        The <methodname>set_detail_height_rows</methodname>() method
        updates the height of detail cells. See the "detail-height-rows" property.
      </para>

    </refsect2>

    <refsect2 id="method-gtkcalendar--get-detail-width-chars">
      <title>gtk.Calendar.get_detail_width_chars</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_detail_width_chars</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>The width of detail cells, in characters.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.14 and above.</para>
      </note>

      <para>
        The <methodname>get_detail_width_chars</methodname>() method
        queries the width of detail cells, in characters. See the "detail-width-chars" property.
      </para>

    </refsect2>

    <refsect2 id="method-gtkcalendar--set-detail-width-chars">
      <title>gtk.Calendar.set_detail_width_chars</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>set_detail_width_chars</methodname>
	  <methodparam><parameter
			 role="keyword">chars</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">chars</parameter>&nbsp;:</term>
	  <listitem><simpara>detail width in characters.</simpara></listitem>
	</varlistentry>
      </variablelist>

      <note>
	<para>This method is available in PyGTK 2.14 and above.</para>
      </note>

      <para>
        The <methodname>set_detail_width_chars</methodname>() method
        updates the width of detail cells. See the "detail-width-chars" property.
      </para>

    </refsect2>

    <refsect2 id="method-gtkcalendar--display-options">
      <title>gtk.Calendar.display_options</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>display_options</methodname>
	  <methodparam><parameter
			 role="keyword">flags</parameter></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><parameter role="keyword">flags</parameter>&nbsp;:</term>
	  <listitem><simpara>the new calendar display
options</simpara></listitem>
	</varlistentry>
      </variablelist>

      <warning>
	<para>This method is deprecated in PyGTK 2.4 and should be replaced
	by the <link
	linkend="method-gtkcalendar--set-display-options"><methodname>set_display_options</methodname>()</link>
	method.</para>
      </warning>

      <para>The <methodname>display_options</methodname>() method sets the
calendar display options to the value specified by
<parameter>flags</parameter>. The possible display options are a combination
of:</para>

      <variablelist>
	<varlistentry>
	  <term><literal>gtk.CALENDAR_SHOW_HEADING</literal></term>
	  <listitem>
	    <simpara>Specifies that the month and year should be
displayed.</simpara>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><literal>gtk.CALENDAR_SHOW_DAY_NAMES</literal></term>
	  <listitem>
	    <simpara>Specifies that three letter day descriptions should be
present.</simpara>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><literal>gtk.CALENDAR_NO_MONTH_CHANGE</literal></term>
	  <listitem>
	    <simpara>Prevents the user from switching months with the
calendar.</simpara>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><literal>gtk.CALENDAR_SHOW_WEEK_NUMBERS</literal></term>
	  <listitem>
	    <simpara>Displays each week numbers of the current year, down
the left side of the calendar.</simpara>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term><literal>gtk.CALENDAR_WEEK_START_MONDAY</literal></term>
	  <listitem>
	    <simpara>Starts the calendar week on Monday, instead of the
default Sunday.</simpara>
	  </listitem>
	</varlistentry>
      </variablelist>

      <para>The display options can be removed by passing 0 as the value of
<parameter>flags</parameter>.</para>

    </refsect2>

    <refsect2 id="method-gtkcalendar--get-date">
      <title>gtk.Calendar.get_date</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>get_date</methodname>
	  <methodparam></methodparam>
	</methodsynopsis></programlisting>
      <variablelist>
	<varlistentry>
	  <term><emphasis>Returns</emphasis>&nbsp;:</term>
	  <listitem><simpara>a tuple containing the year, month and
day</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>The <methodname>get_date</methodname>() method retrieves the
calendar's current year, month and selected day numbers as a tuple (year,
month, day).</para>
    
    <note>
      <para>Note that month is zero-based (i.e it allowed values are 0-11) while selected_day 
      is one-based (i.e. allowed values are 1-31).</para>
    </note>

    </refsect2>

    <refsect2 id="method-gtkcalendar--freeze">
      <title>gtk.Calendar.freeze</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>freeze</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>

      <para>The <methodname>freeze</methodname>() method stops the update of
the calendar display until the <link
linkend="method-gtkcalendar--thaw"><methodname>thaw</methodname>()</link>
method is called. This method is used to reduce calendar flicker when doing
a large number of updates to the calendar.</para>

    </refsect2>

    <refsect2 id="method-gtkcalendar--thaw">
      <title>gtk.Calendar.thaw</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>thaw</methodname>
	  <methodparam></methodparam>  </methodsynopsis></programlisting>

      <para>The <methodname>thaw</methodname>() method reenables the update
of the calendar after a <link
linkend="method-gtkcalendar--freeze"><methodname>freeze</methodname>()</link> 
method is called. All changes made since the last <link
linkend="method-gtkcalendar--freeze"><methodname>freeze</methodname>()</link> 
are displayed</para>

    </refsect2>

  </refsect1>

  <refsect1>
    <title>Signals</title>

    <refsect2 id="signal-gtkcalendar--day-selected">
      <title>The "day-selected" gtk.Calendar Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>calendar</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>calendar</parameter>&nbsp;:</term>
	  <listitem><simpara>the calendar that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>user_param1</parameter>&nbsp;:</term>
          <listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>...</parameter>&nbsp;:</term>
	  <listitem><simpara>additional user parameters (if
any)</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>The "day-selected" signal is emitted when a day is selected
either by the user or programatically.</para>

    </refsect2>

    <refsect2 id="signal-gtkcalendar--day-selected-double-click">
      <title>The "day-selected-double-click" gtk.Calendar Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>calendar</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>calendar</parameter>&nbsp;:</term>
	  <listitem><simpara>the calendar that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>user_param1</parameter>&nbsp;:</term>
          <listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>...</parameter>&nbsp;:</term>
	  <listitem><simpara>additional user parameters (if
any)</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>The "day-selected-double-click" signal is emitted when a
calendar day is doubled-clicked by the user.</para>

    </refsect2>

    <refsect2 id="signal-gtkcalendar--month-changed">
      <title>The "month-changed" gtk.Calendar Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>calendar</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>calendar</parameter>&nbsp;:</term>
	  <listitem><simpara>the calendar that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>user_param1</parameter>&nbsp;:</term>
          <listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>...</parameter>&nbsp;:</term>
	  <listitem><simpara>additional user parameters (if
any)</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>The "month-changed" signal is emitted when the calendar month is
changed programatically or by the user.</para>

    </refsect2>

    <refsect2 id="signal-gtkcalendar--next-month">
      <title>The "next-month" gtk.Calendar Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>calendar</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>calendar</parameter>&nbsp;:</term>
	  <listitem><simpara>the calendar that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>user_param1</parameter>&nbsp;:</term>
          <listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>...</parameter>&nbsp;:</term>
	  <listitem><simpara>additional user parameters (if
any)</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>The "next-month" signal is emitted when the user clicks the
"next-month" navigation control in the calendar header.</para>

    </refsect2>

    <refsect2 id="signal-gtkcalendar--next-year">
      <title>The "next-year" gtk.Calendar Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>calendar</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>calendar</parameter>&nbsp;:</term>
	  <listitem><simpara>the calendar that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>user_param1</parameter>&nbsp;:</term>
          <listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>...</parameter>&nbsp;:</term>
	  <listitem><simpara>additional user parameters (if
any)</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>The "next-year" signal is emitted when the user clicks the
"next-year" navigation control in the calendar header.</para>

    </refsect2>

    <refsect2 id="signal-gtkcalendar--prev-month">
      <title>The "prev-month" gtk.Calendar Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>calendar</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>calendar</parameter>&nbsp;:</term>
	  <listitem><simpara>the calendar that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>user_param1</parameter>&nbsp;:</term>
          <listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>...</parameter>&nbsp;:</term>
	  <listitem><simpara>additional user parameters (if
any)</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>The "prev-month" signal is emitted when the user clicks the
"prev-month" navigation control in the calendar header.</para>

    </refsect2>

    <refsect2 id="signal-gtkcalendar--prev-year">
      <title>The "prev-year" gtk.Calendar Signal</title>

      <programlisting><methodsynopsis language="python">
	  <methodname>callback</methodname>
	  <methodparam><parameter>calendar</parameter></methodparam>
	  <methodparam><parameter>user_param1</parameter></methodparam>
	  <methodparam><parameter>...</parameter></methodparam>
	</methodsynopsis></programlisting>

      <variablelist>
	<varlistentry>
	  <term><parameter>calendar</parameter>&nbsp;:</term>
	  <listitem><simpara>the calendar that received the
signal</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>user_param1</parameter>&nbsp;:</term>
          <listitem><simpara>the first user parameter (if any) specified
with the <link
linkend="method-gobject--connect"><methodname>connect</methodname>()</link>
method</simpara></listitem>
	</varlistentry>
	<varlistentry>
	  <term><parameter>...</parameter>&nbsp;:</term>
	  <listitem><simpara>additional user parameters (if
any)</simpara></listitem>
	</varlistentry>
      </variablelist>

      <para>The "prev-year" signal is emitted when the user clicks the
"prev-year" navigation control in the calendar header.</para>

    </refsect2>

  </refsect1>

</refentry>