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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? wizard.tcl

?? Linux下的MSN聊天程序源碼
?? TCL
?? 第 1 頁 / 共 3 頁
字號(hào):
    if {[exists $path $node]} {        return -code error "item \"$node\" already exists"    }    eval _insert_$type $path $idx $args}proc Wizard::back { path } {    Widget::getVariable $path data    Widget::getVariable $path items    set step [$path raise]    if {![string equal $step ""]} {        set cmd [Widget::cget $items($step) -backcommand]        if {![string equal $cmd ""]} {            set res [uplevel #0 $cmd]            if {!$res} { return }        }    }    set data(order) [lreplace $data(order) end end]    set item [lindex $data(order) end]    $path raise $item    event generate $path <<WizardStep>>    event generate $path <<WizardBack>>    return $item}proc Wizard::next { path } {    Widget::getVariable $path data    Widget::getVariable $path items    set step [$path raise]    if {![string equal $step ""]} {        set cmd [Widget::cget $items($step) -nextcommand]        if {![string equal $cmd ""]} {            set res [uplevel #0 $cmd]            if {!$res} { return }        }    }    set item [step $path next]    if {[Widget::cget $items($item) -appendorder]} {	lappend data(order) $item    }    $path raise $item    event generate $path <<WizardStep>>    event generate $path <<WizardNext>>    return $item}proc Wizard::cancel { path } {    Widget::getVariable $path items    set step [$path raise]    if {![string equal $step ""]} {        set cmd [Widget::cget $items($step) -cancelcommand]        if {![string equal $cmd ""]} {            set res [uplevel #0 $cmd]            if {!$res} { return }        }    }    event generate $path <<WizardCancel>>}proc Wizard::finish { path } {    Widget::getVariable $path items    set step [$path raise]    if {![string equal $step ""]} {        set cmd [Widget::cget $items($step) -finishcommand]        if {![string equal $cmd ""]} {            set res [uplevel #0 $cmd]            if {!$res} { return }        }    }            event generate $path <<WizardFinish>>}proc Wizard::help { path } {    Widget::getVariable $path items    set step [$path raise]    if {![string equal $step ""]} {        set cmd [Widget::cget $items($step) -helpcommand]        if {![string equal $cmd ""]} {            uplevel #0 $cmd        }    }            event generate $path <<WizardHelp>>}proc Wizard::step { path node {start ""} {traverse 1} } {    Widget::getVariable $path data    Widget::getVariable $path items    Widget::getVariable $path branches    if {![string equal $start ""]} {        if {![exists $path $start]} {            return -code error "item \"$start\" does not exist"        }    }    switch -- $node {        "current" {            set item [$path raise]        }        "end" - "last" {            ## Keep looping through 'next' until we hit the end.            set item [$path step next]            while {![string equal $item ""]} {                set last $item                set item [$path step next $item]             }            set item $last        }        "back" - "previous" {            if {[string equal $start ""]} {                set item [lindex $data(order) end-1]            } else {                set idx [lsearch $data(order) $start]                incr idx -1                if {$idx < 0} { return }                set item [lindex $data(order) $idx]            }        }        "next" {            set step [$path raise]            if {![string equal $start ""]} { set step $start }            set branch [$path branch $step]            if {$traverse && [_is_branch $path $step]} {                ## This step is a branch.  Let's figure out where to go next.                if {[traverse $path $step]} {                    ## It's ok to traverse into this branch.                    ## Set step to null so that we'll end up finding the                    ## first step in the branch.                    set branch $step                    set step   ""                }            }            set  idx [lsearch $branches($branch) $step]            incr idx            set item [lindex $branches($branch) $idx]            if {$idx >= [llength $branches($branch)]} {                ## We've reached the end of this branch.                ## If it's the root branch, or this branch terminates we return.                if {[string equal $branch "root"]                    || [Widget::cget $items($branch) -action] == "terminate"} {                    return                }                ## We want to merge back with our parent branch.                set item [step $path next $branch 0]            }            ## If this step is a branch, find the next step after it.            if {$traverse && [_is_branch $path $item]} {                set item [$path step next $item]            }        }        default {            if {![exists $path $node]} {                return -code error "item \"$node\" does not exist"            }            set item $node        }    }    return $item}proc Wizard::nodes { path branch {first ""} {last ""} } {    Widget::getVariable $path data    Widget::getVariable $path branches    if {$first == ""} { return $branches($branch) }    if {$last == ""}  { return [lindex $branches($branch) $first] }    return [lrange $data(steps) $first $last]}proc Wizard::index { path item } {    Widget::getVariable $path branches    set branch [$path branch $item]    return [lsearch $branches($branch) $item]}proc Wizard::raise { path {item ""} } {    Widget::getVariable $path data    Widget::getVariable $path items    set steps   $path.steps    set buttons $path.buttons    if {[string equal $item ""]} { return $data(current) }    $path createStep $item    ## Eval the global raisecommand if we have one, appending the item.    set cmd [Widget::cget $path -raisecommand]    if {![string equal $cmd ""]} {        uplevel #0 $cmd [list $item]    }    ## Eval this item's raisecommand if we have one.    set cmd [Widget::cget $items($item) -raisecommand]    if {![string equal $cmd ""]} {        uplevel #0 $cmd    }    set title [getoption $path $item -title]    wm title [winfo toplevel $path] $title    if {[Widget::cget $path -separator]} {	set txt [getoption $path $item -separatortext]	$path itemconfigure separatortext -text $txt    }    set default [Widget::cget $items($item) -default]    set button  [lsearch $data(buttons) $default]    $buttons setfocus $button    $steps raise $item    set data(current) $item    set back [$path step back]    set next [$path step next]    if {[Widget::cget $path -autobuttons]} {        set txt [Widget::cget $items($item) -backtext]        $path itemconfigure back   -text $txt -state normal        set txt [Widget::cget $items($item) -nexttext]        $path itemconfigure next   -text $txt -state normal        set txt [Widget::cget $items($item) -canceltext]        $path itemconfigure cancel -text $txt -state normal	if {[Widget::cget $path -helpbutton]} {	    set txt [Widget::cget $items($item) -helptext]	    $path itemconfigure help -text $txt	}	if {[Widget::cget $path -finishbutton]} {	    set txt [Widget::cget $items($item) -finishtext]	    $path itemconfigure finish -text $txt -state disabled	}	if {[string equal $back ""]} {            $path itemconfigure back -state disabled        }	if {[string equal $next ""]} {	    if {[Widget::cget $path -finishbutton]} {		$path itemconfigure next   -state disabled		$path itemconfigure finish -state normal	    } else {		set txt [Widget::cget $items($item) -finishtext]		$path itemconfigure next -text $txt -command [list $path finish]	    }            $path itemconfigure back   -state disabled            $path itemconfigure cancel -state disabled        } else {            set txt [Widget::cget $items($item) -nexttext]            $path itemconfigure next -text $txt -command [list $path next]        }    }    event generate $path <<WizardStep>>    if {[string equal $next ""]} { event generate $path <<WizardLastStep>>  }    if {[string equal $back ""]} { event generate $path <<WizardFirstStep>> }    return $item}proc Wizard::widgets { path command args } {    Widget::getVariable $path items    Widget::getVariable $path widgets    Widget::getVariable $path stepWidgets    switch -- $command {	"set" {	    set node [lindex $args 0]	    if {[string equal $node ""]} {		set err [BWidget::wrongNumArgsString \			"$path widgets set <name> ?option ..?"]		return -code error $err	    }	    set args [lreplace $args 0 0]	    set item $path.#widget#$node	    Widget::init Wizard::Widget $item $args	    set step   [Widget::cget $item -step]	    set widget [Widget::cget $item -widget]	    if {[string equal $step ""]} {		set widgets($node) $widget	    } else {		set stepWidgets($step,$node) $widget	    }	    return $widget	}	"get" {	    set node [lindex $args 0]	    if {[string equal $node ""]} {		return [array names widgets]	    }	    set args [lreplace $args 0 0]	    array set map  [list Wizard::Widget {}]	    array set map  [Widget::parseArgs Wizard::Widget $args]	    array set data $map(Wizard::Widget)	    if {[info exists data(-step)]} {	    	set step $data(-step)	    } else {		set step [$path step current]	    }	    ## If a widget exists for this step, return it.	    if {[info exists stepWidgets($step,$node)]} {

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
婷婷久久综合九色综合绿巨人 | 欧美人伦禁忌dvd放荡欲情| 免费日韩伦理电影| 中文字幕一区日韩精品欧美| 欧美一级片在线看| 一本色道**综合亚洲精品蜜桃冫| 韩国在线一区二区| 亚洲成人av一区二区三区| 国产亚洲一二三区| 欧美福利一区二区| 91免费视频网址| 国产激情一区二区三区四区| 视频一区国产视频| 五月天中文字幕一区二区| 国产精品高潮呻吟久久| 亚洲精品一区二区在线观看| 欧美日韩不卡在线| 色诱亚洲精品久久久久久| 成人听书哪个软件好| 久久精品99国产精品日本| 五月婷婷激情综合| 一区二区不卡在线视频 午夜欧美不卡在| 国产欧美一区在线| 久久美女艺术照精彩视频福利播放| 制服丝袜激情欧洲亚洲| 欧美日本一道本| 欧美在线免费观看视频| 91论坛在线播放| 成人黄色电影在线| 成人免费视频视频在线观看免费| 国产一区二区三区综合| 美腿丝袜在线亚洲一区| 美女视频黄免费的久久| 理论片日本一区| 久久精品国产澳门| 国内精品伊人久久久久影院对白| 久久激情综合网| 加勒比av一区二区| 韩国一区二区视频| 国产乱码精品一区二区三区av| 激情欧美一区二区| 国产在线不卡一区| 国产.精品.日韩.另类.中文.在线.播放 | 图片区小说区区亚洲影院| 一个色在线综合| 香蕉加勒比综合久久| 婷婷开心激情综合| 久久精品99国产国产精| 国产一区二区毛片| 成人免费高清视频| 色综合中文字幕国产 | 欧美一级专区免费大片| 日韩欧美视频在线| 久久久不卡影院| 国产精品久久国产精麻豆99网站| 亚洲欧美日韩小说| 亚洲影视在线观看| 视频在线观看一区二区三区| 美腿丝袜在线亚洲一区 | 99久久免费精品高清特色大片| 91免费视频网址| 欧美视频中文一区二区三区在线观看| 欧美精品电影在线播放| 欧美成人性福生活免费看| 国产亚洲综合在线| 一区二区三区四区高清精品免费观看| 亚洲成av人影院在线观看网| 精久久久久久久久久久| av高清久久久| 欧美一区日韩一区| 国产欧美日韩卡一| 午夜激情久久久| 精品一区二区三区蜜桃| 91亚洲精品一区二区乱码| 6080日韩午夜伦伦午夜伦| 久久精品视频一区二区三区| 亚洲欧美日韩国产综合| 麻豆精品一区二区av白丝在线| 成人午夜电影小说| 91精品免费在线观看| 欧美激情一区二区在线| 午夜精品久久久久久久蜜桃app| 精品在线免费视频| 97久久精品人人做人人爽50路| 欧美一区二区三区影视| 中文字幕乱码久久午夜不卡| 日韩国产欧美在线视频| 99视频超级精品| 欧美xingq一区二区| 一二三区精品福利视频| 国产中文字幕一区| 欧美亚洲国产一区在线观看网站| 久久久久久久久久久久久女国产乱| 亚洲免费在线看| 国产精品综合一区二区三区| 欧美日韩黄视频| 国产精品国产三级国产aⅴ中文 | 日韩高清国产一区在线| 99久久国产综合色|国产精品| 日韩欧美国产一区二区三区 | 一区二区三区加勒比av| 国产福利一区二区| 日韩欧美一级精品久久| 亚洲在线一区二区三区| 成人黄色小视频在线观看| 精品日韩在线观看| 午夜精品久久久久久久99樱桃| 99精品偷自拍| 中文字幕免费一区| 另类小说图片综合网| 欧美肥妇bbw| 自拍av一区二区三区| 国产成人亚洲综合a∨婷婷| 精品毛片乱码1区2区3区| 香蕉影视欧美成人| 欧美性受xxxx黑人xyx性爽| 中文字幕在线不卡一区二区三区| 国产精品一区二区久久不卡| 日韩一区二区三区在线观看| 丝袜诱惑制服诱惑色一区在线观看 | 久久综合一区二区| 青娱乐精品视频在线| 在线播放中文一区| 亚洲一区二区三区四区在线免费观看 | 亚洲成人精品在线观看| av色综合久久天堂av综合| 中文字幕国产一区二区| 成人爱爱电影网址| 欧美精品一区二区三区高清aⅴ | 亚洲永久免费视频| 色婷婷狠狠综合| 亚洲欧美激情视频在线观看一区二区三区 | 色综合天天综合网国产成人综合天| 国产精品欧美一区二区三区| 国产精品1区2区3区在线观看| 日韩欧美区一区二| 精品一区二区三区免费毛片爱 | 日韩女优av电影| 麻豆一区二区三| 精品国产91乱码一区二区三区 | 亚洲va韩国va欧美va| 欧美电影影音先锋| 免费精品视频在线| 久久久精品中文字幕麻豆发布| 国产精品一区二区久久不卡 | 麻豆中文一区二区| 久久免费偷拍视频| 一区二区三区毛片| 欧美日韩大陆在线| 麻豆专区一区二区三区四区五区| 日韩免费在线观看| 粉嫩一区二区三区性色av| 国产精品成人在线观看| 91黄色在线观看| 天天综合天天做天天综合| 日韩一区二区麻豆国产| 国产黑丝在线一区二区三区| 中文字幕在线免费不卡| 欧美在线免费观看视频| 六月婷婷色综合| 国产精品伦理在线| 欧美无人高清视频在线观看| 美女视频黄 久久| 国产精品系列在线| 欧美日韩专区在线| 国产一区二区成人久久免费影院| 中文字幕在线不卡一区二区三区| 欧美日韩国产首页| 国产精品99久久久久久久女警| 亚洲黄色片在线观看| 日韩美女视频在线| 99re成人精品视频| 石原莉奈在线亚洲二区| 久久久99精品久久| 欧美亚洲国产怡红院影院| 激情欧美一区二区三区在线观看| 亚洲天堂久久久久久久| 日韩一区二区免费在线电影| 99在线热播精品免费| 蜜桃视频一区二区三区| 亚洲人成伊人成综合网小说| 欧美一区2区视频在线观看| 成人蜜臀av电影| 裸体健美xxxx欧美裸体表演| 最新不卡av在线| 精品国产91乱码一区二区三区| 91久久精品一区二区三| 成人免费高清视频在线观看| 亚洲成人动漫一区| 欧美国产日本韩| 日韩亚洲电影在线| 色激情天天射综合网| 国产精品一区在线| 日本不卡视频在线| 亚洲免费观看视频| 久久久青草青青国产亚洲免观| 欧美久久久久免费| 色老汉av一区二区三区| 国产一区不卡视频| 蜜桃视频一区二区|