Lines Matching +full:b +full:- +full:side
1 #! /usr/local/bin/wish8.0 -f
47 text .l.prompt -width $pwidth -height 1 -relief flat;
49 pack .l.prompt -side left;
50 .l.prompt configure -state disabled;
51 text .l.value -width $vwidth -height 1;
53 pack .l.value -side right;
54 .l.value configure -state disabled;
55 pack .l -side top -padx $fxpad -pady $fypad;
58 text .p.prompt -width $pwidth -height 1 -relief flat;
60 pack .p.prompt -side left;
61 .p.prompt configure -state disabled;
62 entry .p.value -show "*" -width $vwidth;
63 pack .p.value -side right;
66 pack .p -side top -padx $fxpad -pady $fypad;
68 frame .b;
69 button .b.ok -default active -text "Ok" -takefocus 0 -command {done};
70 pack .b.ok -side left;
71 button .b.cancel -default normal -text "Cancel" -takefocus 0 -command {exit 1};
72 pack .b.cancel -side right;
73 pack .b -side top -padx $fxpad -pady $fypad;