Searched refs:fill (Results 51 - 75 of 957) sorted by relevance

1234567891011>>

/macosx-10.9.5/tcl-102/tk/tk/library/demos/
H A Dbitmap.tcl25 pack $w -side top -fill both
29 pack $w.$i -side left -fill both -pady .25c -padx .25c
49 pack $btns -side bottom -fill x
54 pack $w.frame -side top -expand yes -fill both
H A Dhscale.tcl25 pack $btns -side bottom -fill x
28 pack $w.frame -side top -fill x
31 $w.frame.canvas create polygon 0 0 1 1 2 2 -fill DeepSkyBlue3 -tags poly
32 $w.frame.canvas create line 0 0 1 1 2 2 0 0 -fill black -tags line
35 pack $w.frame.canvas -side top -expand yes -anchor s -fill x -padx 15
H A Dcscroll.tcl27 pack $btns -side bottom -fill x
35 pack $w.grid -expand yes -fill both -padx 1 -pady 1
52 -outline black -fill $bg -tags rect
84 set oldFill [lindex [$canvas itemconfig $id -fill] 4]
86 $canvas itemconfigure $id -fill SeaGreen1
88 $canvas itemconfigure $id -fill black
89 $canvas itemconfigure [expr {$id+1}] -fill white
99 $canvas itemconfigure $id -fill $oldFill
100 $canvas itemconfigure [expr {$id+1}] -fill black
H A Dmsgbox.tcl26 }] -side bottom -fill x
31 pack $w.left $w.right -side left -expand yes -fill y -pady .5c -padx .5c
36 pack $w.left.sep -side top -fill x -expand no
42 pack $w.left.b$i -side top -pady 2 -anchor w -fill x
48 pack $w.right.sep -side top -fill x -expand no
54 pack $w.right.$t -side top -pady 2 -anchor w -fill x
/macosx-10.9.5/tcl-102/tk84/tk/library/demos/
H A Dbitmap.tcl23 pack $w -side top -fill both
27 pack $w.$i -side left -fill both -pady .25c -padx .25c
47 pack $w.buttons -side bottom -fill x -pady 2m
55 pack $w.frame -side top -expand yes -fill both
H A Dcscroll.tcl24 pack $w.buttons -side bottom -fill x -pady 2m
35 pack $w.grid -expand yes -fill both -padx 1 -pady 1
52 -outline black -fill $bg -tags rect
84 set oldFill [lindex [$canvas itemconfig $id -fill] 4]
86 $canvas itemconfigure $id -fill SeaGreen1
88 $canvas itemconfigure $id -fill black
89 $canvas itemconfigure [expr {$id+1}] -fill white
99 $canvas itemconfigure $id -fill $oldFill
100 $canvas itemconfigure [expr {$id+1}] -fill black
/macosx-10.9.5/CPANInternal-140/Graph/util/
H A Dgrand.pl7 my %OPT = (seed => 42, test => 'apsp', fill => 0.50, V => 20, directed => 1);
25 [--directed=d] [--fill=f] [V]
42 'fill=f' => \$OPT{fill},
60 if ($OPT{fill} < 0.0 || $OPT{fill} > 1.0) {
61 $OPT{fill} = 0.5;
62 print "($OPT{fill} must be between 0.0 and 1.0, fixed to be 0.5)\n";
68 # edges_fill => $OPT{fill});
69 my $E = int(($OPT{V} * ($OPT{V} - 1) * $OPT{fill}) / (
[all...]
/macosx-10.9.5/CPANInternal-140/Graph-0.94/util/
H A Dgrand.pl7 my %OPT = (seed => 42, test => 'apsp', fill => 0.50, V => 20, directed => 1);
25 [--directed=d] [--fill=f] [V]
42 'fill=f' => \$OPT{fill},
60 if ($OPT{fill} < 0.0 || $OPT{fill} > 1.0) {
61 $OPT{fill} = 0.5;
62 print "($OPT{fill} must be between 0.0 and 1.0, fixed to be 0.5)\n";
68 # edges_fill => $OPT{fill});
69 my $E = int(($OPT{V} * ($OPT{V} - 1) * $OPT{fill}) / (
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/style/
H A DNinePieceImage.h46 bool fill : 1;
62 NinePieceImage(PassRefPtr<StyleImage>, LengthBox imageSlices, bool fill, LengthBox borderSlices, LengthBox outset, ENinePieceImageRule horizontalRule, ENinePieceImageRule verticalRule);
74 bool fill() const { return m_data->fill; } function in class:WebCore::NinePieceImage
75 void setFill(bool fill) { m_data.access()->fill = fill; } argument
92 m_data.access()->fill = other.m_data->fill;
114 m_data.access()->fill
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/
H A Dtksleep_sample.rb6 a = TkButton.new(:text=>"button A :: proc{p ['AAA', v.value]}").pack(:fill=>:x, :pady=>[1, 15], :padx=>15)
10 b = TkButton.new(:text=>"button B :: proc{n = v.value; p ['B:start', n]; Tk.sleep(10000); p ['B:end', n]}").pack(:fill=>:x, :pady=>[1, 15], :padx=>15)
14 c = TkButton.new(:text=>"button C :: proc{n = v.value; Thread.new{p ['C:start', n]; Tk.sleep(10000); p ['C:end', n]}}").pack(:fill=>:x, :pady=>[1, 15], :padx=>15)
18 d = TkButton.new(:text=>"button D :: proc{n = v.value; p ['D:start', n]; sleep(10); p ['D:end', n]}").pack(:fill=>:x, :pady=>[1,15], :padx=>15)
22 e = TkButton.new(:text=>"button E :: proc{n = v.value; Thread.new{p ['D:start', n]; sleep(10); p ['D:end', n]}}").pack(:fill=>:x, :pady=>[1,15], :padx=>15)
H A D24hr_clock.rb24 ).pack(:fill=>:both, :expand=>true)
30 @oval = TkcOval.new(@c, @circle_coords, :fill=>'white', :tags=>[@tag])
64 :width=>@mark_width, :fill=>@mark_color)
67 :width=>@mark_width, :fill=>@mark_color)
70 :width=>@mark_width, :fill=>@mark_color)
73 :width=>@mark_width, :fill=>@mark_color)
76 :anchor=>'s', :fill=>@mark_color)
78 :anchor=>'w', :fill=>@mark_color)
80 :anchor=>'n', :fill=>@mark_color)
82 :anchor=>'e', :fill
[all...]
H A Dtkmsgcat-load_rb.rb45 :expand=>true, :fill=>:both)
51 }.pack(:fill=>:x)
60 }.pack(:side=>:bottom, :fill=>:x)
72 }.pack(:side=>:bottom, :fill=>:x)
74 f = TkFrame.new.pack(:side=>:top, :fill=>:both, :expand=>true)
75 lbox = TkListbox.new(f).pack(:side=>:left, :fill=>:both, :expand=>true)
76 lbox.yscrollbar(TkScrollbar.new(f, :width=>12).pack(:side=>:right, :fill=>:y))
H A Dtkmsgcat-load_rb2.rb45 :expand=>true, :fill=>:both)
51 }.pack(:fill=>:x)
60 }.pack(:side=>:bottom, :fill=>:x)
72 }.pack(:side=>:bottom, :fill=>:x)
74 f = TkFrame.new.pack(:side=>:top, :fill=>:both, :expand=>true)
75 lbox = TkListbox.new(f).pack(:side=>:left, :fill=>:both, :expand=>true)
76 lbox.yscrollbar(TkScrollbar.new(f, :width=>12).pack(:side=>:right, :fill=>:y))
H A Dtkoptdb.rb49 pack(:fill=>:x, :padx=>10, :pady=>10)
58 pack(:fill=>:x, :padx=>10, :pady=>10)
71 pack(:fill=>:x, :padx=>10, :pady=>10)
80 pack(:fill=>:x, :padx=>10, :pady=>10)
93 pack(:fill=>:x, :padx=>10, :pady=>10)
102 pack(:fill=>:x, :padx=>10, :pady=>10)
H A Dtktimer2.rb11 .pack(:side=>:bottom, :fill=>:both)
33 pack(:side=>:left, :fill=>:both, :expand=>true)
37 pack(:side=>:left, :fill=>:both, :expand=>true)
41 pack('side'=>'right','fill'=>'both','expand'=>'yes')
H A Dtktimer3.rb11 .pack(:side=>:bottom, :fill=>:both)
32 pack(:side=>:left, :fill=>:both, :expand=>true)
36 pack('side'=>'left', 'fill'=>'both', 'expand'=>'yes')
53 pack(:side=>:right, :fill=>:both, :expand=>:yes)
/macosx-10.9.5/tcl-102/tcl_ext/mk4tcl/metakit/examples/
H A Dblockdels.tcl9 proc fill {n} { procedure
39 fill 2000
45 fill 2000
51 fill 3000
57 fill $total
/macosx-10.9.5/tcl-102/tk/tk/tests/
H A DcanvPsGrph.tcl17 pack .t.m -side top -fill both
20 pack .t.top -side top -fill both
34 pack .t.bot -side bottom -fill both
40 pack .t.mid -side top -expand yes -fill both -padx 2m -pady 2m
42 pack $c -expand yes -fill both -padx 1 -pady 1
49 $c create rect 2 2 100 50 -fill black -stipple gray25
50 $c create rect -20 180 80 320 -fill black -stipple gray50 -width .5c
51 $c create rect 200 -20 240 20 -fill black
52 $c create rect 380 200 420 240 -fill black
53 $c create rect 200 330 240 370 -fill blac
[all...]
H A Darc.tcl14 pack .t.c -expand yes -fill both
34 .t.c create arc 260 20 460 120 -start 30 -extent 270 -fill $fill2 -width 14 \
36 .t.c create arc 500 20 620 160 -start 30 -extent 270 -fill {} -width 14 \
38 .t.c create arc 20 260 140 460 -start 45 -extent 90 -fill $fill2 -width 14 \
40 .t.c create arc 180 260 300 460 -start 45 -extent 90 -fill {} -width 14 \
42 .t.c create arc 340 260 460 460 -start 30 -extent 150 -fill $fill2 -width 14 \
44 .t.c create arc 500 260 620 460 -start 30 -extent 150 -fill {} -width 14 \
46 .t.c create arc 20 450 140 570 -start 135 -extent 270 -fill $fill1 -width 14 \
48 .t.c create arc 180 450 300 570 -start 30 -extent -90 -fill $fill1 -width 14 \
50 .t.c create arc 340 450 460 570 -start 320 -extent 270 -fill
[all...]
H A DcanvPsArc.tcl17 pack .t.m -side top -fill both
20 pack .t.bot -side bottom -fill both
26 pack $c -expand yes -fill both -padx 2m -pady 2m
29 -fill black -outline {}
31 -fill {} -outline black -outlinestipple gray50 -width 3m
33 -fill black -stipple gray25 -outline black -width 1m
36 -fill black -outline {}
38 -fill black -stipple gray50 -outline black -width 2m
40 -fill {} -outline black
/macosx-10.9.5/tcl-102/tk84/tk/tests/
H A DcanvPsGrph.tcl17 pack .t.m -side top -fill both
20 pack .t.top -side top -fill both
34 pack .t.bot -side bottom -fill both
40 pack .t.mid -side top -expand yes -fill both -padx 2m -pady 2m
42 pack $c -expand yes -fill both -padx 1 -pady 1
49 $c create rect 2 2 100 50 -fill black -stipple gray25
50 $c create rect -20 180 80 320 -fill black -stipple gray50 -width .5c
51 $c create rect 200 -20 240 20 -fill black
52 $c create rect 380 200 420 240 -fill black
53 $c create rect 200 330 240 370 -fill blac
[all...]
H A Darc.tcl14 pack .t.c -expand yes -fill both
34 .t.c create arc 260 20 460 120 -start 30 -extent 270 -fill $fill2 -width 14 \
36 .t.c create arc 500 20 620 160 -start 30 -extent 270 -fill {} -width 14 \
38 .t.c create arc 20 260 140 460 -start 45 -extent 90 -fill $fill2 -width 14 \
40 .t.c create arc 180 260 300 460 -start 45 -extent 90 -fill {} -width 14 \
42 .t.c create arc 340 260 460 460 -start 30 -extent 150 -fill $fill2 -width 14 \
44 .t.c create arc 500 260 620 460 -start 30 -extent 150 -fill {} -width 14 \
46 .t.c create arc 20 450 140 570 -start 135 -extent 270 -fill $fill1 -width 14 \
48 .t.c create arc 180 450 300 570 -start 30 -extent -90 -fill $fill1 -width 14 \
50 .t.c create arc 340 450 460 570 -start 320 -extent 270 -fill
[all...]
H A DcanvPsArc.tcl17 pack .t.m -side top -fill both
20 pack .t.bot -side bottom -fill both
26 pack $c -expand yes -fill both -padx 2m -pady 2m
29 -fill black -outline {}
31 -fill {} -outline black -outlinestipple gray50 -width 3m
33 -fill black -stipple gray25 -outline black -width 1m
36 -fill black -outline {}
38 -fill black -stipple gray50 -outline black -width 2m
40 -fill {} -outline black
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-jp/
H A Dpaned1.rb21 base_frame = TkFrame.new($paned1_demo).pack(:fill=>:both, :expand=>true)
35 pack(:side=>:bottom, :fill=>:x, :pady=>'2m')
51 pack(:side=>:top, :expand=>true, :fill=>:both, :pady=>2, :padx=>'2m')
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/plotchart/
H A Dplotbusiness.tcl30 $w itemconfigure background -fill grey65 -outline black
32 $w itemconfigure background -fill {} -outline {}
37 $w itemconfigure ticklines -fill black
39 $w itemconfigure ticklines -fill {}
44 $w itemconfigure values -fill $settings($w,valuecolour)
46 $w itemconfigure values -fill {}
52 $w itemconfigure values -fill $settings($w,valuecolour)
61 $w itemconfigure labels -fill $settings($w,labelcolour)
125 $w create polygon $x1 $y1 $x3 $y3 $x2 $y2 $x4 $y4 -fill gray65 -tag platform \
139 -outline black -fill gray6
[all...]

Completed in 258 milliseconds

1234567891011>>