亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? notebook.tcl

?? 是TCL的另外一個編譯(解釋)器
?? TCL
?? 第 1 頁 / 共 3 頁
字號:
    #    # c1                c6    #    # where    # c1 = $xd,	  $h    # c2 = $xd+$xBevel,	           $arcRadius+2    # c3 = $xd+$xBevel+$arcRadius, $arcRadius    # c4 = $xf+1-$xBevel,          $arcRadius    # c5 = $xf+$arcRadius-$xBevel, $arcRadius+2    # c6 = $xf+$arcRadius,         $h    set top		2    set arcRadius	[Widget::cget $path -arcradius]    set xBevel		[Widget::cget $path -tabbevelsize]    if { $data(select) != $page } {	if { $pos == 0 } {	    # The leftmost page is a special case -- it is drawn with its	    # tab a little indented.  To achieve this, we incr xd.  We also	    # decr textOffsetX, so that the text doesn't move left/right.	    incr xd 2	    incr textOffsetX -2	}    } else {	# The selected page's text is raised higher than the others	incr top -2    }    # Precompute some coord values that we use a lot    set topPlusRadius	[expr {$top + $arcRadius}]    set rightPlusRadius	[expr {$xf + $arcRadius}]    set leftPlusRadius	[expr {$xd + $arcRadius}]    # Sven    set side [Widget::cget $path -side]    set tabsOnBottom [string equal $side "bottom"]    set h1 [expr {[winfo height $path]}]    set bd [Widget::cget $path -borderwidth]    if { $tabsOnBottom } {	set top [expr {$top * -1}]	set topPlusRadius [expr {$topPlusRadius * -1}]	# Hrm... the canvas has an issue with drawing diagonal segments	# of lines from the bottom to the top, so we have to draw this line	# backwards (ie, lt is actually the bottom, drawn from right to left)        set lt  [list 					\		$rightPlusRadius	[expr {$h1-$h-1}]		\		[expr {$rightPlusRadius - $xBevel}]	[expr {$h1 + $topPlusRadius}]	\		[expr {$xf - $xBevel}]			[expr {$h1 + $top}]		\		[expr {$leftPlusRadius + $xBevel}]	[expr {$h1 + $top}]		\		]        set lb  [list					\		[expr {$leftPlusRadius + $xBevel}]	[expr {$h1 + $top}]		\		[expr {$xd + $xBevel}]			[expr {$h1 + $topPlusRadius}]	\		$xd			[expr {$h1-$h-1}]	\		]	# Because we have to do this funky reverse order thing, we have to	# swap the top/bottom colors too.	set tmp $fgt	set fgt $fgb	set fgb $tmp    } else {	set lt [list					\		$xd			$h		\		[expr {$xd + $xBevel}]			$topPlusRadius		\		[expr {$leftPlusRadius + $xBevel}]	$top			\		[expr {$xf + 1 - $xBevel}]		$top			\		]	set lb [list 						\		[expr {$xf + 1 - $xBevel}] 		[expr {$top + 1}]	\		[expr {$rightPlusRadius - $xBevel}]	$topPlusRadius		\		$rightPlusRadius	$h			\		]    }    set img [Widget::cget $path.f$page -image]    set ytext $top    if { $tabsOnBottom } {	# The "+ 2" below moves the text closer to the bottom of the tab,	# so it doesn't look so cramped.  I should be able to achieve the	# same goal by changing the anchor of the text and using this formula:	# ytext = $top + $h1 - $textOffsetY	# but that doesn't quite work (I think the linespace from the text	# gets in the way)	incr ytext [expr {$h1 - $h + 2}]    }    incr ytext $textOffsetY    set xtext [expr {$xd + $textOffsetX}]    if { $img != "" } {	# if there's an image, put it on the left and move the text right	set ximg $xtext	incr xtext [expr {[image width $img] + 2}]    }	    if { $data(select) == $page } {        set bd    [Widget::cget $path -borderwidth]        set fg    [_getoption $path $page -foreground]    } else {        set bd    1        if { [Widget::cget $path.f$page -state] == "normal" } {            set fg [_getoption $path $page -foreground]        } else {            set fg [_getoption $path $page -disabledforeground]        }    }    # --- creation ou modification de l'onglet --------------------------------    # Sven    if { $create } {	# Create the tab region        eval $path.c create polygon [concat $lt $lb]		\		-tag		{"page p:$page $page:poly"}	\		-outline	$bg				\		-fill		$bg        eval $path.c create line $lt \            -tags {"page p:$page $page:top top"} -fill $fgt -width $bd        eval $path.c create line $lb \            -tags {"page p:$page $page:bot bot"} -fill $fgb -width $bd        $path.c create text $xtext $ytext 			\		-text	[Widget::cget $path.f$page -text]	\		-font	[Widget::cget $path -font]		\		-fill	$fg					\		-anchor	nw					\		-tags	"page p:$page $page:text"        $path.c bind p:$page <ButtonPress-1> "NoteBook::_select $path $page"        $path.c bind p:$page <Enter>         "NoteBook::_highlight on  $path $page"        $path.c bind p:$page <Leave>         "NoteBook::_highlight off $path $page"    } else {        $path.c coords "$page:text" $xtext $ytext        $path.c itemconfigure "$page:text"    \            -text [Widget::cget $path.f$page -text]     \            -font [Widget::cget $path -font]    \            -fill $fg    }    eval $path.c coords "$page:poly" [concat $lt $lb]    eval $path.c coords "$page:top"  $lt    eval $path.c coords "$page:bot"  $lb    $path.c itemconfigure "$page:poly" -fill $bg  -outline $bg    $path.c itemconfigure "$page:top"  -fill $fgt -width $bd    $path.c itemconfigure "$page:bot"  -fill $fgb -width $bd        # Sven end            if { $img != "" } {        # Sven	set id [$path.c find withtag $page:img]	if { [string equal $id ""] } {	    set id [$path.c create image $ximg $ytext \		    -anchor nw    \		    -tags   "page p:$page $page:img"]        }        $path.c coords $id $ximg $ytext        $path.c itemconfigure $id -image $img        # Sven end    } else {        $path.c delete $page:img    }    if { $data(select) == $page } {        $path.c raise p:$page    } elseif { $pos == 0 } {        if { $data(select) == "" } {            $path.c raise p:$page        } else {            $path.c lower p:$page p:$data(select)        }    } else {        set pred [lindex $data(pages) [expr {$pos-1}]]        if { $data(select) != $pred || $pos == 1 } {            $path.c lower p:$page p:$pred        } else {            $path.c lower p:$page p:[lindex $data(pages) [expr {$pos-2}]]        }    }}# -----------------------------------------------------------------------------#  Command NoteBook::_draw_arrows# -----------------------------------------------------------------------------proc NoteBook::_draw_arrows { path } {    variable _warrow    variable $path    upvar 0  $path data    set w       [expr {[winfo width $path]-1}]    set h       [expr {$data(hpage)-1}]    set nbpages [llength $data(pages)]    set xl      0    set xr      [expr {$w-$_warrow+1}]    # Sven    set side [Widget::cget $path -side]    if { [string equal $side "bottom"] } {        set h1 [expr {[winfo height $path]-1}]        set bd [Widget::cget $path -borderwidth]        set y0 [expr {$h1 - $data(hpage) + $bd}]    } else {        set y0 1    }    # Sven end (all y positions where replaced with $y0 later)    if { $data(base) > 0 } {        # Sven         if { ![llength [$path.c find withtag "leftarrow"]] } {            $path.c create window $xl $y0 \                -width  $_warrow            \                -height $h                  \                -anchor nw                  \                -window $path.c.fg            \                -tags   "leftarrow"        } else {            $path.c coords "leftarrow" $xl $y0            $path.c itemconfigure "leftarrow" -width $_warrow -height $h        }        # Sven end    } else {        $path.c delete "leftarrow"    }    if { $data(base) < $nbpages-1 &&         $data(wpage) + [_get_x_page $path 0] + 6 > $w } {        # Sven        if { ![llength [$path.c find withtag "rightarrow"]] } {            $path.c create window $xr $y0 \                -width  $_warrow            \                -height $h                  \                -window $path.c.fd            \                -anchor nw                  \                -tags   "rightarrow"        } else {            $path.c coords "rightarrow" $xr $y0            $path.c itemconfigure "rightarrow" -width $_warrow -height $h        }        # Sven end    } else {        $path.c delete "rightarrow"    }}# -----------------------------------------------------------------------------#  Command NoteBook::_draw_area# -----------------------------------------------------------------------------proc NoteBook::_draw_area { path } {    variable $path    upvar 0  $path data    set w   [expr {[winfo width  $path]-1}]    set h   [expr {[winfo height $path]-1}]    set bd  [Widget::cget $path -borderwidth]    set x0  [expr {$bd-1}]    set arcRadius	[Widget::cget $path -arcradius]    # Sven    set side [Widget::cget $path -side]    if {"$side" == "bottom"} {        set y0 0        set y1 [expr {$h - $data(hpage)}]        set yo $y1    } else {        set y0 $data(hpage)        set y1 $h        set yo [expr {$h-$y0}]    }    # Sven end    set dbg $data(dbg)    set sel $data(select)    if {  $sel == "" } {        set xd  [expr {$w/2}]        set xf  $xd        set lbg $data(dbg)    } else {        set xd [_get_x_page $path [lsearch $data(pages) $data(select)]]        set xf [expr {$xd + $data($sel,width) + $arcRadius + 1}]        set lbg $data(lbg)    }    # Sven    if { [llength [$path.c find withtag rect]] == 0} {        $path.c create line $xd $y0 $x0 $y0 $x0 $y1 \            -tags "rect toprect1"         $path.c create line $w $y0 $xf $y0 \            -tags "rect toprect2"        $path.c create line 1 $h $w $h $w $y0 \            -tags "rect botrect"    }    if {"$side" == "bottom"} {        $path.c coords "toprect1" $w $y0 $x0 $y0 $x0 $y1        $path.c coords "toprect2" $x0 $y1 $xd $y1        $path.c coords "botrect"  $xf $y1 $w $y1 $w $y0        $path.c itemconfigure "toprect1" -fill $lbg -width $bd        $path.c itemconfigure "toprect2" -fill $dbg -width $bd        $path.c itemconfigure "botrect" -fill $dbg -width $bd    } else {        $path.c coords "toprect1" $xd $y0 $x0 $y0 $x0 $y1        $path.c coords "toprect2" $w $y0 $xf $y0        $path.c coords "botrect"  $x0 $h $w $h $w $y0        $path.c itemconfigure "toprect1" -fill $lbg -width $bd        $path.c itemconfigure "toprect2" -fill $lbg -width $bd        $path.c itemconfigure "botrect" -fill $dbg -width $bd    }    $path.c raise "rect"    # Sven end    if { $sel != "" } {        # Sven        if { [llength [$path.c find withtag "window"]] == 0 } {            $path.c create window 2 [expr {$y0+1}] \                -width  [expr {$w-3}]           \                -height [expr {$yo-3}]          \                -anchor nw                      \                -tags   "window"                \                -window $path.f$sel        }        $path.c coords "window" 2 [expr {$y0+1}]        $path.c itemconfigure "window"    \            -width  [expr {$w-3}]           \            -height [expr {$yo-3}]          \            -window $path.f$sel        # Sven end    } else {        $path.c delete "window"    }}# -----------------------------------------------------------------------------#  Command NoteBook::_resize# -----------------------------------------------------------------------------proc NoteBook::_resize { path } {    # Sven    NoteBook::_redraw $path    # Sven}# -----------------------------------------------------------------------------#  Command NoteBook::_realize# -----------------------------------------------------------------------------proc NoteBook::_realize { path } {    variable $path    upvar 0  $path data    if { [set width  [Widget::cget $path -width]]  == 0 ||         [set height [Widget::cget $path -height]] == 0 } {        compute_size $path    }    set data(realized) 1    # Sven    NoteBook::_redraw $path    # Sven    bind $path <Configure> "NoteBook::_resize $path"}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人深夜福利app| 亚洲天堂网中文字| 欧美国产亚洲另类动漫| 一区二区三区电影在线播| 美女视频网站黄色亚洲| 色94色欧美sute亚洲线路一久| 欧美日韩国产a| 亚洲日本在线a| 国产激情视频一区二区在线观看 | 亚洲精品一线二线三线无人区| 亚洲你懂的在线视频| 国产成人精品综合在线观看 | 色8久久精品久久久久久蜜| 久久久综合九色合综国产精品| 婷婷国产v国产偷v亚洲高清| 日本道免费精品一区二区三区| 欧美极品少妇xxxxⅹ高跟鞋 | 粉嫩欧美一区二区三区高清影视| 欧美熟乱第一页| 综合婷婷亚洲小说| 国产精品1区2区3区在线观看| 日韩一级黄色片| 亚洲成年人网站在线观看| 成人v精品蜜桃久久一区| 精品第一国产综合精品aⅴ| 日本91福利区| 日韩一级片在线观看| 午夜视频一区在线观看| 不卡视频一二三| 亚洲国产成人午夜在线一区 | 国产99精品视频| 亚洲精品一线二线三线| 蜜臀av在线播放一区二区三区| 欧美日韩成人综合天天影院| 亚洲图片一区二区| 一本大道久久a久久精品综合| 国产精品免费网站在线观看| 成人激情免费电影网址| 1区2区3区国产精品| 国产一区二区三区在线观看免费| 日韩欧美成人激情| 国产一区二区在线电影| 日韩美女在线视频| 蜜桃av噜噜一区二区三区小说| 欧美成人艳星乳罩| 天堂影院一区二区| 欧美一区二区视频在线观看2022| 美腿丝袜一区二区三区| 欧美一区二区三区在线视频| 久久se精品一区二区| 精品99久久久久久| 成人激情开心网| 亚洲综合一二区| 欧美精品粉嫩高潮一区二区| 久久不见久久见中文字幕免费| 欧美激情一区二区三区四区| 欧美在线观看禁18| 久久99国产精品麻豆| 中文字幕不卡在线播放| 99国产一区二区三精品乱码| 亚洲主播在线观看| 精品国产制服丝袜高跟| 国产毛片精品一区| 亚洲精品第1页| 日韩一区二区麻豆国产| 不卡视频一二三| 日韩精品高清不卡| 国产欧美一区二区三区在线看蜜臀| k8久久久一区二区三区| 亚洲高清三级视频| 国产欧美视频一区二区三区| 色噜噜狠狠成人网p站| 卡一卡二国产精品| 亚洲欧美激情视频在线观看一区二区三区 | 国产亚洲精品aa午夜观看| 日本丶国产丶欧美色综合| 久久99久国产精品黄毛片色诱| 日韩美女久久久| 欧美精品一区二区三区四区| 91在线观看污| 国产制服丝袜一区| 亚洲成人资源网| 国产精品久久久久久户外露出| 欧美精品777| 99在线精品一区二区三区| 青青草原综合久久大伊人精品 | 色婷婷激情久久| 精品一区二区在线观看| 亚洲国产一二三| 中文字幕免费一区| 日韩网站在线看片你懂的| 色综合久久天天| 成人午夜又粗又硬又大| 久久精品国产亚洲高清剧情介绍| 亚洲自拍另类综合| 日韩码欧中文字| 国产精品国模大尺度视频| 精品福利一区二区三区免费视频| 欧美日韩国产影片| 97久久人人超碰| 成人动漫视频在线| 国产精品自拍三区| 麻豆91免费观看| 日韩经典一区二区| 亚洲一区二区三区自拍| 国产精品成人免费在线| 久久亚区不卡日本| 久久综合资源网| www欧美成人18+| 精品国产免费久久| 欧美成人a∨高清免费观看| 91精品国产日韩91久久久久久| 欧美在线三级电影| 在线观看91视频| 在线播放91灌醉迷j高跟美女| 欧美视频自拍偷拍| 欧美伊人久久大香线蕉综合69 | 高清久久久久久| 大胆亚洲人体视频| caoporm超碰国产精品| 成人短视频下载 | 国产成人免费视频| 国产传媒欧美日韩成人| 国产精品99久久不卡二区| 国产高清精品久久久久| 国产成a人无v码亚洲福利| 成人av午夜电影| 99九九99九九九视频精品| 色欧美乱欧美15图片| 欧美在线影院一区二区| 欧美三级日本三级少妇99| 欧美精品乱人伦久久久久久| 69久久夜色精品国产69蝌蚪网| 日韩午夜在线观看| 久久免费的精品国产v∧| 亚洲国产成人在线| 亚洲综合久久久| 久草热8精品视频在线观看| 国产一区二区三区四区五区入口| 成人黄色在线视频| 欧美三级电影一区| www国产精品av| 亚洲色图欧洲色图婷婷| 婷婷综合在线观看| 成人午夜视频在线观看| 91国偷自产一区二区使用方法| 日韩一级黄色片| 中文字幕一区二区视频| 亚洲va国产天堂va久久en| 国产精品18久久久久久久久久久久 | 欧美三级日韩三级国产三级| 欧美不卡一区二区三区四区| 一色桃子久久精品亚洲| 午夜婷婷国产麻豆精品| 高清在线不卡av| 欧美喷潮久久久xxxxx| 国产视频一区不卡| 五月婷婷综合在线| 国产精品一区二区无线| 欧美性一级生活| 国产欧美日韩久久| 丝瓜av网站精品一区二区| 高清视频一区二区| 欧美一区二区三区在线视频 | 日韩av网站免费在线| 丰满白嫩尤物一区二区| 欧美精品 日韩| 国产精品家庭影院| 国模大尺度一区二区三区| 欧美午夜精品久久久久久超碰 | 日韩电影在线观看网站| 成人精品亚洲人成在线| 日韩你懂的在线播放| 亚洲电影第三页| 99视频超级精品| 精品va天堂亚洲国产| 日本vs亚洲vs韩国一区三区 | 日韩欧美你懂的| 亚洲一区二区偷拍精品| www.久久精品| 久久综合狠狠综合久久综合88| 亚洲韩国一区二区三区| 91视频精品在这里| 欧美激情综合在线| 精品亚洲免费视频| 91精品福利在线一区二区三区| 亚洲午夜私人影院| 91麻豆福利精品推荐| 国产日韩高清在线| 国产一区高清在线| www亚洲一区| 精品一区二区在线看| 日韩三级av在线播放| 久久成人免费网| 欧美精品一区二区在线播放| 麻豆传媒一区二区三区| 日韩欧美国产成人一区二区| 免费成人在线观看| 久久综合久久99| 国产成人综合亚洲91猫咪|