Lines Matching +full:side +full:- +full:by +full:- +full:side
1 #! /usr/local/bin/wish8.0 -f
15 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
50 text .$n.prompt -width $pwidth -height 1 -relief flat;
52 pack .$n.prompt -side left;
53 .$n.prompt configure -state disabled;
60 text .$n.value -width $vwidth -height 1;
62 pack .$n.value -side right;
65 .$n.value configure -state normal -takefocus 0;
68 .$n.value configure -state disabled;
70 pack .$n -side top -padx $fxpad -pady $fypad;
75 puts [.n.value get 1.0 {end - 1 char}];
85 entry .k.value -show "*" -width $vwidth;
86 pack .k.value -side right;
89 pack .k -side top -padx $fxpad -pady $fypad;
92 button .b.ok -default active -text "Ok" -command {done};
93 pack .b.ok -side left;
94 button .b.cancel -default normal -text "Cancel" -command {exit 1};
95 pack .b.cancel -side right;
96 pack .b -side top -padx $fxpad -pady $fypad;