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

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

?? tkfbox.tcl

?? genesis 2000 v9.1軟件下載
?? TCL
?? 第 1 頁 / 共 3 頁
字號:
	# should have been checked before tkFDialog_Update is called, so	# we normally won't come to here. Anyways, give an error and abort	# action.	tk_messageBox -type ok -message \	    "Cannot change to the directory \"$data(selectPath)\".\nPermission denied."\	    -icon warning	cd $appPWD	return    }    # Turn on the busy cursor. BUG?? We haven't disabled X events, though,    # so the user may still click and cause havoc ...    #    set entCursor [$data(ent) cget -cursor]    set dlgCursor [$w         cget -cursor]    $data(ent) config -cursor watch    $w         config -cursor watch    update idletasks        tkIconList_DeleteAll $data(icons)    # Make the dir list    #    foreach f [lsort -dictionary [glob -nocomplain .* *]] {	if ![string compare $f .] {	    continue	}	if ![string compare $f ..] {	    continue	}	if [file isdir ./$f] {	    if ![info exists hasDoneDir($f)] {		tkIconList_Add $data(icons) $folder $f		set hasDoneDir($f) 1	    }	}    }    # Make the file list    #    if ![string compare $data(filter) *] {	set files [lsort -dictionary \	    [glob -nocomplain .* *]]    } else {	set files [lsort -dictionary \	    [eval glob -nocomplain $data(filter)]]    }    set top 0    foreach f $files {	if ![file isdir ./$f] {	    if ![info exists hasDoneFile($f)] {		tkIconList_Add $data(icons) $file $f		set hasDoneFile($f) 1	    }	}    }    tkIconList_Arrange $data(icons)    # Update the Directory: option menu    #    set list ""    set dir ""    foreach subdir [file split $data(selectPath)] {	set dir [file join $dir $subdir]	lappend list $dir    }    $data(dirMenu) delete 0 end    set var [format %s(selectPath) $w]    foreach path $list {	$data(dirMenu) add command -label $path -command [list set $var $path]    }    # Restore the PWD to the application's PWD    #    cd $appPWD    # turn off the busy cursor.    #    $data(ent) config -cursor $entCursor    $w         config -cursor $dlgCursor}# tkFDialog_SetPathSilently --## 	Sets data(selectPath) without invoking the trace procedure#proc tkFDialog_SetPathSilently {w path} {    upvar #0 $w data    trace vdelete  data(selectPath) w "tkFDialog_SetPath $w"    set data(selectPath) $path    trace variable data(selectPath) w "tkFDialog_SetPath $w"}# This proc gets called whenever data(selectPath) is set#proc tkFDialog_SetPath {w name1 name2 op} {    upvar #0 $w data    tkFDialog_UpdateWhenIdle $w}# This proc gets called whenever data(filter) is set#proc tkFDialog_SetFilter {w type} {    upvar #0 $w data    upvar \#0 $data(icons) icons    set data(filter) [lindex $type 1]    $data(typeMenuBtn) config -text [lindex $type 0] -indicatoron 1    $icons(sbar) set 0.0 0.0        tkFDialog_UpdateWhenIdle $w}# tkFDialogResolveFile --##	Interpret the user's text input in a file selection dialog.#	Performs:##	(1) ~ substitution#	(2) resolve all instances of . and ..#	(3) check for non-existent files/directories#	(4) check for chdir permissions## Arguments:#	context:  the current directory you are in#	text:	  the text entered by the user#	defaultext: the default extension to add to files with no extension## Return vaue:#	[list $flag $directory $file]##	 flag = OK	: valid input#	      = PATTERN	: valid directory/pattern#	      = PATH	: the directory does not exist#	      = FILE	: the directory exists by the file doesn't#			  exist#	      = CHDIR	: Cannot change to the directory#	      = ERROR	: Invalid entry##	 directory      : valid only if flag = OK or PATTERN or FILE#	 file           : valid only if flag = OK or PATTERN##	directory may not be the same as context, because text may contain#	a subdirectory name#proc tkFDialogResolveFile {context text defaultext} {    set appPWD [pwd]    set path [tkFDialog_JoinFile $context $text]    if {[file ext $path] == ""} {	set path "$path$defaultext"    }    if [catch {file exists $path}] {	return [list ERROR $path ""]    }    if [catch {if [file exists $path] {}}] {	# This "if" block can be safely removed if the following code returns	# an error. It currently (7/22/97) doesn't	#	#	file exists ~nonsuchuser	#	return [list ERROR $path ""]    }    if [file exists $path] {	if [file isdirectory $path] {	    if [catch {		cd $path	    }] {		return [list CHDIR $path ""]	    }	    set directory [pwd]	    set file ""	    set flag OK	    cd $appPWD	} else {	    if [catch {		cd [file dirname $path]	    }] {		return [list CHDIR [file dirname $path] ""]	    }	    set directory [pwd]	    set file [file tail $path]	    set flag OK	    cd $appPWD	}    } else {	set dirname [file dirname $path]	if [file exists $dirname] {	    if [catch {		cd $dirname	    }] {		return [list CHDIR $dirname ""]	    }	    set directory [pwd]	    set file [file tail $path]	    if [regexp {[*]|[?]} $file] {		set flag PATTERN	    } else {		set flag FILE	    }	    cd $appPWD	} else {	    set directory $dirname	    set file [file tail $path]	    set flag PATH	}    }    return [list $flag $directory $file]}# Gets called when the entry box gets keyboard focus. We clear the selection# from the icon list . This way the user can be certain that the input in the # entry box is the selection.#proc tkFDialog_EntFocusIn {w} {    upvar #0 $w data    if [string compare [$data(ent) get] ""] {	$data(ent) selection from 0	$data(ent) selection to   end	$data(ent) icursor end    } else {	$data(ent) selection clear    }    tkIconList_Unselect $data(icons)    if ![string compare $data(type) open] {	$data(okBtn) config -text "Open"    } else {	$data(okBtn) config -text "Save"    }}proc tkFDialog_EntFocusOut {w} {    upvar #0 $w data    $data(ent) selection clear}# Gets called when user presses Return in the "File name" entry.#proc tkFDialog_ActivateEnt {w} {    upvar #0 $w data    set text [string trim [$data(ent) get]]    set list [tkFDialogResolveFile $data(selectPath) $text \		  $data(-defaultextension)]    set flag [lindex $list 0]    set path [lindex $list 1]    set file [lindex $list 2]    case $flag {	OK {	    if ![string compare $file ""] {		# user has entered an existing (sub)directory		set data(selectPath) $path		$data(ent) delete 0 end	    } else {		tkFDialog_SetPathSilently $w $path		set data(selectFile) $file		tkFDialog_Done $w	    }	}	PATTERN {	    set data(selectPath) $path	    set data(filter) $file	}	FILE {	    if ![string compare $data(type) open] {		tk_messageBox -icon warning -type ok \		    -message "File \"[file join $path $file]\" does not exist."		$data(ent) select from 0		$data(ent) select to   end		$data(ent) icursor end	    } else {		tkFDialog_SetPathSilently $w $path		set data(selectFile) $file		tkFDialog_Done $w	    }	}	PATH {	    tk_messageBox -icon warning -type ok \		-message "Directory \"$path\" does not exist."	    $data(ent) select from 0	    $data(ent) select to   end	    $data(ent) icursor end	}	CHDIR {	    tk_messageBox -type ok -message \	       "Cannot change to the directory \"$path\".\nPermission denied."\		-icon warning	    $data(ent) select from 0	    $data(ent) select to   end	    $data(ent) icursor end	}	ERROR {	    tk_messageBox -type ok -message \	       "Invalid file name \"$path\"."\		-icon warning	    $data(ent) select from 0	    $data(ent) select to   end	    $data(ent) icursor end	}    }}# Gets called when user presses the Alt-s or Alt-o keys.#proc tkFDialog_InvokeBtn {w key} {    upvar #0 $w data    if ![string compare [$data(okBtn) cget -text] $key] {	tkButtonInvoke $data(okBtn)    }}# Gets called when user presses the "parent directory" button#proc tkFDialog_UpDirCmd {w} {    upvar #0 $w data    global tcl_platform        if { [string compare $data(selectPath) "/"] == 0 } {	if {$tcl_platform(platform) == "windows"} {	    tkFDialog_ask_for_drive $w	}       return     }    if { [string match ?:/  $data(selectPath)] == 1 } {       tkFDialog_ask_for_drive $w       return    }        set data(selectPath) [file dirname $data(selectPath)]}proc tkFDialog_ask_for_drive {w} {   set TITLE "Drive Message"   set MESSAGE "To change drive, enter drive\              \nin 'File name' field (e.g. 'd:')"   tk_messageBox -message $MESSAGE -parent $w -type ok -title $TITLE}# Join a file name to a path name. The "file join" command will break# if the filename begins with ~#proc tkFDialog_JoinFile {path file} {    if {[string match {~*} $file] && [file exists $path/$file]} {	return [file join $path ./$file]    } else {	return [file join $path $file]    }}# Gets called when user presses the "OK" button#proc tkFDialog_OkCmd {w} {    upvar #0 $w data    set text [tkIconList_Get $data(icons)]    if [string compare $text ""] {	set file [tkFDialog_JoinFile $data(selectPath) $text]	if [file isdirectory $file] {	    tkFDialog_ListInvoke $w $text	    return	}    }    tkFDialog_ActivateEnt $w}# Gets called when user presses the "Cancel" button#proc tkFDialog_CancelCmd {w} {    upvar #0 $w data    global tkPriv    set tkPriv(selectFilePath) ""}# Gets called when user browses the IconList widget (dragging mouse, arrow# keys, etc)#proc tkFDialog_ListBrowse {w text} {    upvar #0 $w data    if {$text == ""} {	return    }    set file [tkFDialog_JoinFile $data(selectPath) $text]    if ![file isdirectory $file] {	$data(ent) delete 0 end	$data(ent) insert 0 $text	if ![string compare $data(type) open] {	    $data(okBtn) config -text "Open"	} else {	    $data(okBtn) config -text "Save"	}    } else {	$data(okBtn) config -text "Open"    }}# Gets called when user invokes the IconList widget (double-click, # Return key, etc)#proc tkFDialog_ListInvoke {w text} {    upvar #0 $w data    if {$text == ""} {	return    }    set file [tkFDialog_JoinFile $data(selectPath) $text]    if [file isdirectory $file] {	set appPWD [pwd]	if [catch {cd $file}] {	    tk_messageBox -type ok -message \	       "Cannot change to the directory \"$file\".\nPermission denied."\		-icon warning	} else {	    cd $appPWD	    set data(selectPath) $file	}    } else {	set data(selectFile) $file	tkFDialog_Done $w    }}# tkFDialog_Done --##	Gets called when user has input a valid filename.  Pops up a#	dialog box to confirm selection when necessary. Sets the#	tkPriv(selectFilePath) variable, which will break the "tkwait"#	loop in tkFDialog and return the selected filename to the#	script that calls tk_getOpenFile or tk_getSaveFile#proc tkFDialog_Done {w {selectFilePath ""}} {    upvar #0 $w data    global tkPriv    if ![string compare $selectFilePath ""] {	set selectFilePath [tkFDialog_JoinFile $data(selectPath) \		$data(selectFile)]	set tkPriv(selectFile)     $data(selectFile)	set tkPriv(selectPath)     $data(selectPath)	if {[file exists $selectFilePath] && 	    ![string compare $data(type) save]} {	    set reply [tk_messageBox -icon warning -type yesno \	        -message "File \"$selectFilePath\" already exists.\nDo you want to overwrite it?"]	    if ![string compare $reply "no"] {		return	    }	}    }    set tkPriv(selectFilePath) $selectFilePath}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99这里都是精品| 午夜久久久久久电影| 丰满少妇久久久久久久| 中文字幕第一区第二区| 岛国精品一区二区| 中文字幕一区三区| 欧美在线免费观看亚洲| 亚洲国产欧美日韩另类综合 | 亚洲精品国产精品乱码不99| 91捆绑美女网站| 亚洲国产精品久久人人爱| 欧美日韩国产美| 国内外成人在线| 欧美激情自拍偷拍| 在线亚洲一区观看| 精品一区二区久久久| 国产精品初高中害羞小美女文| 一本久久a久久免费精品不卡| 婷婷中文字幕综合| 久久精品视频在线看| 色88888久久久久久影院按摩| 日韩成人dvd| 国产精品乱人伦中文| 欧美疯狂做受xxxx富婆| 国产成人在线网站| 亚洲国产人成综合网站| 国产亚洲视频系列| 欧美性猛片aaaaaaa做受| 久久se精品一区精品二区| 亚洲欧洲成人精品av97| 日韩欧美国产午夜精品| av中文字幕亚洲| 欧美aaaaaa午夜精品| 亚洲天堂成人网| 欧美大度的电影原声| 色综合久久综合网| 国产成人在线视频播放| 日韩综合小视频| 国产精品区一区二区三| 欧美tickling网站挠脚心| 欧洲精品在线观看| 丰满亚洲少妇av| 久久精品国产在热久久| 亚洲综合丁香婷婷六月香| 久久你懂得1024| 欧美一三区三区四区免费在线看| 91色在线porny| 国产美女在线精品| 男男视频亚洲欧美| 亚洲成人动漫精品| 亚洲精品一二三四区| 国产精品色哟哟| 精品少妇一区二区三区日产乱码| 欧美日韩一区国产| 91久久奴性调教| 不卡欧美aaaaa| 国产一区二区三区免费播放| 青青草97国产精品免费观看无弹窗版| 亚洲欧美一区二区久久| 国产精品久久久久久久久快鸭| 26uuu国产在线精品一区二区| 51精品视频一区二区三区| 欧美综合一区二区| 色婷婷亚洲精品| 91影视在线播放| 91麻豆视频网站| 99综合电影在线视频| 成人蜜臀av电影| 国产成人午夜精品5599| 国产东北露脸精品视频| 国内久久精品视频| 国产一区二区三区免费观看| 精品一区二区三区视频 | 2023国产精品自拍| 日韩女优av电影| 精品国内二区三区| 久久欧美一区二区| 国产亚洲欧洲997久久综合| 国产亚洲一区二区三区四区| 久久九九久久九九| 国产视频一区二区在线| 国产亚洲一本大道中文在线| 国产亚洲一本大道中文在线| 中文字幕乱码日本亚洲一区二区 | 色综合色综合色综合色综合色综合| 菠萝蜜视频在线观看一区| 99久久精品99国产精品| 91美女片黄在线观看91美女| 日本韩国一区二区| 欧美精品xxxxbbbb| 日韩精品一区二区三区三区免费| 欧美精品一区二区蜜臀亚洲| 国产丝袜欧美中文另类| 亚洲情趣在线观看| 午夜精品福利一区二区蜜股av| 日本欧美一区二区| 国产乱码一区二区三区| 99久久精品国产毛片| 色噜噜夜夜夜综合网| 欧美福利一区二区| 国产欧美精品一区aⅴ影院| 亚洲视频香蕉人妖| 免费在线欧美视频| 成人av网站免费| 欧美丝袜自拍制服另类| 日韩一级二级三级精品视频| 国产目拍亚洲精品99久久精品| 亚洲欧美色图小说| 日韩高清不卡一区| 成人自拍视频在线| 欧美色国产精品| 精品国产凹凸成av人网站| 中文字幕在线一区免费| 亚洲1区2区3区视频| 国产精品18久久久久久久久| 欧洲色大大久久| 久久精品视频网| 亚洲成人一区二区| 岛国av在线一区| 在线成人av网站| 中文av字幕一区| 奇米影视7777精品一区二区| 91丨九色丨蝌蚪丨老版| 精品对白一区国产伦| 一卡二卡欧美日韩| 国产精品一区二区果冻传媒| 欧美日韩国产影片| 中日韩av电影| 久久国产生活片100| 欧美性淫爽ww久久久久无| 日本一区二区三区视频视频| 日韩成人一区二区三区在线观看| av成人老司机| 久久综合九色综合97婷婷女人| 亚洲一区二区三区激情| 99久久国产综合精品女不卡| 久久影视一区二区| 三级一区在线视频先锋| 色综合天天性综合| 欧美激情一区二区三区蜜桃视频| 蜜臀av亚洲一区中文字幕| 欧美午夜精品电影| 亚洲图片激情小说| 成人中文字幕电影| 久久久综合九色合综国产精品| 天天综合网 天天综合色| 91天堂素人约啪| 国产精品美女久久福利网站| 精品一区二区三区影院在线午夜 | 国产乱人伦精品一区二区在线观看 | 亚洲免费在线看| 成人黄动漫网站免费app| 久久精品日产第一区二区三区高清版| 男女男精品视频网| 欧美一区二区三区四区在线观看 | 天天综合色天天| 欧美色窝79yyyycom| 亚洲夂夂婷婷色拍ww47| 色婷婷久久99综合精品jk白丝| 欧美国产综合色视频| 国产精品一色哟哟哟| 久久天堂av综合合色蜜桃网| 韩国v欧美v日本v亚洲v| 精品国产一区二区精华| 精品在线免费观看| 精品国产乱子伦一区| 国产综合色产在线精品| 久久久久9999亚洲精品| 国产成人在线观看免费网站| 久久久久久久综合日本| 懂色av中文字幕一区二区三区 | 专区另类欧美日韩| 99精品视频在线免费观看| 1000精品久久久久久久久| 色综合中文综合网| 日韩国产欧美在线观看| 日韩欧美一区在线| 狠狠色丁香久久婷婷综合_中 | 欧美国产精品一区二区| 精品一区二区日韩| 国产午夜精品一区二区三区四区| 国产不卡免费视频| 中文字幕一区二区三区不卡在线| 99久久婷婷国产| 亚洲自拍偷拍九九九| 欧美日韩在线三区| 久久精品国产77777蜜臀| 久久久三级国产网站| 不卡的av网站| 亚洲乱码中文字幕| 91精品国产综合久久香蕉麻豆| 激情欧美一区二区三区在线观看| 久久久蜜臀国产一区二区| 成人av网址在线观看| 亚洲国产精品影院| 精品国产精品网麻豆系列| www.日韩精品| 日日噜噜夜夜狠狠视频欧美人 | 亚洲手机成人高清视频| 欧美精品电影在线播放|