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
|
[comment {-*- tcl -*- doctools manpage}]
[manpage_begin widget n 3.0]
[moddesc {Megawidget package}]
[titledesc {Megawidget package}]
[require Tcl 8.4]
[require Tk 8.4]
[require widget [opt 3.0]] [require snit]
[description]
This package provides megawidgets based on the snit oo system (snidgets).
It makes use of the Tile/Ttk themed widget set.
[para]
[list_begin definitions]
[call [cmd widget::validate] [arg as] [opt options]]
commands:
[list_end]
[section WIDGETS]
[list_begin definitions]
[call [cmd widget::calendar] [arg pathname] [opt options]]
options:
[call [cmd widget::dateentry] [arg pathname] [opt options]]
options:
[call [cmd widget::dialog] [arg pathname] [opt options]]
options:
[call [cmd widget::menuentry] [arg pathname] [opt options]]
options:
[call [cmd widget::panelframe] [arg pathname] [opt options]]
options:
[call [cmd widget::ruler] [arg pathname] [opt options]]
options:
[call [cmd widget::screenruler] [arg pathname] [opt options]]
options:
[call [cmd widget::scrolledwindow] [arg pathname] [opt options]]
options:
[call [cmd widget::statusbar] [arg pathname] [opt options]]
options:
[call [cmd widget::superframe] [arg pathname] [opt options]]
options:
[call [cmd widget::toolbar] [arg pathname] [opt options]]
options:
[list_end]
[section EXAMPLE]
[example {
package require widget::superframe ; # or widget::all
pack [widget::superframe .f -type separator -text "SuperFrame:"]
}]
[keywords megawidget snit widget]
[manpage_end]
|