⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 menushell.tcl

📁 Linux下的MSN聊天程序源码
💻 TCL
字号:
snit::widgetadaptor menushell {	delegate option * to menu	delegate method * to menu except { post unpost }	component menu	constructor { args } {		installhull using toplevel -class Menu -borderwidth 0 -highlightthickness 0 -padx 0 -pady 0 -relief flat		wm withdraw $self		wm transient $self [winfo parent $self]		wm overrideredirect $self 1		install menu using pixmapmenu $self.m -type normal		pack $menu -expand true -fill both 		bindtags $self ". all"	}	method post { x y } {		if { [expr {$x + [$self cget -width]}] > [winfo screenwidth $self] } {			set x [expr {[winfo screenwidth $self] - [$self cget -width]}]		}		if { [expr {$y + [$self cget -height]}] > [winfo screenheight $self] } {			set y [expr {[winfo screenheight $self] - [$self cget -height]}]		}		wm geometry $self +${x}+${y}		wm deiconify $self		raise $self	}	method unpost { } {		wm withdraw $self	}}snit::widgetadaptor menubar {	delegate option * to menu	delegate method * to menu	component menu	constructor { args } {		installhull using frame -class Menu -borderwidth 0 -highlightthickness 0 -padx 0 -pady 0 -relief flat		install menu using pixmapmenu $self.m -orient horizontal -type menubar		pack $menu -expand true -fill both		bindtags $self ". all"	}}snit::widgetadaptor menubut {	option -type -default menubutton -readonly yes	delegate option * to hull	constructor { args } {		installhull using tk_menubutton		$self configurelist $args	}}proc OptionMenu { w var args } {	#puts $args	menubutton $w -menu $w.menu -relief raised -textvariable $var	menu $w.menu	foreach val $args {		$w.menu add radiobutton -indicatoron 0 -label $val -variable $var -value $val		puts $val	}	return $w.menu}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -