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
|
[comment {-*- tcl -*- doctools manpage}]
[manpage_begin widget_calendar n 0.9]
[moddesc {widget::calendar Megawidget}]
[titledesc {widget::calendar Megawidget}]
[require Tcl 8.4]
[require Tk 8.4]
[require widget [opt 3.0]]
[description]
This package provides a calendar megawidget (snidget).
It makes use of the Tile/Ttk themed widget set.
[para]
[list_begin definitions]
[call [cmd widget::calendar] [arg pathname] [opt options]]
[list_end]
[section "WIDGET OPTIONS"]
[nl]
[list_begin opt]
[opt_def -command]
A script to evaluate when a date was selected.
[opt_def -dateformat]
The format of the date that is returned. Default: %m/%d/%Y.
[opt_def -firstday]
Set first day the week, Either sunday or monday. It defaults to monday.
[opt_def -font]
Select the font used in the widget. It defaults to Helvetica 9.
[opt_def -highlightcolor]
Selects the background color for the day that has been selected. Default: #FFCC00
[opt_def -language]
Specify language of the calendar contents. The language is specified
by abbreviations of the languge, for example: en - english, de -
german ...
It defaults to en.
[nl]
Supported languages: en, de, fr, it, es, pt, ru, sv, zh, fi
[opt_def -shadecolor]
Selects the color of the parts that have a shaded background. Default: #888888
[opt_def -showpast]
Specify if the past shall be shown. It is a boolean value and defaults
to 1.
[opt_def -textvariable]
Specifies the name of a variable whose value is linked to the entry widget's contents.
Whenever the variable changes value, the widget's contents are updated, and
vice versa.
[list_end]
[section "WIDGET COMMAND"]
[arg pathname] [cmd get] [arg what] [nl]
Returns part of the selected date or 'all'. The argument [arg what] selects
the part. Valid values for [arg what] are: day, month, year and all,
'all' is the default.
[section EXAMPLE]
[example {
package require widget::calendar ; # or widget::all
set t [widget::calendar .t]
pack $t -fill x -expand 1
}]
[keywords megawidget snit widget]
[manpage_end]
|